Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2023-11-29 07:39:48 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2023-11-29 07:39:48 +0300
commit5578824258c4ceea28b010a60de4a535bb028d87 (patch)
treefb25fcbae85edc32fac5365bdb5c39562d5e024e
parentddfa48046bc3af47f4f3e070c64eae4e21ac8f32 (diff)
Fix model download path for windows
-rw-r--r--dnn/download_model.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/dnn/download_model.bat b/dnn/download_model.bat
index 32d03ff8..f49eaa59 100644
--- a/dnn/download_model.bat
+++ b/dnn/download_model.bat
@@ -1,9 +1,9 @@
@echo off
-set model=lpcnet_data-%1.tar.gz
+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/lpcnet/data/%model%', '%model%')"
+ powershell -Command "(New-Object System.Net.WebClient).DownloadFile('https://media.xiph.org/opus/models/%model%', '%model%')"
)
tar -xvzf %model%