Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

this link not helped me, but this is id3_1 http://willcode4beer.com/parsing.jsp?set=mp3ID3

There are many libraries, but not one does not work with the stream.

Tell the library, or tell me how much information needs to be downloaded, that would save the file and transfer libraries that work with the File.

share|improve this question
see this question? stackoverflow.com/questions/73147/… – Jason S May 10 '11 at 21:30
this lib not is stream – simply denis May 10 '11 at 22:15

1 Answer

How much needs to be read to obtain the ID3 information depends on the version of ID3 information in the stream. For ID3v1 it will be the last 128 bytes (or last 227+128 bytes for extended ID3v1); for ID3v2 it will be at the beginning.

share|improve this answer
If downloading is 128 bytes, stored in a file and send in those functions, then it will work? unless it finds will need to download the latest 227 and again to send a feature? – simply denis May 10 '11 at 22:17
If I'm understanding you correctly, the idea of downloading the beginning of the file (?? bytes for ID3v2 header) and joining it with the last 227+128 bytes and writing that to a file and running the ID3 information extraction on this file should work fine. You'll have to look up how long an ID3v2 header can be at the start of the file. – karmakaze May 12 '11 at 17:55
ID3v1 - ID3v1: 128 bytes + Extended tag (placed before the ID3v1 tag): 227 bytes. ID3v2 I read but not understand. REad for this en.wikipedia.org/wiki/ID3 – simply denis May 12 '11 at 18:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.