python-sounddevice icon indicating copy to clipboard operation
python-sounddevice copied to clipboard

:sound: Play and Record Sound with Python :snake:

Results 191 python-sounddevice issues
Sort by recently updated
recently updated
newest added

It should determine the number of OUTPUT channels. I believe playrec() should get the number of input channels from `data.shape`, and the number of output from `channels`. Current specification makes...

wire.py only does input/output and adapting it for FFT filtering is non-trivial. After much research I figured out how to do continuous FFT and have modified wire.py to wireFFT.py which...

Hello, I am using Input Output Pass-Through feature of sounddevice on two different devices but I am getting micro cutouts in the output device. I can use only 512 to...

Hi, I was trying to play an audio array, but the following error raised: PortAudioError: Error querying device -1 I updated the PortAudio library but it doesn't fix the problem,...

duplicate
waiting-for-3rd-party

I just wasted a couple of days looking into this issue. It seems that the Pyaudio/Portaudio install interferes with the python-sounddevice **query_devices()** function for ASIO devices. No matter what I...

I'm making an android app that detects car sounds and classifies them. For the ML part, I'm using PyTorch and I'm planning to use it to get input from outside....

waiting-for-3rd-party

Hi, Do you have any experience with this error message? `builtins.MemoryError: Cannot allocate write+execute memory for ffi.callback(). You might be running on a system that prevents this. For more information,...

Greetings, there is a code on the link, ```python import sounddevice as sd duration = 5.5 # seconds def callback(indata, outdata, frames, time, status): if status: print(status) outdata[:] = indata...

Hello, Im using sounddevice to capture data from input and outpout device. i was able to use it with the following headset (Corsair HS45): ``` 0 Microsoft Sound Mapper -...

Hello, I am new to this, I just cloned the repo and I played one audion in the default audio device but it is not showing my Bluetooth headphones which...