| 12345678910111213141516 |
- #!/usr/bin/env bash
- set -e
- DATADIR="LJSpeech-1.1"
- BZ2ARCHIVE="${DATADIR}.tar.bz2"
- ENDPOINT="http://data.keithito.com/data/speech/$BZ2ARCHIVE"
- if [ ! -d "$DATADIR" ]; then
- echo "dataset is missing, unpacking ..."
- if [ ! -f "$BZ2ARCHIVE" ]; then
- echo "dataset archive is missing, downloading ..."
- wget "$ENDPOINT"
- fi
- tar jxvf "$BZ2ARCHIVE"
- fi
|