ffmpeg mp3 to wav code example
Example 1: mp4 to wav ffmpeg
ffmpeg -i <infile> -ac 2 -f wav <outfile>
Example 2: convertingwav to mp3 linux ffmpeg
ffmpeg -i input.wav -vn -ar 44100 -ac 2 -b:a 192k output.mp3
Example 3: convert m4a to wav ffmpeg
ffmpeg -i filename.mp3 newfilename.wav newfilename.ogg newfilename.mp4