mirror of
https://github.com/xiph/opus.git
synced 2025-05-24 12:19:15 +00:00
11 lines
195 B
Bash
Executable file
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] .
|