NAME
MP3::Tag::CDDB_File - Module for parsing CDDB files.
SYNOPSIS
my $db = MP3::Tag::CDDB_File->new($filename, $track); # Name of MP3 file
my $db = MP3::Tag::CDDB_File->new_from($record, $track); # Contents of CDDB
($title, $artist, $album, $year, $comment, $track) = $db->parse();
see MP3::Tag
DESCRIPTION
MP3::Tag::Inf is designed to be called from the MP3::Tag module.
It parses the content of CDDB file.
The file is found in the same directory as MP3 file; the list of possible file names is taken from the field cddb_files if set by MP3::Tag config() method.
- parse()
-
($title, $artist, $album, $year, $comment, $track) = $db->parse($what);parse_filename() extracts information about artist, title, track number, album and year from the CDDB record. $what is optional; it maybe title, track, artist, album, year or comment. If $what is defined parse() will return only this element.
- title()
-
$title = $db->title();Returns the title, obtained from the
'Tracktitle'entry of the file. - artist()
-
$artist = $db->artist();Returns the artist name, obtained from the
'Performer'or'Albumperformer'entries (the first which is present) of the file. - track()
-
$track = $db->track();Returns the track number, stored during object creation.
- year()
-
$year = $db->year();Returns the year, obtained from the
'Year'entry of the file. (Often not present.) - album()
-
$album = $db->album();Returns the album name, obtained from the
'Albumtitle'entry of the file. - comment()
-
$comment = $db->comment();Returns the
'Trackcomment'entry of the file. (Often not present.) - genre()
-
$genre = $db->genre($filename);
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 36:
=over without closing =back