Io Reference







Audio   /   TagLib   /   TagLib





Used to set meta data tags on the following audio formats:
ape
flac
mp3
mpc
mpeg
ogg
Supports reading and writing the following attributes:
title
artist
album
year
track
genre 
And reading the attributes:
bitRate
sampleRate
channels
length
Example use (load and modify a track genre):
t := TagLib clone setPath("foo.mp3") load
writeln("genre = ", t genre)
t setGenre("ambient")
t save
 
 
 



load

Loads tag data from the file specified in the path slot. Returns self.
path

Returns the path to the file.
save

Saves the tag settings and returns self.
setPath(aSeq)

Sets the path to the file.