Ok so I\'ve been using python to try create a waveform image and I\'m getting the raw data from the .wav file using song = wave.open() and so
.wav
song = wave.open()
so
Here is a way that you can split the bytes into a list:
data = b'\x00\x00\x00\x00\x00\x00' info = [data[i:i+2] for i in range(0, len(data), 2)] print info
gives the result:
['\x00\x00', '\x00\x00', '\x00\x00']