From a9611957576f3cd0d3cc525732ed0ec78be9854a Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 13 Oct 2024 18:10:09 +0200 Subject: [PATCH] Add start.bat script --- start.bat | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 start.bat diff --git a/start.bat b/start.bat new file mode 100644 index 0000000..377e063 --- /dev/null +++ b/start.bat @@ -0,0 +1,26 @@ +@echo off + +echo Enabling mobile hotspot +powershell -NoProfile -ExecutionPolicy Bypass -File ".\mhotspot.ps1" + +echo Starting docker desktop +start "" "C:\Program Files\Docker\Docker\Docker Desktop.exe" +@REM timeout /t 5 >nul + +:waitForDocker +tasklist | find /i "Docker Desktop.exe" >nul +if errorlevel 1 ( + timeout /t 1 >nul + goto waitForDocker +) + +echo Starting docker compose +cd ".\mediamtx" +docker compose up -d + +echo Launching OBS instances +start "OBS1" /D "C:\Program Files\obs-studio\bin\64bit" "obs64.exe" --profile "Profile1" --collection "Profile1" --multi --startstreaming +timeout /t 1 >nul +start "OBS2" /D "C:\Program Files\obs-studio\bin\64bit" "obs64.exe" --profile "Profile2" --collection "Profile2" --multi --startstreaming + +@REM pause