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 )