You can override the default behavior for how TVSDK handles seeks over ads when using custom ad markers.
By default, when a user seeks into or past ad sections that result from the placement of custom ad markers, TVSDK skips the ads. This might differ from the current playback behavior for standard ad breaks. You can set TVSDK to reposition the playhead to the beginning of the most recently skipped custom ad when the user seeks past one or more custom ads.
Call CustomRangeMetadata.setAdjustSeekPosition
with true
.
customRangeMetadata.setAdjustSeekPosition (true);
Use customRangeMetadata
in MediaPlayerItemConfig
.
// Set customRangeMetadata
config.setCustomRangeMetadata(customRangeMetadata);
// prepare the content for playback by calling replaceCurrentResource
mediaPlayer.replaceCurrentResource(mediaResource, config);