torchnet / scripts /download_videos.py
milselarch's picture
push to main
df07554
raw
history blame contribute delete
No virus
339 Bytes
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
)