-
Notifications
You must be signed in to change notification settings - Fork 66
/
acoustid.py
484 lines (396 loc) · 16.2 KB
/
acoustid.py
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# This file is part of pyacoustid.
# Copyright 2014, Adrian Sampson.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
from __future__ import division
from __future__ import absolute_import
from typing import List
import os
import json
import requests
import contextlib
import errno
try:
import audioread
have_audioread = True
except ImportError:
have_audioread = False
try:
import chromaprint
have_chromaprint = True
except ImportError:
have_chromaprint = False
import subprocess
import threading
import time
import gzip
from io import BytesIO
API_BASE_URL = 'http://api.acoustid.org/v2/'
DEFAULT_META = ['recordings']
REQUEST_INTERVAL = 0.33 # 3 requests/second.
MAX_AUDIO_LENGTH = 120 # Seconds.
FPCALC_COMMAND = 'fpcalc'
FPCALC_ENVVAR = 'FPCALC'
MAX_BIT_ERROR = 2 # comparison settings
MAX_ALIGN_OFFSET = 120
# Exceptions.
class AcoustidError(Exception):
"""Base for exceptions in this module."""
class FingerprintGenerationError(AcoustidError):
"""The audio could not be fingerprinted."""
class NoBackendError(FingerprintGenerationError):
"""The audio could not be fingerprinted because neither the
Chromaprint library nor the fpcalc command-line tool is installed.
"""
class FingerprintSubmissionError(AcoustidError):
"""Missing required data for a fingerprint submission."""
class WebServiceError(AcoustidError):
"""The Web service request failed. The field ``message`` contains a
description of the error. If this is an error that was specifically
sent by the acoustid server, then the ``code`` field contains the
acoustid error code.
"""
def __init__(self, message, response=None):
"""Create an error for the given HTTP response body, if
provided, with the ``message`` as a fallback.
"""
if response:
# Try to parse the JSON error response.
try:
data = json.loads(response)
except ValueError:
pass
else:
if isinstance(data.get('error'), dict):
error = data['error']
if 'message' in error:
message = error['message']
if 'code' in error:
self.code = error['code']
super(WebServiceError, self).__init__(message)
self.message = message
# Endpoint configuration.
def set_base_url(url):
"""Set the URL of the API server to query."""
if not url.endswith('/'):
url += '/'
global API_BASE_URL
API_BASE_URL = url
def _get_lookup_url():
"""Get the URL of the lookup API endpoint."""
return API_BASE_URL + 'lookup'
def _get_submit_url():
"""Get the URL of the submission API endpoint."""
return API_BASE_URL + 'submit'
def _get_submission_status_url():
"""Get the URL of the submission status API endpoint."""
return API_BASE_URL + 'submission_status'
# Compressed HTTP request bodies.
def _compress(data):
"""Compress a bytestring to a gzip archive."""
sio = BytesIO()
with contextlib.closing(gzip.GzipFile(fileobj=sio, mode='wb')) as f:
f.write(data)
return sio.getvalue()
class CompressedHTTPAdapter(requests.adapters.HTTPAdapter):
"""An `HTTPAdapter` that compresses request bodies with gzip. The
Content-Encoding header is set accordingly.
"""
def add_headers(self, request, **kwargs):
body = request.body
if not isinstance(body, bytes):
body = body.encode('utf8')
request.prepare_body(_compress(body), None)
request.headers['Content-Encoding'] = 'gzip'
# Utilities.
class _rate_limit(object): # noqa: N801
"""A decorator that limits the rate at which the function may be
called. The rate is controlled by the REQUEST_INTERVAL module-level
constant; set the value to zero to disable rate limiting. The
limiting is thread-safe; only one thread may be in the function at a
time (acts like a monitor in this sense).
"""
def __init__(self, fun):
self.fun = fun
self.last_call = 0.0
self.lock = threading.Lock()
def __call__(self, *args, **kwargs):
with self.lock:
# Wait until request_rate time has passed since last_call,
# then update last_call.
since_last_call = time.time() - self.last_call
if since_last_call < REQUEST_INTERVAL:
time.sleep(REQUEST_INTERVAL - since_last_call)
self.last_call = time.time()
# Call the original function.
return self.fun(*args, **kwargs)
@_rate_limit
def _api_request(url, params, timeout=None):
"""Makes a POST request for the URL with the given form parameters,
which are encoded as compressed form data, and returns a parsed JSON
response. May raise a WebServiceError if the request fails.
If the specified timeout passes, then raises a TimeoutError.
"""
headers = {
'Accept-Encoding': 'gzip',
"Content-Type": "application/x-www-form-urlencoded"
}
with requests.Session() as session:
session.mount('http://', CompressedHTTPAdapter())
try:
if isinstance(params.get('meta'), list):
params['meta'] = ' '.join(params['meta'])
response = session.post(url,
data=params,
headers=headers,
timeout=timeout)
except requests.exceptions.RequestException as exc:
raise WebServiceError("HTTP request failed: {0}".format(exc))
except requests.exceptions.ReadTimeout:
raise WebServiceError(
"HTTP request timed out ({0}s)".format(timeout)
)
try:
return response.json()
except ValueError:
raise WebServiceError('response is not valid JSON')
# Main API.
def fingerprint(samplerate, channels, pcmiter, maxlength=MAX_AUDIO_LENGTH):
"""Fingerprint audio data given its sample rate and number of
channels. pcmiter should be an iterable containing blocks of PCM
data as byte strings. Raises a FingerprintGenerationError if
anything goes wrong.
"""
# Maximum number of samples to decode.
endposition = samplerate * channels * maxlength
try:
fper = chromaprint.Fingerprinter()
fper.start(samplerate, channels)
position = 0 # Samples of audio fed to the fingerprinter.
for block in pcmiter:
fper.feed(block)
position += len(block) // 2 # 2 bytes/sample.
if position >= endposition:
break
return fper.finish()
except chromaprint.FingerprintError:
raise FingerprintGenerationError("fingerprint calculation failed")
def lookup(apikey, fingerprint, duration, meta=DEFAULT_META, timeout=None):
"""Look up a fingerprint with the Acoustid Web service. Returns the
Python object reflecting the response JSON data. To get more data
back, ``meta`` can be a list of keywords from this list: recordings,
recordingids, releases, releaseids, releasegroups, releasegroupids,
tracks, compress, usermeta, sources.
"""
params = {
'format': 'json',
'client': apikey,
'duration': int(duration),
'fingerprint': fingerprint,
'meta': meta,
}
return _api_request(_get_lookup_url(), params, timeout)
def parse_lookup_result(data):
"""Given a parsed JSON response, generate tuples containing the match
score, the MusicBrainz recording ID, the title of the recording, and
the artist name of the recording. Multiple artist names are joined
by join phrases as displayed on web page. If an artist is not available,
the last item is None. If the response is incomplete, raises a
WebServiceError.
"""
if data['status'] != 'ok':
raise WebServiceError("status: %s" % data['status'])
if 'results' not in data:
raise WebServiceError("results not included")
for result in data['results']:
score = result['score']
if 'recordings' not in result:
# No recording attached. This result is not very useful.
continue
for recording in result['recordings']:
# Get the artist if available.
artists = recording.get("artists")
if artists:
artist_name = "".join(
[
artist["name"] + artist.get("joinphrase", "")
for artist in artists
]
)
else:
artist_name = None
yield score, recording['id'], recording.get('title'), artist_name
def _fingerprint_file_audioread(path, maxlength):
"""Fingerprint a file by using audioread and chromaprint."""
try:
with audioread.audio_open(path) as f:
duration = f.duration
fp = fingerprint(f.samplerate, f.channels, iter(f), maxlength)
except audioread.DecodeError:
raise FingerprintGenerationError("audio could not be decoded")
return duration, fp
def _fingerprint_file_fpcalc(path, maxlength):
"""Fingerprint a file by calling the fpcalc application."""
fpcalc = os.environ.get(FPCALC_ENVVAR, FPCALC_COMMAND)
command = [fpcalc, "-length", str(maxlength), path]
try:
with open(os.devnull, 'wb') as devnull:
proc = subprocess.Popen(command, stdout=subprocess.PIPE,
stderr=devnull)
output, _ = proc.communicate()
except OSError as exc:
if exc.errno == errno.ENOENT:
raise NoBackendError("fpcalc not found")
else:
raise FingerprintGenerationError("fpcalc invocation failed: %s" %
str(exc))
except UnicodeEncodeError:
# Due to a bug in Python 2's subprocess on Windows, Unicode
# filenames can fail to encode on that platform. See:
# http://bugs.python.org/issue1759845
raise FingerprintGenerationError("argument encoding failed")
retcode = proc.poll()
if retcode:
raise FingerprintGenerationError("fpcalc exited with status %i" %
retcode)
duration = fp = None
for line in output.splitlines():
try:
parts = line.split(b'=', 1)
except ValueError:
raise FingerprintGenerationError("malformed fpcalc output")
if parts[0] == b'DURATION':
try:
duration = float(parts[1])
except ValueError:
raise FingerprintGenerationError("fpcalc duration not numeric")
elif parts[0] == b'FINGERPRINT':
fp = parts[1]
if duration is None or fp is None:
raise FingerprintGenerationError("missing fpcalc output")
return duration, fp
def fingerprint_file(path, maxlength=MAX_AUDIO_LENGTH, force_fpcalc=False):
"""Fingerprint a file either using the Chromaprint dynamic library
or the fpcalc command-line tool, whichever is available (unless
``force_fpcalc`` is specified). Returns the duration and the
fingerprint.
"""
path = os.path.abspath(os.path.expanduser(path))
if have_audioread and have_chromaprint and not force_fpcalc:
return _fingerprint_file_audioread(path, maxlength)
else:
return _fingerprint_file_fpcalc(path, maxlength)
def _popcount(x) -> int:
"""count 1s in binary encoding of x"""
return bin(x).count('1')
def _match_fingerprints(a: List[int], b: List[int]) -> float:
"""Compare two Chromaprint fingerprints, given as numbers.
For more details, see:
https://essentia.upf.edu/tutorial_fingerprinting_chromaprint.html
:param a: decompressed fingerprint
:param b: decompressed fingerprint
:return: similarity score [0,1]
"""
asize = len(a)
bsize = len(b)
numcounts = asize + bsize + 1
counts = [0] * numcounts
for i in range(asize):
jbegin = max(0, i - MAX_ALIGN_OFFSET)
jend = min(bsize, i + MAX_ALIGN_OFFSET)
for j in range(jbegin, jend):
biterror = _popcount(a[i] ^ b[j]) # xor operator
if biterror <= MAX_BIT_ERROR:
offset = i - j + bsize
counts[offset] += 1
topcount = max(counts)
return topcount / min(asize, bsize)
def compare_fingerprints(a, b) -> float:
"""Compare two fingerprints produced by `fingerprint_file`.
:param a: A pair produced by `fingerprint_file`.
:param b: A second such pair.
:return: similarity score [0,1]
"""
if not have_chromaprint:
raise ModuleNotFoundError("function needs chromaprint")
# decompress fingerprints
a = [int(x) for x in chromaprint.decode_fingerprint(a[1])[0]]
b = [int(x) for x in chromaprint.decode_fingerprint(b[1])[0]]
return _match_fingerprints(a, b)
def match(apikey, path, meta=DEFAULT_META, parse=True, force_fpcalc=False,
timeout=None):
"""Look up the metadata for an audio file. If ``parse`` is true,
then ``parse_lookup_result`` is used to return an iterator over
small tuple of relevant information; otherwise, the full parsed JSON
response is returned. Fingerprinting uses either the Chromaprint
library or the fpcalc command-line tool; if ``force_fpcalc`` is
true, only the latter will be used. To get more data back, ``meta``
can be a list of keywords from this list: recordings, recordingids,
releases, releaseids, releasegroups, releasegroupids, tracks,
compress, usermeta, sources.
"""
duration, fp = fingerprint_file(path, force_fpcalc=force_fpcalc)
response = lookup(apikey, fp, duration, meta, timeout)
if parse:
return parse_lookup_result(response)
else:
return response
def submit(apikey, userkey, data, timeout=None):
"""Submit a fingerprint to the acoustid server. The ``apikey`` and
``userkey`` parameters are API keys for the application and the
submitting user, respectively.
``data`` may be either a single dictionary or a list of
dictionaries. In either case, each dictionary must contain a
``fingerprint`` key and a ``duration`` key and may include the
following: ``puid``, ``mbid``, ``track``, ``artist``, ``album``,
``albumartist``, ``year``, ``trackno``, ``discno``, ``fileformat``,
``bitrate``
If the required keys are not present in a dictionary, a
FingerprintSubmissionError is raised.
Returns the parsed JSON response.
"""
if isinstance(data, dict):
data = [data]
args = {
'format': 'json',
'client': apikey,
'user': userkey,
}
# Build up "field.#" parameters corresponding to the parameters
# given in each dictionary.
for i, d in enumerate(data):
if "duration" not in d or "fingerprint" not in d:
raise FingerprintSubmissionError("missing required parameters")
# The duration needs to be an integer.
d["duration"] = int(d["duration"])
for k, v in d.items():
args["%s.%s" % (k, i)] = v
response = _api_request(_get_submit_url(), args, timeout)
if response.get('status') != 'ok':
try:
code = response['error']['code']
message = response['error']['message']
except KeyError:
raise WebServiceError("response: {0}".format(response))
raise WebServiceError("error {0}: {1}".format(code, message))
return response
def get_submission_status(apikey, submission_id, timeout=None):
"""Get the status of a submission to the acoustid server.
``submission_id`` is the id of a fingerprint submission, as returned
in the response object of a call to the ``submit`` endpoint.
"""
params = {
'format': 'json',
'client': apikey,
'id': submission_id,
}
return _api_request(_get_submission_status_url(), params, timeout)