shithub: opus

ref: 4b9d9b0030d3103b9f19d32935ddd3a90f2305a9
dir: /dnn/download_model.bat/

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

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

tar -xvzf %model%