From 6a91c00701914662197f7a09a8ede2a2cd4633f0 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 3 Jul 2024 06:30:42 -0600 Subject: [PATCH] Use webrtc if mse is unsupported --- web/src/components/player/LivePlayer.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/web/src/components/player/LivePlayer.tsx b/web/src/components/player/LivePlayer.tsx index 1343e8aae..86ef06c36 100644 --- a/web/src/components/player/LivePlayer.tsx +++ b/web/src/components/player/LivePlayer.tsx @@ -159,12 +159,8 @@ export default function LivePlayer({ /> ); } else { - player = ( -
- MSE is only supported on iOS 17.1+. You'll need to update if available - or use jsmpeg / webRTC streams. See the docs for more info. -
- ); + onError("mse-decode"); + player = null; } } else if (liveMode == "jsmpeg") { if (cameraActive || !showStillWithoutActivity) {