torchnet / scripts /download_audios.py
milselarch's picture
push to main
df07554
raw
history blame contribute delete
310 Bytes
from tqdm.auto import tqdm
import subprocess
"""
Downloads speaker audio files from the dataset hosting website
"""
for k in tqdm(range(1, 35)):
subprocess.run(
'cd ../GRID_wavs; wget '
'https://spandh.dcs.shef.ac.uk/'
f'gridcorpus/s{k}/audio/s{k}.tar',
shell=True
)