from tqdm.auto import tqdm import subprocess """ Downloads speaker video files from the dataset hosting website (norma quality ones only) """ for k in tqdm(range(1, 35)): subprocess.run( 'cd ../GRID; wget ' 'https://spandh.dcs.shef.ac.uk/' f'gridcorpus/s{k}/video/s{k}.mpg_vcd.zip', shell=True )