Using sounddevice in Python 3.11.2 on Linux Mint LMDE6 (based on debian12) but not getting any sound output using this simple test program:
import sounddevice as sd
import soundfile as sf
path = "gres/bip.wav"
print("sounddevice")
data, samplerate = sf.read(path)
sd.play(data, samplerate)
sd.wait()
No error message of any kind. It works well when using playsound3 instead.
And both work well on Win11 Pro 23H2.
Using sounddevice in Python 3.11.2 on Linux Mint LMDE6 (based on debian12) but not getting any sound output using this simple test program:
No error message of any kind. It works well when using
playsound3instead.And both work well on Win11 Pro 23H2.