AudioFile::Info 1.08 review

Download
by rbytes.net on

AudioFile::Info is a Perl extension to get info from audio files. SYNOPSIS use AudioFile::Info; my $song = AudioFile::In

License: Perl Artistic License
File size: 4K
Developer: Dave Cross
0 stars award from rbytes.net

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