|
Thread: Mp3
-
Jun 8th, 2001, 10:00 PM
#1
Thread Starter
Good Ol' Platypus
Mp3
I've 'broken into' the file format of MP3s using an HTML file that I found on the internet. (I've included it in the link below)
Well, I've got some problems.
It returns full zero values in areas it isnt supposed to. Furthermore, it works in Winamp and Media Player, so I know it isn't corrupt.
A more recent version of the document can be found here:
http://www.dv.co.yu/mpgscript/mpeghdr.htm
So anyways I will post the project if my problems persist...
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
Jun 11th, 2001, 07:53 PM
#2
-
Jun 11th, 2001, 07:55 PM
#3
Need-a-life Member
-
Jun 11th, 2001, 08:38 PM
#4
Thread Starter
Good Ol' Platypus
Thank you...
I already have the code to get the ID3 tag(s) in the MP3 file, I just have troubles reading the header.
I would use Media Player but I need to send the data over the network in 1 second chunks, reassemble them and play them so this is how I am doing it.
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
Jun 12th, 2001, 06:35 AM
#5
Need-a-life Member
Ok, I didn't know you were using this code. I had a little problem, similar as yours, I guess. Some of the MP3 gets no info. But I found the problem. The line
Code:
R = R + (B * 16384)
gets Overflow is B > 1 and then the sub can't find the "TAG" and returns nothing. The way to handle this is:
Code:
R = R + (B * 16384&)
and you probably get all the MP3s' info.
Emiliano F. Martín
If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
Encourage the person who helped you to keep doing it, and give him the points he deserves.
MP3 Organizer: Freeware to logically organize all your MP3s.
-
Jun 12th, 2001, 03:28 PM
#6
Thread Starter
Good Ol' Platypus
2 things....
1. I'm not using that code
2. I'm having trouble reading the MP3 FILE, NOT THE ID3 TAG OF IT. I can get the Id3 tag okay.
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
Jun 12th, 2001, 06:20 PM
#7
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|