mirror of
https://github.com/xiph/opus.git
synced 2025-05-19 01:48:30 +00:00
11 lines
204 B
Bash
Executable file
11 lines
204 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
model=lpcnet_data-$1.tar.gz
|
|
|
|
if [ ! -f $model ]; then
|
|
echo "Downloading latest model"
|
|
wget https://media.xiph.org/lpcnet/data/$model
|
|
fi
|
|
tar xvof $model
|
|
touch *_data.[ch]
|