initial commit (clean, no models)

This commit is contained in:
akukanara
2026-05-30 21:30:49 +07:00
Unverified
commit e90b5c971c
22 changed files with 7872 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
@echo off
title ONNX Real-Time Voice Changer
cd /d "%~dp0"
set VENV_PYTHON=..\rvc-tts-webui\venv\Scripts\python.exe
if exist "%VENV_PYTHON%" (
echo Menjalankan menggunakan virtual environment dari rvc-tts-webui...
"%VENV_PYTHON%" -u server.py --host 127.0.0.1 --port 8765 --http_port 8000
) else (
echo Virtual environment tidak ditemukan, mencoba menggunakan python sistem...
python -u server.py --host 127.0.0.1 --port 8765 --http_port 8000
)
pause