If I have an MP3 file how can I convert it to a WAV file? (preferably, using a pure python approach)
This is working for me:
import subprocess subprocess.call(['ffmpeg', '-i', 'audio.mp3', 'audio.wav'])