Skip to the content.

Configuration

Configuration Structure

The configuration uses the following structure:


{
  showAdBreakCuePoint?: boolean,
  adBreakCuePointStyle?: CuePointOptionsObject
}

##

showAdBreakCuePoint

Type: boolean
Default: false - No cue points displayed for the ad breaks.
Description: Whether to show the ad breaks cue points.

##

adBreakCuePointStyle

Type: CuePointOptionsObject
Default: null - Use the default cue point style.
Description: Style options for the ad breaks cue points.
Examples:

Don’t show The cue point for the ad breaks:

{
  showAdBreakCuePoint: false;
}

Show The default cue point for the ad breaks:

{
  showAdBreakCuePoint: true;
}

Show a custom cue point for the ad breaks:

{
  showAdBreakCuePoint: true,
  adBreakCuePointStyle: {
    marker: {
      width: 10,
      color: 'rgb(255, 0, 0)'
    }
  }
}