From c8b6920431470b2d2bb7f119d1d62ad269894f7c Mon Sep 17 00:00:00 2001 From: hdubey Date: Mon, 6 Feb 2023 23:32:31 -0800 Subject: [PATCH] Add files via upload --- download-dns5-blind-testset.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 download-dns5-blind-testset.sh diff --git a/download-dns5-blind-testset.sh b/download-dns5-blind-testset.sh new file mode 100644 index 00000000000..2d9609c2924 --- /dev/null +++ b/download-dns5-blind-testset.sh @@ -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