i have this .wav file containing an ECG signal , Iwant to extract the data in that file using scipy.io.wavfile.read('sig100.wav')
but I got this error
"has {}-bit data.".format(bit_depth))
ValueError: Unsupported bit depth: the wav file has 11-bit data.
As I was doing some research on this I found out that that function only accepts 8-bit depth file , but I can't figure out how to modify it to accept my file I found this on stackoverflow but didn't get it