mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-07-16 20:25:16 +02:00
Add a workaround for the start time race condition in Video.js
This commit is contained in:
@ -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 () => {
|
||||
|
Reference in New Issue
Block a user