@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