From 62a85caca11308e914d29576875974c39b6c93a2 Mon Sep 17 00:00:00 2001 From: Quentin Lhoest <42851186+lhoestq@users.noreply.github.com> Date: Fri, 16 Jan 2026 12:42:07 +0100 Subject: [PATCH] Update wham function to use new download URL --- generate_librimix_sd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate_librimix_sd.sh b/generate_librimix_sd.sh index 240d037..6cf2a64 100644 --- a/generate_librimix_sd.sh +++ b/generate_librimix_sd.sh @@ -50,7 +50,7 @@ function wham() { if ! test -e $wham_dir; then echo "Download wham_noise into $storage_dir" # If downloading stalls for more than 20s, relaunch from previous state. - wget -c --tries=0 --read-timeout=20 https://storage.googleapis.com/whisper-public/wham_noise.zip -P $storage_dir + wget -c --tries=0 --read-timeout=20 https://my-bucket-a8b4b49c25c811ee9a7e8bba05fa24c7.s3.amazonaws.com/wham_noise.zip -P $storage_dir unzip -qn $storage_dir/wham_noise.zip -d $storage_dir rm -rf $storage_dir/wham_noise.zip fi