I'm using amazon kinesis video stream and video.js. With GetHLSStreamingSessionURL function, I can stream the video at a video player created by video.js.
But, Comparing to the preview at amazon kinesis video stream dashboard, there is no server timestamp information.
Is there any way to show the server timestamp or the producer timestamp on the video player?
I tested
player.ready(function () {
this.on('timeupdate', function () {
// console.log(this.currentSources)
console.log(this.currentTime())
})
});
But it's not server timestamp.