#2221 closed defect (fixed)
Adding cover art to MP3 documentation outdated
Reported by: | Atarikid | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | documentation |
Version: | git-master | Keywords: | mp3 |
Cc: | Blocked By: | ||
Blocking: | Reproduced by developer: | yes | |
Analyzed by developer: | no |
Description
According ffmpeg.org documentation it should be possible to add cover art to .mp3 files.
This does not works:
ffmpeg -i input.mp3 -i cover.png -c copy -id3v2_version 3 -metadata:s:v title="Album cover"
-metadata:s:v comment="Cover (Front)" out.mp3
However this works
ffmpeg -i input.mp3 -i cover.png -map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3
Is this suppose to work like this?
Change History (5)
comment:1 by , 12 years ago
Keywords: | mp3 added |
---|---|
Resolution: | → invalid |
Status: | new → closed |
comment:2 by , 12 years ago
OK. But you have to update the ffmpeg help page for this.
A lot of people cannot get cover art to work.
comment:4 by , 12 years ago
comment:5 by , 12 years ago
Component: | undetermined → documentation |
---|---|
Reproduced by developer: | set |
Resolution: | invalid → fixed |
Summary: | Adding cover art to MP3 issues → Adding cover art to MP3 documentation outdated |
Version: | unspecified → git-master |
Should be fixed, thank you for the useful bug report!
Yes, the relevant regression was fixed some time ago, see ticket #1408.
For future tickets: Please always add the complete, uncut console output together with your failing command line.