id3

How to read MP3 file tags

妖精的绣舞 提交于 2019-11-26 15:54:57
问题 I want to have a program that reads metadata from an MP3 file. My program should also able to edit these metadata. What can I do? I got to search out for some open source code. But they have code; but not simplified idea for my job they are going to do. When I read further I found the metadata is stored in the MP3 file itself. But I am yet not able to make a full idea of my baby program. Any help will be appreciated; with a program or very idea (like an algorithm). :) 回答1: The last 128 bytes

View/edit ID3 data for MP3 files

爱⌒轻易说出口 提交于 2019-11-26 05:50:50
What's a quick and easy way to view and edit ID3 tags (artist, album, etc.) using C#? Luke Thirding TagLib Sharp . TagLib.File f = TagLib.File.Create(path); f.Tag.Album = "New Album Title"; f.Save(); mmcdole TagLib Sharp is pretty popular. As a side note, if you wanted to take a quick and dirty peek at doing it yourself.. here is a C# snippet I found to read an mp3's tag info. class MusicID3Tag { public byte[] TAGID = new byte[3]; // 3 public byte[] Title = new byte[30]; // 30 public byte[] Artist = new byte[30]; // 30 public byte[] Album = new byte[30]; // 30 public byte[] Year = new byte[4];

View/edit ID3 data for MP3 files

三世轮回 提交于 2019-11-26 01:56:09
问题 What\'s a quick and easy way to view and edit ID3 tags (artist, album, etc.) using C#? 回答1: Thirding TagLib Sharp. TagLib.File f = TagLib.File.Create(path); f.Tag.Album = "New Album Title"; f.Save(); 回答2: TagLib Sharp is pretty popular. As a side note, if you wanted to take a quick and dirty peek at doing it yourself.. here is a C# snippet I found to read an mp3's tag info. class MusicID3Tag { public byte[] TAGID = new byte[3]; // 3 public byte[] Title = new byte[30]; // 30 public byte[]