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