sfsd.py 137 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import soundfile as sf import sounddevice as sd weight = 1.7 data, fs = sf.read('test1.wav') sd.play(data * weight, fs, blocking=True)