Hi everyone,
This release has a new get_info function that returns the mime-type of
the file.
So the client code looks like this:
file = MTag::File.new(“song.mp3”)
print("%s - %s [%s]\n" % [file.tag.artist, file.tag.title,
file.get_info])
And it returns “artsist - title [audio/mpeg]”.
Also some bugfixes.