ref: be5f58d6790117a1ac7056b4fffa7240efa1347d
dir: /dnn/download_model.bat/
@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% move .\src\*.c . move .\src\*.h .