Crash-m / thelastripper

Automatically exported from code.google.com/p/thelastripper
0 stars 0 forks source link

Add cover image as mp3 tag #111

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago

Feature Request: 

Please add the cover image to the MP3 tag. It is really quite simple with 
taglib-sharp. Example code:

------------
TagLib.File tagfile = TagLib.File.Create(file.FullName);
FileInfo[] coverimages = file.Directory.GetFile("cover.jpg");
tagfile.Tag.Pictures = new TagLib.IPicture[] { 
TagLib.Picture.CreateFromPath(coverimages[0].FullName) };
tagfile.Tag.Pictures[0].Type=PictureType.FrontCover;
tagfile.Save();

Original issue reported on code.google.com by grins...@gmail.com on 22 May 2008 at 10:32

GoogleCodeExporter commented 8 years ago
I think this has the same matter as  Issue 109: CoverArt in MP3Tag.
It's not a "Defect" but an Enhancement (wished by me, too).
Geetings pistazienfresser

Original comment by MJPSeid...@gmail.com on 27 Feb 2009 at 3:42

GoogleCodeExporter commented 8 years ago

Original comment by jopsen@gmail.com on 28 Feb 2009 at 11:31