File size: 339 Bytes
df07554 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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
)
|