ubuntu:sound:convert_mp4_to_mp3
Table of Contents
Ubuntu - Sound - Convert MP4 to MP3
ffmpeg -i x.mp4 -vn -acodec copy x.mp3
ffmpeg -i "x.mp4" -b:a 320k -vn x.mp3 ffmpeg -i "x.mp4" -b:a 192k -vn x.mp3
ffmpeg -i in.mp4 -q:a 0 -map a out.mp3
NOTE: The q option can only be used with libmp3lame and corresponds to the LAME -V option.
Converts every MP4 in the current directory to an MP3.
Preserves the original name of the file.
for f in *.mp4; do ffmpeg -i "$f" -vn -c:a libmp3lame -ar 44100 -ac 2 -ab 192k "${f/%mp4/mp3}"; done
NOTE: To use it for an flv or avi or whatever, simply change both instances of mp4.
References
ubuntu/sound/convert_mp4_to_mp3.txt · Last modified: 2024/12/08 18:01 by peter