Net::CDDBScan is a string search interface to CDDB database.
SYNOPSIS
use Net::CDDBScan;
Grab a list of all songs for Madonna
$cddb = Net::CDDBScan->new(CONT =>1);
$songs = $cddb->getsongs("madonna");
print $songs{$_},'
' foreach %{$songs};
$cddb->close();
Net::CDDBScan is an interface to the www.cddb.com website; or more specifically to their online search engine for the cddb database. Originally created as a small part of a greater application. This module allows you to take any existing string like "tricky" or "for whom the bell tolls" and get the artist name, all albums from said artist and all songs on ANY album said artist has ever worked on. (Or close enough: This is assuming the cddb database has a record of the given artist/album/song.)
Product's homepage
Requirements:
· Perl