Rob Walch
Rob Walch
Updating the multivariant playlist is not a defined feature of HLS.
Make sure you include `requireKeySystemAccessOnStart: true` in the config when primary content is encrypted. If MediaSoure transfer is still not working between encrypted and clear content, resetting the source by...
> Is this something we need to cover or it's totally an issue from packager side? (Which means ad start date shouldn't be earlier than asset content start date) If...
> Could you help elaborate more why it should be a packager issue for VOD asset? The top of the manifest does not roll for VOD.
> From check manifest I found that the ad start date is earlier than asset start date, I tried to override the response to make sure asset start date same...
How or when do you call play() on the video? Wait until the buffer is full.
> Basically, we have a subscription to the canplay event of the video tag. Yes, we can check the buffer on our side, I was just wondering if there is...
In the logs there is a seek between each segment load suggesting that you are seeking backwards through the content but I don't see that in the reproduction steps.
As a workaround, you can flush the buffer whenever seeking to a point that proceeds a buffered range: ```js video.addEventListener('seeking', (e) => { const startOffset = e.currentTarget.currentTime; // It would...
Is this with mp4 or ts segments? I could be an issue with the MSE implementation detecting overlap where this isn't - perhaps related to the overlap of decode and...