Results 1 to 2 of 2

Thread: me need ur help, please :) !?!

  1. #1

    Thread Starter
    Lively Member mrdarkwarez's Avatar
    Join Date
    Feb 2000
    Location
    Australia
    Posts
    113

    Post

    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

  2. #2
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649

    Post

    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
  •  



Click Here to Expand Forum to Full Width