diff --git a/web/src/components/player/MsePlayer.tsx b/web/src/components/player/MsePlayer.tsx index 678e1583b..0f874cea7 100644 --- a/web/src/components/player/MsePlayer.tsx +++ b/web/src/components/player/MsePlayer.tsx @@ -274,7 +274,7 @@ function MSEPlayer({ onmessageRef.current["mse"] = (msg) => { if (msg.type !== "mse") return; - console.log(msg.value); + console.log(camera, "codecs", msg.value); let sb: SourceBuffer | undefined; try { @@ -347,12 +347,6 @@ function MSEPlayer({ const now = Date.now(); - // we either recently just started streaming or recently - // jumped to live, so don't jump to live again right away - if (now - lastJumpTimeRef.current < BUFFERING_COOLDOWN_TIMEOUT) { - return; - } - const buffered = videoRef.current.buffered; if (buffered.length > 0) { const liveEdge = buffered.end(buffered.length - 1);