opus/dnn/download_model.sh
2021-10-04 15:51:06 -04:00

11 lines
195 B
Bash
Executable file

#!/bin/sh
model=lpcnet_data-$1.tar.gz
if [ ! -f $model ]; then
echo "Downloading latest model"
wget https://media.xiph.org/lpcnet/data/$model
fi
tar xvf $model
mv src/*.[ch] .