Hello,
do you know for which formats ffmpeg can import album art and how ?
I know that you can import album art for MP3 with this :
Code:ffmpeg.exe -y -i my_song.mp3 -i my_album_art.jpg -map 0 -map 1 -c copy -id3v2_version 3 -write_id3v1 1 my_song_with_album_art.mp3
+ Reply to Thread
Results 1 to 3 of 3
-
-
I guess that would depend on compatibility with devices, wouldn't it? Anyway I took your script and made a batch processing script out of it to simplify adding cover art to the whole album at one time. You'll need to edit path to ffmpeg and create a sub-folder called ART. That is where the new files will be created already correctly named.
In this example, I added album cover art to Pink Floyd's Dark Side of the Moon.
Code:SET PATH="C:\FFMpeg\64-bit" for %%a in ("*.mp3") do ffmpeg.exe -y -i "%%a" -i moon.jpg -map 0 -map 1 -c copy -id3v2_version 3 -write_id3v1 1 "ART/%%~na.mp3" pause
Got my retirement plans all set. Looks like I only have to work another 5 years after I die........
Similar Threads
-
Album Art for Flac
By alexander121 in forum AudioReplies: 5Last Post: 14th May 2015, 23:42 -
Edius 6.0 don't import files transcoded with FFMPEG
By marcorocchini in forum Newbie / General discussionsReplies: 6Last Post: 22nd Oct 2013, 02:57 -
Album Art Browser
By JMNick in forum Software PlayingReplies: 0Last Post: 11th Nov 2011, 02:32 -
PotPlayer Album Art
By positcert in forum Software PlayingReplies: 3Last Post: 13th Sep 2011, 18:55 -
Album cover art
By ssaamm in forum ComputerReplies: 1Last Post: 1st Jan 2011, 09:53