util:multimedia:ffmpeg
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| util:multimedia:ffmpeg [2020/11/18 14:38] – Added info about concat phil | util:multimedia:ffmpeg [2024/02/20 10:38] (current) – Added section about MP3 encoding phil | ||
|---|---|---|---|
| Line 63: | Line 63: | ||
| | | ||
| $ ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4 | $ ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4 | ||
| + | |||
| + | ===== Encoding MP3s ===== | ||
| + | |||
| + | While this is about transcoding from FLAC to MP3, the same command should do | ||
| + | for about any supported source format: | ||
| + | |||
| + | ffmpeg -i input.flac -q:a 0 -map a output.mp3 | ||
| + | |||
| + | By default, ffmpeg will write an ID3 version 2.4 section based on FLAC tags. | ||
| + | Though since hardly any ID3-related tool seems to support them, it is advisable | ||
| + | to pass '' | ||
| + | compatibility, | ||
| ===== Links ===== | ===== Links ===== | ||
util/multimedia/ffmpeg.1605710331.txt.gz · Last modified: by phil
