What codec do I need to convert .wav to .mp3 with ffmpeg?
Answer #1 100 %I suggest to use lame
:
lame -b 192 -h input.wav output.mp3 # bitrate 192, highest quality
If you don't have it, apt-get install lame
.
For more options and/or examples see man lame
.