diff --git a/web/src/components/player/HlsVideoPlayer.tsx b/web/src/components/player/HlsVideoPlayer.tsx index 06ed67a3c..9293dc1bb 100644 --- a/web/src/components/player/HlsVideoPlayer.tsx +++ b/web/src/components/player/HlsVideoPlayer.tsx @@ -62,6 +62,8 @@ export default function HlsVideoPlayer({ return; } + const currentPlaybackRate = videoRef.current.playbackRate; + if (!hlsRef.current) { videoRef.current.src = currentSource; videoRef.current.load(); @@ -69,6 +71,7 @@ export default function HlsVideoPlayer({ } hlsRef.current.loadSource(currentSource); + videoRef.current.playbackRate = currentPlaybackRate; }, [videoRef, hlsRef, currentSource]); // controls