forked from nikopueringer/CorridorKey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstall_VideoMaMa_Windows.bat
More file actions
27 lines (23 loc) · 965 Bytes
/
Install_VideoMaMa_Windows.bat
File metadata and controls
27 lines (23 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
TITLE VideoMaMa Setup Wizard
echo ===================================================
echo VideoMaMa (AlphaHint Generator) - Auto-Installer
echo ===================================================
echo.
:: Check that uv sync has been run (the .venv directory should exist)
if not exist ".venv" (
echo [ERROR] Project environment not found.
echo Please run Install_CorridorKey_Windows.bat first!
pause
exit /b
)
:: 1. Download Weights (all Python deps are already installed by uv sync)
echo [1/1] Downloading VideoMaMa Model Weights...
if not exist "VideoMaMaInferenceModule\checkpoints" mkdir "VideoMaMaInferenceModule\checkpoints"
echo Downloading VideoMaMa weights from HuggingFace...
uv run hf download SammyLim/VideoMaMa --local-dir VideoMaMaInferenceModule\checkpoints
echo.
echo ===================================================
echo VideoMaMa Setup Complete!
echo ===================================================
pause