SoundCard icon indicating copy to clipboard operation
SoundCard copied to clipboard

A Pure-Python Real-Time Audio Library

Results 45 SoundCard issues
Sort by recently updated
recently updated
newest added

I'm running this on Fedora 32. I occasionally get this error: `Assertion 's' failed at pulse/stream.c:1411`. This is the code I'm running: ```python #!/usr/bin/env python import soundcard as sc import...

[`_pa.pa_context_connect(self.context, _ffi.NULL, _pa.PA_CONTEXT_NOFLAGS, _ffi.NULL)`](https://github.com/bastibe/SoundCard/blob/master/soundcard/pulseaudio.py#L67) The second parameter is always `Null`, which means the default pulseaudio server in the system. Can you please let user input the server string, like `unix://run/audio/pulse.sock`,...

I'm compiling [this file](https://github.com/PasaOpasen/SpeechLogger/blob/master/SecondTry/soundcard_report.py) by pyinstaller. Compile is successful: ``` C:\Users\qtckp\OneDrive\Рабочий стол\SpeechLogger\SecondTry>pyinstaller soundcard_report.py 110 INFO: PyInstaller: 3.6 111 INFO: Python: 3.8.3 111 INFO: Platform: Windows-10-10.0.18362-SP0 113 INFO: wrote C:\Users\qtckp\OneDrive\Рабочий стол\SpeechLogger\SecondTry\soundcard_report.spec...

If trying to create a higher level script with custom classes, it is helpful to have direct access to the common classes of SoundCard, e.g.: ````py import soundcard as sc...

Currently, using pyinstaller to build a onedir installation for my application that is using soundcard. It all starts fine after adding the .h files but when I click my start...

The issue lies in [this code ](https://github.com/bastibe/SoundCard/blob/d97e7167ce8b411c949d95f5a6a4406a1c6a816c/soundcard/pulseaudio.py#L70) If I ```python import soundcard as sc ``` and pulseaudio is not running, it will hang indefinitely while importing because of the the...

Hello, Thanks a lot for the package. I'm trying to use it with a Lynx Aurora (n) interface, 24 channels, Thunderbolt connection ; I'm getting 2 channels only for input...

Hey there. I love the direction this library is going. I am running on linux. But I have a soundcard that is only supported using jack - if used with...

Hi, I've installed soundcard module, but I ran soundcard.all_speakers() only get an empty list. Is there somthing wrong on my sound device?

First of all, thanks so much for your work on it! I tried to record audio from speaker, it return a array with correct shape, but **all element is zero:...