Sphere360 / toolset /crawl /download /download_list.sh
omniaudio's picture
Upload folder using huggingface_hub
77dbe7c verified
Raw
History Blame Contribute Delete
252 Bytes
#!/bin/bash
input_csv="" # input video ids
output_dir="" # output directory
jobs=8 # number of jobs
log_name="download.log" # log file name
python download_list.py \
-i "${input_csv}" \
-o "${output_dir}" \
-j ${jobs} \
> ${log_name}