The following instructions provide guidance for implementation using 3.x SDKs.
If you are implementing any previous versions of the SDK, you can download the Developers Guide here: Download SDKs.
Identify when the chapter start event occurs and create the ChapterObject
instance by using the chapter information.
ChapterObject
chapter tracking reference:
These variables are only required if you are planning to track chapters.
Variable Name | Type | Description |
---|---|---|
name |
string | Non empty string denoting chapter name. |
position |
number | The position of the chapter within the content, starting with 1. |
length |
number | Positive number denoting length of the chapter. |
startTime |
number | Playhead value at start of chapter. |
Chapter object:
var chapterObject =
ADB.Media.createChapterObject.createChapterObject(<CHAPTER_NAME>,
<POSITION>,
<LENGTH>,
<START_TIME>);
If you include custom metadata for the chapter, create the context data variables for the metadata:
var chapterMetadata = {};
chapterMetadata["segmentType"] = "Sample segment type";
To begin tracking the chapter playback, call the ChapterStart
event in the MediaHeartbeat
instance:
_onChapterStart = function() {
tracker.trackEvent(ADB.Media.Event.ChapterStart, chapterObject, chapterMetadata);
};
When playback reaches the chapter end boundary, as defined by your custom code, call the ChapterComplete
event in the MediaHeartbeat
instance:
_onChapterComplete = function() {
tracker.trackEvent(ADB.Media.Event.ChapterComplete);
};
If chapter playback did not complete because the user chose to skip the chapter (for example, if the user seeks out of the chapter boundary), call the ChapterSkip
event in the MediaHeartbeat instance:
_onChapterSkip = function() {
tracker.trackEvent(ADB.Media.Event.ChapterSkip);
};
If there are any additional chapters, repeat steps 1 through 5.