ID3
-
I would like to know if anyone shall be interested by a 100% C# class for reading/writing ID3V1 and read-only ID3V2 (working on the writing part right now). I just would like to know if anyone would be interested to read an article about that. My job is nearly done on this class and I would put it on Code Project with a sample of an "automatic mp3 renamer". Anyone's comment ? If someone says "Die mortal!", don't stay to see if he isn't.
-
I would like to know if anyone shall be interested by a 100% C# class for reading/writing ID3V1 and read-only ID3V2 (working on the writing part right now). I just would like to know if anyone would be interested to read an article about that. My job is nearly done on this class and I would put it on Code Project with a sample of an "automatic mp3 renamer". Anyone's comment ? If someone says "Die mortal!", don't stay to see if he isn't.
That sounds handy. I'm not very familiar with this stuff. Would it allow you to do something like rename mp3s so that they have their correct album order instead of being alphabetical? Matt Gerrans
-
That sounds handy. I'm not very familiar with this stuff. Would it allow you to do something like rename mp3s so that they have their correct album order instead of being alphabetical? Matt Gerrans
An ID3 is only a tag that is placed at the beginning or the end of a file and that allow to identify the Artist, song, track, album or more of a mp3. Let's say that you have a song filename like this : "05 - Nothing Else Matter.mp3" Unless you know that song... you don't know which artist it is. If you are a ordered music maniac like me... you must hate having files like that. My class will allow you to read those tag. The tag will probably return "Metallica" and "Nothing Else Matters" So the only thing you would need to do, build a software that use this class to do a mass renamer. This will probably be my demo project. That will rename all song selected from "05 - Nothing Else Matters.mp3" to "Metallica - Nothing Else Matters.mp3" or to any other template that could be configured (album, track, year... etc...) Any body would like to comment ? If someone says "Die mortal!", don't stay to see if he isn't.
-
An ID3 is only a tag that is placed at the beginning or the end of a file and that allow to identify the Artist, song, track, album or more of a mp3. Let's say that you have a song filename like this : "05 - Nothing Else Matter.mp3" Unless you know that song... you don't know which artist it is. If you are a ordered music maniac like me... you must hate having files like that. My class will allow you to read those tag. The tag will probably return "Metallica" and "Nothing Else Matters" So the only thing you would need to do, build a software that use this class to do a mass renamer. This will probably be my demo project. That will rename all song selected from "05 - Nothing Else Matters.mp3" to "Metallica - Nothing Else Matters.mp3" or to any other template that could be configured (album, track, year... etc...) Any body would like to comment ? If someone says "Die mortal!", don't stay to see if he isn't.