I'm trying to translate a lame command to ffmpeg, but I'm not really sure what I'm doing. The first command is not applicable for all audio formats because LAME can't handle them. The second command yields a file that differs 1 kb from the first, but I figured that might be due to frame rate corrections and rounding. Anyway.
Are the two following commands synonymous?
lame -q 9 -b 16 input.wav output.mp3
and
ffmpeg -i input.wav -codec:a libmp3lame -compression_level 9 -b:a 16k output.mp3