mp3
-
convert ogg to mp3 by avconv on Debian LinuxComputer/linux 2013. 8. 20. 12:41
The simple and naive command, which I think, be fitted to almost all situation, is avconv -i input.ogg output.mp3, because of its man page as follows: By default avconv tries to pick the "best" stream of each type present in input files and add them to each output file. For video, this means the highest resolution, for audio the highest channel count. For subtitle it's simply the first subtitle ..
-
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..