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

Download this file

17 lines (11 with data), 325 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/usr/bin/env bash
DATA_DIR="../../../data/diving48/"
if [[ ! -d "${DATA_DIR}" ]]; then
echo "${DATA_DIR} does not exist. Creating";
mkdir -p ${DATA_DIR}
fi
cd ${DATA_DIR}
wget http://www.svcl.ucsd.edu/projects/resound/Diving48_rgb.tar.gz --no-check-certificate
tar -zxvf Diving48_rgb.tar.gz
mv ./rgb ./videos
cd -