The following instructions provide guidance for implementation across all 3.x SDKs.
If you are implementing any previous versions of the SDK, you can download the Developers Guides here: Download SDKs.
Constant name | Description |
---|---|
SeekStart |
Constant for tracking Seek Start event. |
SeekComplete |
Constant for tracking Seek Complete event. |
Listen for the playback seeking events from the media player, and on seek start event notification, track seeking using the SeekStart
event:
_onSeekStart = function() {
tracker.trackEvent(ADB.Media.Event.SeekStart);
};
On seek complete notification from the media player, track the end of seeking using the SeekComplete
event:
_onSeekComplete = function() {
tracker.trackEvent(ADB.Media.Event.SeekComplete);
};
See the tracking scenario VOD playback with seeking in the main content for more information.