1

从音频 CD 获取 cd-title 和 cd-track-names 的最佳方法是什么?我试过这个模块,但没有用。

#!/usr/bin/env perl
use warnings;
use strict;
use CDDB_get qw( get_cddb );

my %config;
$config{CDDB_HOST} = "freedb.freedb.org";
$config{CDDB_PORT} = 8880;
$config{CDDB_MODE} = "cddb";
$config{CD_DEVICE} = "/dev/sr1";

# user interaction welcome?
$config{input} = 1;

my %cd = get_cddb( \%config ); # line 16

print "$_ : $cd{$_}\n" for keys %cd;

unless( defined $cd{title} ) {
    die "no cddb entry found";
}

print "artist: $cd{artist}\n";
print "title: $cd{title}\n";
print "category: $cd{cat}\n";
print "cddbid: $cd{id}\n";
print "trackno: $cd{tno}\n";

my $n = 1;
for my $i ( @{$cd{track}} ) {
    print "track $n: $i\n";
    $n++;
}

# OUT:
# Odd number of elements in hash assignment at ./cddb_get.pl line 16.
# Use of uninitialized value in list assignment at ./cddb_get.pl line 16.
# Use of uninitialized value in concatenation (.) or string at ./cddb_get.pl line 18.
#  :
# no cddb entry found at ./cddb_get.pl line 21.
4

3 回答 3

4

试着放

BEGIN { $CDDB_get::debug = 1 }

在该use CDDB_get行之前,以便将调试输出输出到 STDERR。

于 2010-02-15T09:22:49.537 回答
2

您确定模块中 FreeDB 的 API URL 正确吗?

您可以尝试使用 HTTP 代替 CDDBP 吗?

来自FreeDB 文档

将您的 CDDB1 或 freedb 感知软件配置为指向 freedb.freedb.org(随机 freedb 服务器)作为您的 CDDB/freedb 服务器。

所有官方的freedb服务器都在8880端口运行cddbp,在80端口运行http。http-access的路径是/~cddb/cddb.cgi。

于 2010-02-15T08:35:15.357 回答
1

我会考虑在musicbrainz.org上查找信息。

使用 MusicBrainz::DiscID 查找 cd 的 discid 并使用 WebService::MusicBrainz 检索数据非常容易:

#!/usr/bin/perl

use strict;
use warnings;

use MusicBrainz::DiscID;
use WebService::MusicBrainz;

my $discid=MusicBrainz::DiscID->new;
if ( !$discid->read ) {
    print STDERR "Error: " . $discid->error_msg . "\n";
    exit 1;
}
print "DiscID: " . $discid->id . "\n";

my $service=WebService::MusicBrainz->new_release;
my $response=$service->search({ DISCID=>$discid->id });
my $release=$response->release;

print "ARTIST: " . $release->artist->name . "\n";
print "ALBUM:  " . $release->title . "\n";
于 2010-02-16T17:30:31.673 回答