Update VoiceChange.bat
Browse files- VoiceChange.bat +33 -33
VoiceChange.bat
CHANGED
@@ -1,33 +1,33 @@
|
|
1 |
-
@echo off
|
2 |
-
|
3 |
-
pushd %~dp0
|
4 |
-
set ZIP_FILE=MMVCServerSIO_win_onnxgpu-cuda_v.1.5.2.
|
5 |
-
if not exist %ZIP_FILE% (
|
6 |
-
curl -LO https://huggingface.co/wok000/vcclient/resolve/main/%ZIP_FILE%
|
7 |
-
)
|
8 |
-
|
9 |
-
set MMVC_DIR=MMVCServerSIO
|
10 |
-
if not exist %MMVC_DIR% (
|
11 |
-
PowerShell -Version 5.1 -ExecutionPolicy Bypass Expand-Archive -Path %ZIP_FILE% -DestinationPath .
|
12 |
-
)
|
13 |
-
|
14 |
-
set HUBERT_BASE=hubert_base.pt
|
15 |
-
if not exist %MMVC_DIR%\%HUBERT_BASE% (
|
16 |
-
curl -Lo %MMVC_DIR%\%HUBERT_BASE% https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt
|
17 |
-
)
|
18 |
-
|
19 |
-
set RINNE_RVC=RinneRVC-20230410
|
20 |
-
if not exist .\Rinne.pth (
|
21 |
-
if not exist .\%RINNE_RVC%.zip (
|
22 |
-
curl -LO https://huggingface.co/RinneAi/RinneVoiceSet/resolve/main/%RINNE_RVC%.zip
|
23 |
-
)
|
24 |
-
PowerShell -Version 5.1 -ExecutionPolicy Bypass Expand-Archive -Path %RINNE_RVC%.zip -DestinationPath .
|
25 |
-
move %RINNE_RVC%\* .
|
26 |
-
rd %RINNE_RVC%\
|
27 |
-
)
|
28 |
-
|
29 |
-
popd
|
30 |
-
|
31 |
-
cd %~dp0MMVCServerSIO
|
32 |
-
start http://localhost:18888/
|
33 |
-
start start_http.bat
|
|
|
1 |
+
@echo off
|
2 |
+
|
3 |
+
pushd %~dp0
|
4 |
+
set ZIP_FILE=MMVCServerSIO_win_onnxgpu-cuda_v.1.5.2.4.zip
|
5 |
+
if not exist %ZIP_FILE% (
|
6 |
+
curl -LO https://huggingface.co/wok000/vcclient/resolve/main/%ZIP_FILE%
|
7 |
+
)
|
8 |
+
|
9 |
+
set MMVC_DIR=MMVCServerSIO
|
10 |
+
if not exist %MMVC_DIR% (
|
11 |
+
PowerShell -Version 5.1 -ExecutionPolicy Bypass Expand-Archive -Path %ZIP_FILE% -DestinationPath .
|
12 |
+
)
|
13 |
+
|
14 |
+
set HUBERT_BASE=hubert_base.pt
|
15 |
+
if not exist %MMVC_DIR%\%HUBERT_BASE% (
|
16 |
+
curl -Lo %MMVC_DIR%\%HUBERT_BASE% https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt
|
17 |
+
)
|
18 |
+
|
19 |
+
set RINNE_RVC=RinneRVC-20230410
|
20 |
+
if not exist .\Rinne.pth (
|
21 |
+
if not exist .\%RINNE_RVC%.zip (
|
22 |
+
curl -LO https://huggingface.co/RinneAi/RinneVoiceSet/resolve/main/%RINNE_RVC%.zip
|
23 |
+
)
|
24 |
+
PowerShell -Version 5.1 -ExecutionPolicy Bypass Expand-Archive -Path %RINNE_RVC%.zip -DestinationPath .
|
25 |
+
move %RINNE_RVC%\* .
|
26 |
+
rd %RINNE_RVC%\
|
27 |
+
)
|
28 |
+
|
29 |
+
popd
|
30 |
+
|
31 |
+
cd %~dp0MMVCServerSIO
|
32 |
+
start http://localhost:18888/
|
33 |
+
start start_http.bat
|