Read MP3 Tag Info
This vbscript class reads tag information like album, title, artist, genre, comments and more from mp3 files. All ID3 versions are supported.
Set oMP3 = New cReadMP3
With oMP3
.FilePath = Server.MapPath("YourFile.mp3")
Call .ReadMP3
sTitle = .Title
sArtist = .Artist
sAlbum = .Album
lYear = .Year
sComment = .Comment
lTrackNumber = .TrackNumber
sGenre = .Genre
sComposer = .Composer
sOriginalArtist = .OriginalArtist
sCopyRight = .CopyRight
sLyrics = .Lyrics
sPublisher = .Publisher
lSize = .Size
sDateCreated = .DateCreated
sDateLastAccessed = .DateLastAccessed
sDateLastModified = .DateLastModified
End With
PRICE: FREE.