shithub: opus

ref: a30c96aa8a6da49f9844f12fcb40cc9ecf67bf8d
dir: /dnn/download_model.bat/

View raw version
@echo off
set model=lpcnet_data-%1.tar.gz

if not exist %model% (
    echo Downloading latest model
    powershell -Command "(New-Object System.Net.WebClient).DownloadFile('https://media.xiph.org/lpcnet/data/%model%', '%model%')"
)

tar -xvzf %model%