VideoHelp Forum




+ Reply to Thread
Results 1 to 3 of 3
  1. 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
    Quote Quote  
  2. Member racer-x's Avatar
    Join Date
    Mar 2003
    Location
    3rd Rock from the Sun
    Search Comp PM
    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........
    Quote Quote  
  3. i mean can ffmpeg import album art for flac, aac, alac or whatever and how ?
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!