Ticket #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
comment:1 Changed 4 months ago by cehoyos
- Keywords mp3 added
- Status changed from new to closed
- Resolution set to invalid
comment:2 Changed 4 months ago by Atarikid
OK. But you have to update the ffmpeg help page for this.
A lot of people cannot get cover art to work.
comment:5 Changed 4 months ago by cehoyos
- Resolution changed from invalid to fixed
- Version changed from unspecified to git-master
- Component changed from undetermined to documentation
- Reproduced by developer set
- Summary changed from Adding cover art to MP3 issues to Adding cover art to MP3 documentation outdated
Should be fixed, thank you for the useful bug report!
Note: See
TracTickets for help on using
tickets.



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.