Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
mp3 [2017/02/27 03:10] – beandog | mp3 [2021/10/18 01:40] (current) – beandog | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== MP3 ====== | ====== MP3 ====== | ||
- | Strip an MP3 of all metadata, not just ID tags: | + | * [[https:// |
+ | * [[https:// | ||
+ | |||
+ | Strip an MP3 of all metadata: | ||
< | < | ||
- | avconv | + | ffmpeg |
</ | </ | ||
- | |||
- | See [[http:// | ||
Set metadata title: | Set metadata title: | ||
< | < | ||
- | avconv | + | ffmpeg |
</ | </ | ||
- | Some more basics: | + | Set title, album, artist, track number: |
< | < | ||
- | 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 | ||
+ | </ |