wav to mp3
-
How to convert wav to mp3 or flac with ffmpeg and with lame.Computer/linux 2008. 3. 31. 22:56
lame -h input.wav output.mp3 -h Use some quality improvements. Encoding will be slower, but the result will be of higher quality. The behaviour is the same as the -q 2 switch. This switch is always enabled when using VBR. http://lame.sourceforge.net/ ffmpeg -i input.wav -ab 64 -ac 1 -ar 44100 output.mp3 Note that the output detailed format is MPEG Layer II. ffmpeg -i input.wav -ab 64 -ac 1 -ar 4..