Files
video/run.bat
T
2026-04-25 14:10:09 +08:00

18 lines
315 B
Batchfile

@echo off
chcp 65001 >nul
cd /d "%~dp0"
:: clean cache
del /s /q __pycache__\*.pyc 2>nul
for /d %%d in (__pycache__) do rd /s /q "%%d" 2>nul
echo Starting VidMarmot...
python "%~dp0gui.py"
if errorlevel 1 (
echo.
echo [ERROR] Startup failed. Make sure Python and dependencies are installed.
pause
)