[6d389a]: / tools / data / ucf101 / download_videos.sh

Download this file

17 lines (11 with data), 344 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/usr/bin/env bash
DATA_DIR="../../../data/ucf101/"
if [[ ! -d "${DATA_DIR}" ]]; then
echo "${DATA_DIR} does not exist. Creating";
mkdir -p ${DATA_DIR}
fi
cd ${DATA_DIR}
wget https://www.crcv.ucf.edu/datasets/human-actions/ucf101/UCF101.rar --no-check-certificate
unrar x UCF101.rar
mv ./UCF-101 ./videos
cd "../../tools/data/ucf101"