Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
mp3 [2017/02/27 04:31] – beandog | mp3 [2021/10/18 01:40] (current) – beandog | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== MP3 ====== | ====== MP3 ====== | ||
- | * [[https://libav.org/documentation/avconv.html#mp3|avconv MP3 muxer]] - documentation on metadata | + | * [[https://trac.ffmpeg.org/wiki/Encode/ |
+ | * [[https:// | ||
Strip an MP3 of all metadata: | Strip an MP3 of all metadata: | ||
< | < | ||
- | avconv | + | ffmpeg |
</ | </ | ||
- | |||
- | See [[http:// | ||
Set metadata title: | Set metadata title: | ||
< | < | ||
- | avconv | + | ffmpeg |
</ | </ | ||
Line 20: | Line 19: | ||
< | < | ||
- | avconv | + | ffmpeg |
</ | </ | ||
+ | Add cover art as well: | ||
+ | < | ||
+ | ffmpeg -i source.mp3 -i cover_art.jpg -acodec copy cover_art.mp3 | ||
+ | </ | ||
+ | |||
+ | Note that ffmpeg will convert the cover art to a PNG. If it already is one, you can can copy it directly: | ||
+ | |||
+ | < | ||
+ | ffmpeg -i source.mp3 -i cover_art.png -acodec copy -vcodec copy cover_art.mp3 | ||
+ | </ |