|
-
Feb 23rd, 2000, 10:23 PM
#1
Thread Starter
Lively Member
i want to make a program the edits the tag of the mp3 file, i have figured out one way of doing it, make the changes by reading the entire 5meg mp3 file and making the neccsaary changes then writing it out again. But the problem is that vb is too slow wif big files, and sometimes locks up.....
is there any other way i can do it, the tag is only the last 128 byte of the file.
I've seen another program that does the same thing, but a hell of alot faster, how come vb can't do that???
any suggestions would be appricated
-
Feb 23rd, 2000, 11:17 PM
#2
Open the file for Binary and use the Seek statement:
Dim iFile%
iFile = FreeFile
Open "c:\MyMusic.mp3" For Binary As #iFile
Seek #iFile, LOF(iFile) - 128
'use the Put statement here to write the new tag
Good luck!
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
|