ubuntu:sound:convert_mp4_to_mp3
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ubuntu:sound:convert_mp4_to_mp3 [2022/09/19 10:56] – created peter | ubuntu:sound:convert_mp4_to_mp3 [2024/12/08 18:01] (current) – peter | ||
---|---|---|---|
Line 2: | Line 2: | ||
<code bash> | <code bash> | ||
- | ffmpeg -i x.mp4 -vn -acodec x.mp3 | + | ffmpeg -i x.mp4 -vn -acodec |
</ | </ | ||
Line 8: | Line 8: | ||
<code bash> | <code bash> | ||
+ | ffmpeg -i " | ||
+ | |||
ffmpeg -i " | ffmpeg -i " | ||
</ | </ | ||
+ | ---- | ||
+ | |||
+ | <code bash> | ||
+ | ffmpeg -i in.mp4 -q:a 0 -map a out.mp3 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | See [[https:// | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Converts every MP4 in the current directory to an MP3. ===== | ||
+ | |||
+ | Preserves the original name of the file. | ||
+ | |||
+ | <code bash> | ||
+ | for f in *.mp4; do ffmpeg -i " | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** To use it for an flv or avi or whatever, simply change both instances of mp4. | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | https:// |
ubuntu/sound/convert_mp4_to_mp3.1663584995.txt.gz · Last modified: 2022/09/19 10:56 by peter