filterman

Results 1 comments of filterman

On linux i can use two different devices ```python import sounddevice as sd def callback(indata, outdata, frames, time, status): outdata[:] = indata with sd.Stream(device=('hw:0,1', 'hw:1,0'), samplerate=(48000, 48000), blocksize=1024, dtype=('int16', 'int16'),...