mono / taglib-sharp

Library for reading and writing metadata in media files
GNU Lesser General Public License v2.1
1.29k stars 312 forks source link

I got different Lyrics from iTunes #179

Open SeakyLuo opened 5 years ago

SeakyLuo commented 5 years ago

I am using this piece of code to get lyrics.

   using (var tagFile = TagLib.File.Create(new MusicFileAbstraction(file), TagLib.ReadStyle.Average))
   {
       return tagFile.Tag.Lyrics;
   }

I do get lyrics, but that looks different from the lyrics I see on iTunes. Any ideas why?

decriptor commented 5 years ago

I'll try and take a look at this later next week.

SeakyLuo commented 5 years ago

I just wanna add that, when I modify the lyrics using code or iTunes. The lyrics doesn't change on the other side. It is consistent throughout one app.