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 |
---|---|
BufferStart |
Constant for tracking Buffer Start event |
BufferComplete |
Constant for tracking Buffer Complete event |
Listen for the playback buffering events from media player, and on buffer start event notification, track buffering using the BufferStart
event.
_onBufferStart = function() {
tracker.trackEvent(ADB.Media.Event.BufferStart);
};
On buffer complete notification from the media player, track the end of buffering using the BufferComplete
event.
_onBufferComplete = function() {
tracker.trackEvent(ADB.Media.Event.BufferComplete);
};
See the tracking scenario VOD playback with buffering for more information.