IDV3 tag writer?

Ken Ray kray at sonsothunder.com
Wed Sep 22 21:21:15 EDT 2004


On 9/22/04 7:37 PM, "Trevor DeVore" <lists at mangomultimedia.com> wrote:

> Anyone know of a library for writing idv3 tags to mp3 files?
> 

This was from a tip on my site:

on extract_ID3v1 someData, @songTitle, @artist, @album, @aYear, @comments,
 @genre
  put char -128 to -1 of someData into last_128Bytes
  if char 1 to 3 of last_128Bytes is "TAG" then
    get binaryDecode("a3a30a30a30a4a30c", last_128Bytes, tabBit, songTitle,
artist, album, aYear, comments, genre)
    return true
  else
    return false
  end if
end extract_ID3v1


HTH,

Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.com/
Email: kray at sonsothunder.com




More information about the use-livecode mailing list