[fpc-pascal] Re: ID3v2 - Reading and writing MP3 metadata

2013-05-10 Thread leledumbo
Just extend the writetag method, see wikipedia for composer code tag. -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/ID3v2-Reading-and-writing-MP3-metadata-tp5714707p5714724.html Sent from the Free Pascal - General mailing list archive at Nabble.com. _

Re: [fpc-pascal] Re: ID3v2 - Reading and writing MP3 metadata

2013-05-09 Thread luciano de souza
I didn't test it becose I didn't find the "composer" tag in the source code. Without the "composer" tag, I can conclude it does not support ID3V2. I observed also that "genre" is an integer. At ID3v2, "genre" became a string. 2013/5/9, Fred van Stappen : > Well, the unit you present me seems to on

[fpc-pascal] Re: ID3v2 - Reading and writing MP3 metadata

2013-05-09 Thread leledumbo
> Well, the unit you present me seems to only support ID3v1 Have you really checked and tried the code? It works for both version. -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/ID3v2-Reading-and-writing-MP3-metadata-tp5714707p5714711.html Sent from the Free

RE: [fpc-pascal] Re: ID3v2 - Reading and writing MP3 metadata

2013-05-09 Thread Fred van Stappen
Well, the unit you present me seems to only support ID3v1. I said: "It works only under the ID3v1 pattern!" No. Its not correct. What I want to say is that only the same tags filled under the ID3v1 pattern is filled when I use the TID3v2 class. So the attached unit and the mentioned example behaves

Re: [fpc-pascal] Re: ID3v2 - Reading and writing MP3 metadata

2013-05-09 Thread luciano de souza
Well, the unit you present me seems to only support ID3v1. I said: "It works only under the ID3v1 pattern!" No. Its not correct. What I want to say is that only the same tags filled under the ID3v1 pattern is filled when I use the TID3v2 class. So the attached unit and the mentioned example behaves

[fpc-pascal] Re: ID3v2 - Reading and writing MP3 metadata

2013-05-09 Thread leledumbo
As wikipedia explains, ID3v1 and ID3v2 are completely unrelated and have different structure. Without seeing what your friend unit contains, it's hard to tell whether he implements both versions correctly or not. But since you said the version 1 works, and I don't see anything discriminating the tw