Initial commit: V1

This commit is contained in:
theliu
2026-04-25 14:10:09 +08:00
parent 76b5751518
commit 3fe9b00de7
9 changed files with 305 additions and 279 deletions
+3 -11
View File
@@ -3,23 +3,15 @@ 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 正在激活 Videoer 环境并启动 GUI...
echo Starting VidMarmot...
call C:\ProgramData\anaconda3\Scripts\activate.bat Videoer
if errorlevel 1 (
echo [错误] 无法激活 Videoer 环境
pause
exit /b 1
)
cd /d "%~dp0"
python "%~dp0gui.py"
if errorlevel 1 (
echo.
echo [错误] 启动失败
echo [ERROR] Startup failed. Make sure Python and dependencies are installed.
pause
)