Skip to main content

Overriding a DASH manifest's suggestedPresentationDelay

A DASH manifest may contain a  suggestedPresentationDelay  value, which by default will take priority over the value set by setLivePresentationDelayMs(). To enable the OTVPlayerConfiguration to override the manifest's value, setLivePresentationDelayOverridesManifest(true)must be called in addition to setLivePresentationDelayMs().

If setLivePresentationDelayOverridesManifest(true) is not called, suggestedPresentationDelay will be used when it is present; when it is absent, the setLivePresentationDelayMs() value will be used.

JAVA
OTVPlayerConfiguration.Builder configBuilder = new OTVPlayerConfiguration.Builder();
configBuilder.setLivePresentationDelayMs(30000); 
configBuilder.setLivePresentationDelayOverridesManifest(true);
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.