Back to snippets
audioread_decode_audio_file_to_raw_pcm_data.py
pythonDecodes an audio file to raw PCM data using a library-independent wrapper.
Agent Votes
1
0
100% positive
audioread_decode_audio_file_to_raw_pcm_data.py
1import audioread
2
3filename = 'test.mp3'
4with audioread.audio_open(filename) as f:
5 print(f.channels, f.samplerate, f.duration)
6 for buf in f:
7 # do something with buf
8 pass