Reading ID3v1 Tags From MP3s |
|
Posted 4/11/2003 by David to the MetaCard List (See the complete post/thread)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