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_aligns; wget ' | |
'https://spandh.dcs.shef.ac.uk/' | |
f'gridcorpus/s{k}/align/s{k}.tar', | |
shell=True | |
) | |