-
Notifications
You must be signed in to change notification settings - Fork 1
/
abcde-musicbrainz-tool
414 lines (344 loc) · 11.3 KB
/
abcde-musicbrainz-tool
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#!/usr/bin/env perl
# Copyright (c) 2012-2018 Steve McIntyre <[email protected]>
# This code is hereby licensed for public consumption under either the
# GNU GPL v2 or greater, or Larry Wall's Artistic license - your choice.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# abcde-musicbrainz-tool
#
# Helper script for abcde to work with the MusicBrainz WS API (v2)
use strict;
use utf8;
use POSIX qw(ceil);
use Digest::SHA;
use MusicBrainz::DiscID;
use WebService::MusicBrainz 1.0.4;
use Getopt::Long;
use Pod::Usage;
my $FRAMES_PER_S = 75;
my ($device, $command, $discid, @discinfo, $workdir, $help, $man, $start);
Getopt::Long::Configure ('no_ignore_case');
Getopt::Long::Configure ('no_auto_abbrev');
GetOptions ("device=s" => \$device,
"command=s" => \$command,
"discid=s" => \$discid,
"discinfo=i{4,}" => \@discinfo,
"workdir=s" => \$workdir,
"start=s" => \$start,
"help|h" => \$help,
"man" => \$man) or pod2usage(-verbose => 0, -exitcode => 2);
if (@ARGV) {
print STDERR "Extraneous arguments given.\n";
pod2usage(-verbose => 0, -exitcode => 2);
}
pod2usage(-verbose => 1, -exitcode => 0) if $help;
pod2usage(-verbose => 2, -exitcode => 0) if $man;
# defaults
if (!defined($device)) {
$device = "/dev/cdrom";
}
if (!defined($command)) {
$command = "id";
}
if (!defined($workdir)) {
$workdir = "/tmp";
}
if (!defined($start)) {
$start = "0";
}
sub calc_sha1($) {
my $filename = shift;
my $s = Digest::SHA->new(1);
$s->addfile($filename);
return $s->hexdigest;
}
if ($command =~ m/^id/) {
my $disc = new MusicBrainz::DiscID($device);
# read the disc in the default disc drive */
if ( $disc->read() == 0 ) {
printf STDERR "Error: %s\n", $disc->error_msg();
exit(1);
}
printf("%s ", $disc->id());
printf("%d ", $disc->last_track_num() + 1 - $disc->first_track_num());
for ( my $i = $disc->first_track_num;
$i <= $disc->last_track_num; $i++ ) {
printf("%d ", $disc->track_offset($i));
}
printf("%d\n", $disc->sectors() / $FRAMES_PER_S);
undef $disc;
} elsif ($command =~ m/data/) {
if (!defined $discid or !$discid) {
print STDERR "Discid undefined.\n";
exit(1);
}
my $ws = WebService::MusicBrainz->new();
my $response = $ws->search(discid => {
discid => $discid,
inc => ['artists', 'artist-credits', 'recordings']
});
if ($response->{'error'}) {
print STDERR "MusicBrainz lookup returned an error \"$response->{'error'}\"\n";
exit(0);
}
my $releasenum = $start;
my @sums;
if ($response->{'releases'}) {
my @releases = @{ $response->{'releases'} };
foreach my $release (@releases) {
my $a_artist = "";
my $number_artists = @{ $release->{'artist-credit'}};
if ($number_artists > 0) {
for (my $i = 0; $i < $number_artists; $i++) {
if ($i > 0) {
$a_artist = $a_artist . @{ $release->{'artist-credit'} }[$i-1]->{'joinphrase'};
}
$a_artist = $a_artist . @{ $release->{'artist-credit'} }[$i]->{'name'};
}
}
my $va = 0;
my $rel_year = "";
if ($a_artist =~ /Various Artists/) {
$va = 1;
}
if ($release->{'release-events'}) {
my @release_events = @{ $release->{'release-events'} };
if (@release_events > 0) {
$rel_year = substr(@release_events[0]->{'date'},0,4);
}
}
$releasenum++;
open (OUT, "> $workdir/cddbread.$releasenum");
binmode OUT, ":utf8";
print OUT "# xmcd style database file\n";
print OUT "#\n";
print OUT "# Track frame offsets:\n";
my @offsets = @{ $response->{'offsets'}};
foreach my $offset (@offsets) {
printf OUT "# %d\n", $offset;
}
# Locate the media that contains a disc with the discid we requested
# initially. The API may return multiple media associated with the
# release, including media with different discids
my @mediums = grep {
my @disks = @{ $_->{'discs'} };
grep { $_->{'id'} eq $discid } @disks;
} @{ $release->{'media'} };
if (not @mediums) {
# This release doesn't have a media with our requested dicsid
# Shouldn't happen (?), skip it
next;
}
# Only consider the first medium
my $medium = @mediums[0];
my @tracks = @{ $medium->{'tracks'} };
my $total_len = 0;
for (my $i = 0; $i < scalar(@tracks); $i++) {
my $track = $tracks[$i];
$total_len += $track->{'length'};
}
print OUT "#\n";
printf OUT "# Disc length: %d seconds\n", $total_len / 1000.0;
print OUT "#\n";
print OUT "# Submitted via: XXXXXX\n";
print OUT "#\n";
print OUT "#blues,classical,country,data,folk,jazz,newage,reggae,rock,soundtrack,misc\n";
print OUT "#CATEGORY=none\n";
print OUT "DISCID=" . $discid . "\n";
print OUT "DTITLE=" . $a_artist. " / " . $release->{'title'} . "\n";
print OUT "DYEAR=" . $rel_year . "\n";
print OUT "DGENRE=\n";
for (my $i = 0; $i < scalar(@tracks); $i++) {
my $track = $tracks[$i];
my $t_name = $track->{'title'};
my $number_artists = @{$track->{'recording'}->{'artist-credit'}};
if ($va and $number_artists > 0) {
my $t_artist = "";
for (my $j = 0; $j < $number_artists; $j++) {
if ($j > 0) {
$t_artist = $t_artist . @{$track->{'recording'}->{'artist-credit'}}[$j-1]->{'joinphrase'};
}
$t_artist = $t_artist . @{$track->{'recording'}->{'artist-credit'}}[$j]->{'name'};
}
printf OUT "TTITLE%d=%s / %s\n", $i, $t_artist, $t_name;
} else {
printf OUT "TTITLE%d=%s\n", $i, $t_name;
}
}
print OUT "EXTD=\n";
for (my $i = 0; $i < scalar(@tracks); $i++) {
printf OUT "EXTT%d=\n", $i;
}
print OUT "PLAYORDER=\n";
print OUT ".\n";
close OUT;
# save release mbid
open (OUT, "> $workdir/mbid.$releasenum");
print OUT $release->{'id'};
close OUT;
# save release asin
open (OUT, "> $workdir/asin.$releasenum");
print OUT $release->{'asin'};
close OUT;
# Check to see that this entry is unique; generate a checksum
# and compare to any previous checksums
my $checksum = calc_sha1("$workdir/cddbread.$releasenum");
foreach my $sum (@sums) {
if ($checksum eq $sum) {
unlink("$workdir/cddbread.$releasenum");
$releasenum--;
last;
}
}
push (@sums, $checksum);
}
} else {
# No release events found - looks like we have a stub
# entry. We can parse it, but it's going to be very
# different.
print STDERR "MusicBrainz lookup only returned a stub, trying to cope\n";
my $va = 0;
my $a_artist = "";
my $a_title = "";
my $rel_year = "";
if ($response->{'artist'}) {
$a_artist = $response->{'artist'};
}
if ($response->{'title'}) {
$a_title = $response->{'title'};
}
if ($a_artist =~ /Various Artists/) {
$va = 1;
}
$releasenum++;
open (OUT, "> $workdir/cddbread.$releasenum");
binmode OUT, ":utf8";
print OUT "# xmcd style database file\n";
print OUT "#\n";
print OUT "# Musicbrainz stub entry - check carefully!\n";
print OUT "#\n";
my @tracks = @{ $response->{'tracks'} };
my $total_len = 0;
for (my $i = 0; $i < scalar(@tracks); $i++) {
my $track = $tracks[$i];
$total_len += $track->{'length'};
}
printf OUT "# Disc length: %d seconds\n", $total_len / 1000.0;
print OUT "#\n";
print OUT "# Submitted via: XXXXXX\n";
print OUT "#\n";
print OUT "#blues,classical,country,data,folk,jazz,newage,reggae,rock,soundtrack,misc\n";
print OUT "#CATEGORY=none\n";
print OUT "DISCID=" . $discid . "\n";
print OUT "DTITLE=" . $a_artist. " / " . $a_title . "\n";
print OUT "DYEAR=" . $rel_year . "\n";
print OUT "DGENRE=\n";
for (my $i = 0; $i < scalar(@tracks); $i++) {
my $track = $tracks[$i];
my $t_name = $track->{'title'};
if ($va) {
my $t_artist = $track->{'artist'};
printf OUT "TTITLE%d=%s / %s\n", $i, $t_artist, $t_name;
} else {
printf OUT "TTITLE%d=%s\n", $i, $t_name;
}
}
print OUT "EXTD=\n";
for (my $i = 0; $i < scalar(@tracks); $i++) {
printf OUT "EXTT%d=\n", $i;
}
print OUT "PLAYORDER=\n";
print OUT ".\n";
close OUT;
# Check to see that this entry is unique; generate a checksum
# and compare to any previous checksums
my $checksum = calc_sha1("$workdir/cddbread.$releasenum");
foreach my $sum (@sums) {
if ($checksum eq $sum) {
unlink("$workdir/cddbread.$releasenum");
$releasenum--;
last;
}
}
push (@sums, $checksum);
}
} elsif ($command =~ m/calcid/) {
# Calculate MusicBrainz ID from disc offsets; see
# https://musicbrainz.org/doc/DiscIDCalculation
if ($#discinfo < 4) {
print STDERR "Insufficient or missing discinfo data.\n";
exit(1);
}
my ($first, $last, $leadin, $leadout, @offsets) = @discinfo;
my $s = Digest::SHA->new(1);
$s->add(sprintf "%02X", int($first));
$s->add(sprintf "%02X", int($last));
my @a;
for (my $i = 0; $i < 100; $i++) {
$a[$i] = 0;
}
my $i = 0;
foreach my $o ($leadout, @offsets) {
$a[$i++] = int($o) + int($leadin);
}
for (my $i = 0; $i < 100; $i++) {
$s->add(sprintf "%08X", $a[$i]);
}
my $id = $s->b64digest;
# CPAN Digest modules do not pad their Base64 output, so we have to do it.
while (length($id) % 4) {
$id .= '=';
}
$id =~ tr#+#.#;
$id =~ tr#/#_#;
$id =~ tr#=#-#;
print $id;
if (-t STDOUT) { print "\n"; }
} else {
print STDERR "Unknown command given.\n";
pod2usage(1);
exit(1);
}
__END__
=head1 NAME
abcde-musicbrainz-tool - Musicbrainz query tool
=head1 SYNOPSIS
abcde-musicbrainz-tool [options]
Options:
--command {id|data|calcid} mode of operation (default: id)
--device <DEV> read from CD-ROM device DEV (default: /dev/cdrom)
--discid <ID> Disc ID to query with --command data.
--discinfo <F> <L> <LI> <LO> <TRK1OFF> [<TRK2OFF> [...]]
Disc information for --command calcid.
--workdir <DIR> working directory (default: /tmp)
--help print option summary
--man full documentation
=head1 OPTIONS
=over 8
=item B<--command> I<{id|data|calcid}>
Select mode of operation:
=over 8
=item B<id>
Read the disc-ID from the disc in the given device, and print it, the number of tracks, their start sectors, and the duration of the disc in seconds, to stdout. Format:
ID TRACKCOUNT OFFSET1 [OFFSET2 [...]] LENGTH_S
=item B<data>
Query MusicBrainz web service and store data into the workdir into cddbread.1, cddbread.2, ... files in the workdir.
=item B<calcid>
Calculate MusicBrainz ID from given B<--discinfo> data.
=back
=item B<--device>
Specify CD-ROM drive's device name, to read ID from with B<--command id>.
=item B<--discid>
Supply disc ID for B<--command data>.
=item B<--discinfo> I<<first track> <last track> <lead-in sector> <lead-out sector> <track1 offset> [<track2 offset> [...]]>
Supply disc information for B<--command calcid>.
=item B<--workdir> I<directory>
The cddbread.* output files from B<--command data> go into this directory.
=item B<--help>
Print a brief help message and exit.
=item B<--man>
Display full manual and exit.
=back