cd0552197f
- Prefetch next video's audio while GPU processes current embeddings - Don't cancel Scan All when switching files in playlist - Windows setup script now creates venv, installs PyTorch + requirements - 8cut.bat auto-detects venv Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
135 B
Batchfile
8 lines
135 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
if exist ".venv\Scripts\python.exe" (
|
|
.venv\Scripts\python.exe main.py %*
|
|
) else (
|
|
python main.py %*
|
|
)
|