Update URL for test data
This commit is contained in:
parent
a59b718e8a
commit
b125f41cae
1 changed files with 6 additions and 1 deletions
|
@ -12,7 +12,12 @@ def r128_test_data(tmp_path_factory):
|
||||||
|
|
||||||
# The latest data can be found here:
|
# The latest data can be found here:
|
||||||
# https://tech.ebu.ch/publications/ebu_loudness_test_set
|
# https://tech.ebu.ch/publications/ebu_loudness_test_set
|
||||||
url = 'https://tech.ebu.ch/files/live/sites/tech/files/shared/testmaterial/ebu-loudness-test-setv05.zip' # noqa
|
|
||||||
|
# I used to point to the official dataset hosted by the EBU, but they
|
||||||
|
# either throttled me or are getting hammered by other requests. For now, I
|
||||||
|
# am hosting a copy to get around the issue. If anyone has suggestions on
|
||||||
|
# dataset hosting for integration tests, I'm all ears.
|
||||||
|
url = 'https://jodh.us/export/ebu-loudness-test-setv05.zip'
|
||||||
z = tmp_path_factory.getbasetemp() / 'ebu-loudness-test-setv05.zip'
|
z = tmp_path_factory.getbasetemp() / 'ebu-loudness-test-setv05.zip'
|
||||||
|
|
||||||
data = request.urlopen(url)
|
data = request.urlopen(url)
|
||||||
|
|
Loading…
Reference in a new issue