diff --git a/squashkiwi-streaming/.gitignore b/squashkiwi-streaming/.gitignore new file mode 100644 index 0000000..58786aa --- /dev/null +++ b/squashkiwi-streaming/.gitignore @@ -0,0 +1,7 @@ + +# Playwright +node_modules/ +/test-results/ +/playwright-report/ +/blob-report/ +/playwright/.cache/ diff --git a/squashkiwi-streaming/config/mediamtx.yml b/squashkiwi-streaming/config/mediamtx.yml index 43b0199..cef9ae5 100644 --- a/squashkiwi-streaming/config/mediamtx.yml +++ b/squashkiwi-streaming/config/mediamtx.yml @@ -4,9 +4,6 @@ logLevel: info logDestinations: [stdout] -# Authentication - disable for public access -authMethod: none - # API Configuration api: yes apiAddress: :9997 @@ -28,12 +25,21 @@ hlsAllowOrigin: '*' hlsSegmentCount: 10 hlsSegmentDuration: 2s hlsPartDuration: 200ms +hlsAlwaysRemux: yes # WebRTC Server webrtc: yes webrtcAddress: :8889 webrtcAllowOrigin: '*' +# Path defaults +pathDefaults: + # Disable authentication + readUser: + readPass: + publishUser: + publishPass: + # Path Configuration paths: # Transcoded H264 stream diff --git a/squashkiwi-streaming/test-substream.sh b/squashkiwi-streaming/test-substream.sh old mode 100644 new mode 100755