Hi!!
I've been looking in the forum and i find a Class that is capable of reading Mp3 tags Thread. But now i wanted to be able to edit them, or write them. How can i do that?
Thks
Printable View
Hi!!
I've been looking in the forum and i find a Class that is capable of reading Mp3 tags Thread. But now i wanted to be able to edit them, or write them. How can i do that?
Thks
Check this out
http://www.codeproject.com/vb/net/vbmp3header.asp
I have recently been working on reading and writing MP3 tags. There are two types of tags that mp3 may have ID3v1 or ID3v2. While most mp3s now are using ID3v2 some still have ID3v1.
ID3v1 is very simple to read and write you just need to write the information into an 128 byte buffer at the end of the mp3 file.
However, ID3v2 gets much more complicated and you should visit the ID3 website for more information.
The basic overview of an ID3v2 tag is composed of a header, extended header and frames which hold the information such as title, artist, etc.
Have you had any luck in properly decoding the header section of an ID3v2 mp3 file? I have been at this for a while. I can grab info out of the file but as the frames go on, there not in sync or somthing. I grab the first 10 bytes which has the frame info & size, but in some frames the size doesn't match up and all that I receive at that point is trash data.
Do you happen to have any example code that i could look at to see how your processing this data?
Lol!
I've been in vacations so I havent doing anything and yet i'm just collecting information so when i have all i need i can start work on it!