Welcome to mirror list, hosted at ThFree Co, Russian Federation.

download_model.sh « dnn - gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 127441dee6a0d3948d8ef2f8a1157e2e3aab3cd2 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

model=opus_data-$1.tar.gz

if [ ! -f $model ]; then
        echo "Downloading latest model"
        wget https://media.xiph.org/opus/models/$model
fi
tar xvomf $model