AudioFile::Info 1.08 review
DownloadAudioFile::Info is a Perl extension to get info from audio files. SYNOPSIS use AudioFile::Info; my $song = AudioFile::In
|
|
AudioFile::Info is a Perl extension to get info from audio files.
SYNOPSIS
use AudioFile::Info;
my $song = AudioFile::Info->new($some_mp3_or_ogg_vorbis_file);
print 'Title: ', $song->title, "n",
'Artist: ', $song->artist, "n".
'Album: ', $song->album, "n",
'Track: ', $song->track, "n";
'Year: ', $song->year, "n",
'Genre: ', $song->genre, "n";
$song->title('something else'); # Changes the title
ABSTRACT
AudioFile::Info is a simple way to get track information out of an audio file. It gives a unified interface for extracting information from both MP3 and Ogg Vorbis files.
Some AudioFile::Info plugins also have the ability to write data back to the file.
Requirements:
Perl
AudioFile::Info 1.08 keywords