Re: For all G4C music lovers
| Newsgroups | gmane.comp.windows.gui4cli |
|---|---|
| Message-ID | <[email protected]> |
Hi Fer, The second command line example (move tag to end) doesn't work as expected. FFmpeg insist on writing a ID3-tag to both start and end with that. For the first "cleanup" command line, I have a nice addition... ffmpeg -hide_banner -i "input.mp3" -f ffmetadata metadump.txt -vn -codec:a copy -id3v2_version 0 -y "clean.mp3" Note that the order of the commands is important. This wites a text file at the same location as the "clean.mp3" with the ID3-tag items in a more or less ini like format.. ;FFMETADATA1 album_artist=The Common Linnets album=The Common Linnets artist=The Common Linnets genre=Pop publisher=Universal (Universal) track=01 title=Calm After The Storm date=2014 encoder=Lavf55.38.100 You could read that e.g. in a hidden listview, clean it up a bit and show it in a info window on your custom mp3 (audio) player. Chris