Add a workaround for the start time race condition in Video.js

pull/928/head
Kyle Maas 2023-12-02 14:26:24 +00:00
rodzic c5047d8df8
commit 39f68000e3
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -197,6 +197,8 @@ export function VideoPlayer(props) {
const paramT = Number(urlParams.get('t'));
const timestamp = !isNaN(paramT) ? paramT : 0;
player.player.currentTime(timestamp);
// This is a really hacky way to work around a race condition within Video.js where it thinks it was ready in currentTime() but it actually wasn't so it clears this value:
player.player.cache_.initTime = timestamp;
});
return () => {