Mp3 tag
-
Hi I am making mp3 player in c# and i want to know how to access to the tag where i can get the name of artist,.. It's name is Id3 or something like that i have libaries but i dont know how to acces this informations... if you have example it will be very useful. Thanks
nemanja
-
Hi I am making mp3 player in c# and i want to know how to access to the tag where i can get the name of artist,.. It's name is Id3 or something like that i have libaries but i dont know how to acces this informations... if you have example it will be very useful. Thanks
nemanja
The ID3 Version 2 tag is very complicated and pretty complex to parse. You might want to check the much easier ID3 Version 1 tag. It's typically at the end of the MP3 file, starting 128bytes from the end to then end. If there is an ID3v1 tag, then the last 128bytes start with 'TAG'. It's very easy to read and write. Check google for the exact format of the ID3v1 tag. regards
-
The ID3 Version 2 tag is very complicated and pretty complex to parse. You might want to check the much easier ID3 Version 1 tag. It's typically at the end of the MP3 file, starting 128bytes from the end to then end. If there is an ID3v1 tag, then the last 128bytes start with 'TAG'. It's very easy to read and write. Check google for the exact format of the ID3v1 tag. regards
Thanks for the answer but how i ko wthat the mp3 file is id 1 or id 2 .I am beginer at this ... What is the diffrence and how i can recognize the diffrence thanks!
nemanja
-
Thanks for the answer but how i ko wthat the mp3 file is id 1 or id 2 .I am beginer at this ... What is the diffrence and how i can recognize the diffrence thanks!
nemanja