fix(playback-store): reset playhead and notify video elements on completion

This commit is contained in:
DevloperAmanSingh
2025-06-25 16:34:12 +05:30
parent c18b173bc9
commit d9fcef9385

View File

@ -21,7 +21,13 @@ const startTimer = (store: any) => {
const newTime = state.currentTime + delta * state.speed;
if (newTime >= state.duration) {
// When video completes, pause and reset playhead to start
state.pause();
state.setCurrentTime(0);
// Notify video elements to sync with reset
window.dispatchEvent(
new CustomEvent("playback-seek", { detail: { time: 0 } })
);
} else {
state.setCurrentTime(newTime);
// Notify video elements to sync