CoolFace
Apppublic

Krish778/singer_07

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
go-applio.bat93 linesDownload Raw Back to root
1@echo off2setlocal3title Start Applio4 5:::6:::                       _ _7:::     /\               | (_)8:::    /  \   _ __  _ __ | |_  ___9:::   / /\ \ | '_ \| '_ \| | |/ _ \10:::  / ____ \| |_) | |_) | | | (_) |11::: /_/    \_\ .__/| .__/|_|_|\___/12:::          | |   | |13:::          |_|   |_|14:::15:::16 17:menu18for /f "delims=: tokens=*" %%A in ('findstr /b ":::" "%~f0"') do @echo(%%A19 20echo [1] Start Applio21echo [2] Start Applio (DML)22echo [3] Start Realtime GUI (DML)23echo [4] Start Realtime GUI (V0)24echo [5] Start Realtime GUI (V1)25echo.26 27set /p choice=Select an option: 28set choice=%choice: =%29 30cls31echo WARNING: It's recommended to disable antivirus or firewall, as errors might occur when starting the ssl.32pause33 34if "%choice%"=="1" (35    cls36    echo WARNING: At this point, it's recommended to disable antivirus or firewall, as errors might occur when downloading pretrained models.37    pause>null38    echo Starting Applio...39    echo.40    runtime\python.exe infer-web.py --pycmd runtime\python.exe --port 789741    pause42    cls43    goto menu44)45 46if "%choice%"=="2" (47    cls48    echo Starting Applio ^(DML^)...49    echo.50    runtime\python.exe infer-web.py --pycmd runtime\python.exe --port 7897 --dml51    pause52    cls53    goto menu54)55 56if "%choice%"=="3" (57    cls58    echo Starting Realtime GUI ^(DML^)...59    echo.60    runtime\python.exe gui_v1.py --pycmd runtime\python.exe --dml61    pause62    cls63    goto menu64)65 66if "%choice%"=="4" (67    cls68    echo Starting Realtime GUI ^(V0^)...69    echo.70    runtime\python.exe gui_v0.py71    pause72    cls73    goto menu74)75 76if "%choice%"=="5" (77    cls78    echo Starting Realtime GUI ^(V1^)...79    echo.80    runtime\python.exe gui_v1.py81    pause82    cls83    goto menu84)85 86cls87echo Invalid option. Please enter a number from 1 to 5.88echo.89echo Press 'Enter' to access the main menu...90pause>nul91cls92goto menu93