This commit is contained in:
hdubey 2023-02-06 23:32:31 -08:00 коммит произвёл GitHub
Родитель d8f0b97a55
Коммит c8b6920431
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 32 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,32 @@
#!/usr/bin/bash
# ***** BLIND Testset for 5th DNS Challenge at ICASSP 2023*****
# NOTE: Before downloading, make sure you have enough space
# on your local storage!
# -------------------------------------------------------------
# The directory structure of the unpacked data is:
#
# +-- V5_BlindTestSet
# | +-- Track1_Headset ---> (enrol, noisy)
# | +-- Track2_Speakerphone ---> (enrol, noisy)
URL="https://dnschallengepublic.blob.core.windows.net/dns5archive/V5_BlindTestSet.zip"
echo "Download: $URL"
#
# DRY RUN: print HTTP header WITHOUT downloading the files
curl -s -I "$URL"
#
# Actually download the archive - UNCOMMENT it when ready to download
#do
wget "$URL"
#done
# curl "$URL" -o "$BLOB"
# Same as above, but using wget
#wget "$URL
# Same, + unpack files on the fly
# curl "$URL" | tar -f - -x -j