mirror of
https://github.com/xiph/opus.git
synced 2025-05-30 23:27:42 +00:00
11 lines
219 B
Bash
Executable file
11 lines
219 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
|
|
touch src/nnet_data.[ch]
|
|
mv src/*.[ch] .
|