@echo off title SRT Streamer cd /d "%~dp0" :: Check node_modules if not exist "node_modules" ( echo [INFO] Dependencies not installed. Running setup... echo. call setup.bat ) :: Check ffmpeg-bin if not exist "ffmpeg-bin\ffmpeg.exe" ( echo [WARNING] ffmpeg.exe not found in ffmpeg-bin\ echo. echo Place ffmpeg.exe in the ffmpeg-bin\ folder and restart. echo Download: https://github.com/BtbN/FFmpeg-Builds/releases echo. pause exit /b 1 ) echo Starting SRT Streamer... npm run dev