lame
-
Convert mp4 AAC to wav, and to mp3Computer/linux 2009. 3. 8. 08:25
M4A to wav for nam in *.M4A; do nice mplayer -ao pcm "$nam" -ao pcm:file="$nam.wav" done wav to mp3 for nam in *.wav; do nice lame -h "$nam" "$nam.mp3" ;done reference http://gimpel.gi.funpic.de/wiki/index.php?title=Howto:convert_aac/mp4_to_wav/mp3/ogg_on_Linux
-
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..