+ Reply to Thread
Results 1 to 3 of 3

Thread: How to add a cover to a mp3 file

  1. How to add a cover to a mp3 file

    Hi,

    I'm a beginner so sorry if my question is very simple but I would like to know how to add a cover (jpg file) to a mp3 file (I'm working with the c#).

    Moreover I would like to know if this picture will be linked to the mp3 file even if the jpg file is removed from the hard disk or if the mp3 file is moved.

    Thanks in advance,

    Regards & Repect,

    Helan Leath

  2. Join Date
    Dec 2004
    Location
    Rochester, NY
    Posts
    541

    I would like to know how to add a cover (jpg file) to a mp3 file (I'm working with the c#).
    Code:
    using System.IO;
    using IdSharp.Tagging.ID3v2;
    using IdSharp.Tagging.ID3v2.Frames;
    
    ...
    
    string mp3FileName = @"C:\mp3file.mp3";
    string pictureFileName = @"C:\picturefile.jpg";
    
    ID3v2 id3v2 = new ID3v2(mp3FileName);
    IAttachedPicture picture = id3v2.PictureList.AddNew();
    picture.PictureData = File.ReadAllBytes(pictureFileName);
    picture.PictureType = PictureType.CoverFront; // optional
    id3v2.Save(mp3FileName);
    I would like to know if this picture will be linked to the mp3 file even if the jpg file is removed from the hard disk or if the mp3 file is moved.
    Yes, the picture is saved in the ID3v2 tag.

  3. Thanks a lot Jud. Regards, Helan Leath.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. add image cover Visual Basic 6
    By hersio in forum IdSharp.Tagging
    Replies: 0
    Last Post: March 24th, 2010, 04:06 PM
  2. Converting BMP cover-art to JPG
    By davinci in forum Feature Requests
    Replies: 3
    Last Post: August 24th, 2009, 05:04 PM
  3. Add option to use more track/disc digits in file names
    By no1butme in forum Feature Requests
    Replies: 1
    Last Post: August 24th, 2009, 05:43 AM
  4. cover art in cdtag 3.0?
    By kyle in forum Feature Requests
    Replies: 3
    Last Post: August 24th, 2009, 05:33 AM
  5. Detecting mp3 encoder used for mp3 files
    By davinci in forum Feature Requests (Archive)
    Replies: 21
    Last Post: December 8th, 2006, 05:45 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts