Initial commit

Made-with: Cursor
This commit is contained in:
Nils
2026-03-29 20:45:07 +02:00
commit 10be82cba5
30 changed files with 5085 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
@echo off
echo Creating firewall rules for Easy IRL Stream...
netsh advfirewall firewall add rule name="Easy IRL Stream - SRT (UDP)" dir=in action=allow protocol=UDP localport=9000 profile=private,public
netsh advfirewall firewall add rule name="Easy IRL Stream - RTMP (TCP)" dir=in action=allow protocol=TCP localport=1935 profile=private,public
netsh advfirewall firewall add rule name="Easy IRL Stream - SRTLA (UDP)" dir=in action=allow protocol=UDP localport=5000 profile=private,public
echo.
echo Done! SRT (UDP 9000), RTMP (TCP 1935) and SRTLA (UDP 5000) are now allowed.
pause