File size: 628 Bytes
899fbd2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
@echo off
pushd %~dp0
set ZIP_FILE=MMVCServerSIO_win_onnxgpu-cuda_v.1.5.2.3.zip
if not exist %ZIP_FILE% (
curl -LO https://huggingface.co/wok000/vcclient/resolve/main/%ZIP_FILE%
)
set MMVC_DIR=MMVCServerSIO
if not exist %MMVC_DIR% (
PowerShell -Version 5.1 -ExecutionPolicy Bypass Expand-Archive -Path %ZIP_FILE% -DestinationPath .
)
set HUBERT_BASE=hubert_base.pt
if not exist %MMVC_DIR%\%HUBERT_BASE% (
curl -Lo %MMVC_DIR%\%HUBERT_BASE% https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt
)
popd
cd %~dp0MMVCServerSIO
start http://localhost:18888/
start start_http.bat
|