Track core playback using JavaScript 3.x track-core-playback-on-javascript
This documentation covers tracking in version 3.x of the SDK.
-
Initial tracking setup
Identify when the user triggers the intention of playback (the user clicks play and/or autoplay is on) and create a
MediaObject
instance.table 0-row-3 1-row-3 2-row-3 3-row-3 4-row-3 5-row-3 Variable Name Type Description name
string Non empty string denoting media name. id
string Non empty string denoting unique media identifier. length
number Positive number denoting length of media in seconds. Use 0 if length is unknown. streamType
string mediaType
Type of media (Audio or Video). StreamType
constants:table 0-row-2 1-row-2 2-row-2 Constant Name Description VOD
Stream type for Video on Demand. AOD
Stream type for Audio on Demand. MediaType
constants:table 0-row-2 1-row-2 2-row-2 Constant Name Description Audio
Media type for Audio streams. Video
Media type for Video streams. code language-none var mediaObject = ADB.Media.createMediaObject(<MEDIA_NAME>, <MEDIA_ID, <MEDIA_LENGTH>, <STREAM_TYPE>, <MEDIA_TYPE>);
-
Attach metadata
Optionally attach standard and/or custom metadata to the tracking session through context data variables.
-
Standard metadata
note note NOTE Attaching the standard metadata is optional. -
Media metadata keys API Reference - Standard metadata keys - JavaScript
See the comprehensive set of available metadata here: Audio and video parameters
-
-
Custom metadata
Create a variable object for the custom variables and populate with the data for this media. For example:
code language-js /* Set context data */ var contextData = {}; //Standard metadata contextData[ADB.Media.VideoMetadataKeys] = "Sample Episode"; contextData[ADB.Media.VideoMetadataKeys] = "Sample Show"; //Custom metadata contextData["isUserLoggedIn"] = "false"; contextData["tvStation"] = "Sample TV Station";
-
-
Track the intention to start playback
To begin tracking a media session, call
trackSessionStart
on the Media Heartbeat instance:code language-js var mediaObject = ADB.Media.createMediaObject("video-name", "video-id", 60.0, ADB.Media.StreamType.VOD, ADB.Media.MediaType.Video); var contextData = {}; //Standard metadata contextData[ADB.Media.VideoMetadataKeys] = "Sample Episode"; contextData[ADB.Media.VideoMetadataKeys] = "Sample Show"; //Custom metadata contextData["isUserLoggedIn"] = "false"; contextData["tvStation"] = "Sample TV Station"; tracker.trackSessionStart(mediaObject, contextData);
note important IMPORTANT trackSessionStart
tracks the user intention of playback, not the beginning of the playback. This API is used to load the data/metadata and to estimate the time-to-start QoS metric (the time duration betweentrackSessionStart
andtrackPlay
).note note NOTE If you are not using contextData, simply send an empty object for the data
argument intrackSessionStart
. -
Track the actual start of playback
Identify the event from the media player for the beginning of the playback, where the first frame of the media is rendered on the screen, and call
trackPlay
:code language-js tracker.trackPlay();
-
Update playhead value
When media playhead changes, notify the SDK by calling the
mediaUpdatePlayhead
API.
For video-on-demand (VOD), the value is specified in seconds from the beginning of the media item.
For live streaming, if the player does not provide information about the content duration, the value can be specified as the number of seconds since midnight UTC of that day.code language-none tracker.updatePlayhead(position)
note note NOTE Consider the following when calling the tracker.updatePlayhead
API:- When using progress markers, the content duration is required and the playhead needs to be updated as number of seconds from the beginning of the media item, starting with 0.
- When using media SDKs, you must call the
tracker.updatePlayhead
API at least once per second.
-
Track the completion of playback
Identify the event from the media player for the completion of the playback, where the user has watched the content until the end, and call
trackComplete
:code language-js tracker.trackComplete();
-
Track the end of the session
Identify the event from the media player for the unloading/closing of the playback, where the user closes the media and/or the media is completed and has been unloaded, and call
trackSessionEnd
:code language-js tracker.trackSessionEnd();
note important IMPORTANT trackSessionEnd
marks the end of a tracking session. If the session was successfully watched to completion, where the user watched the content until the end, ensure thattrackComplete
is called beforetrackSessionEnd
. Any othertrack*
API call is ignored aftertrackSessionEnd
, except fortrackSessionStart
for a new tracking session. -
Track all possible pause scenarios
Identify the event from the media player for pause and call
trackPause
:code language-js tracker.trackPause();
Pause Scenarios
Identify any scenario in which the media player will pause and make sure that
trackPause
is properly called. The following scenarios all require that your app calltrackPause()
:- The user explicitly hits pause in the app.
- The player puts itself into the Pause state.
- (Mobile Apps) - The user puts the application into the background, but you want the app to keep the session open.
- (Mobile Apps) - Any type of system interrupt occurs that causes an application to be backgrounded. For example, the user receives a call, or a pop up from another application occurs, but you want the application to keep the session alive to give the user the opportunity to resume the media from the point of interruption.
-
Identify the event from the player for play and/or resume from pause and call
trackPlay
:code language-js tracker.trackPlay();
note tip TIP This may be the same event source that was used in Step 4. Ensure that each trackPause()
API call is paired with a followingtrackPlay()
API call when the playback resumes.
- Tracking scenarios: VOD playback with no ads
- Sample player included with the JavaScript SDK for a complete tracking example.