This section describes the prerequisites for setting up a Chromecast installation for the Streaming Media Collection.
Obtain valid configuration parameters
These parameters can be obtained from an Adobe representative after you set up your media analytics account.
Include the following APIs in your media player
Adobe Mobile services provides a new UI that brings together mobile marketing capabilities for mobile applications from across the Adobe Marketing Cloud. Initially, the Mobile service provides seamless integration of app analytics and targeting capabilities for the Adobe Analytics and Adobe Target solutions. Learn more at Adobe Mobile Services documentation.
The Adobe Mobile Library for Chromecast v3.x for Experience Cloud Solutions lets you measure Chromecast applications written in JavaScript, leverage and collect audience data through audience management, and measure video engagement.
Add your downloaded Chromecast library to your project.
The AdobeMobileLibrary-Chromecast-[version]
zip file consists of the following software components:
adbmobile-chromecast.min.js
:
This library file will be included in your Chromecast app source folder.
ADBMobileConfig
config
This SDK configuration file is customized for your app. A sample ADBMobileConfig
implementation is provided with the SDK (under samples/
). Obtain the proper settings from an Adobe representative.
Add the library file to your index.html
file, and create the ADBMobileConfig
global variable as follows (the global variable used to configure Adobe Mobile for Media Analytics has an exclusive key named mediaHeartbeat
):
<script>
var ADBMobileConfig = {
"marketingCloud": {
"org": "972C898555E9F7BC7F000101@AdobeOrg"
},
"target": {
"clientCode": "",
"timeout": 5
},
"audienceManager": {
"server": "obumobile5.demdex.net"
},
"analytics": {
"rsids": "example.sample.player",
"server": "example.sc.omtrc.net",
"ssl": true,
"offlineEnabled": false,
"charset": "UTF-8",
"lifecycleTimeout": 300,
"privacyDefault": "optedin",
"batchLimit": 0,
"timezone": "MDT",
"timezoneOffset": -360,
"referrerTimeout": 0,
"poi": []
},
"mediaHeartbeat": {
"server": "example.hb-api.omtrdc.net",
"publisher": "972C898555E9F7BC7F000101@AdobeOrg",
"channel": "test-channel-chromecast",
"ssl": true,
"ovp": "chromecast-player",
"sdkVersion": "chromecast-sdk",
"playerName": "Chromecast"
}
};
</script>
<script type="text/javascript" src="script/lib/adbmobile-chromecast.min.js"></script>
If mediaHeartbeat
is incorrectly configured, the media module enters an error state and will stop sending tracking calls.
ADBMobile Config Parameters for mediaHeartbeat key:
Config Parameter | Description |
---|---|
server |
String that represents the URL of the tracking endpoint on the backend. |
publisher |
String that represents the content publisher unique identifier. |
channel |
String that represents the name of the content distribution channel. |
ssl |
Boolean that represents whether SSL should be used for tracking calls. |
ovp |
String that represents the name of the video player provider. |
sdkversion |
String that represents the current version of the app/SDK. |
playerName |
String that represents the name of the player. |
Configure Experience Cloud Visitor ID.
The Experience Cloud Visitor ID service provides a universal Visitor ID across Experience Cloud solutions. The Visitor ID service is required by Media Analytics and other Marketing Cloud integrations.
Verify that your ADBMobileConfig
config contains your marketingCloud
organization ID.
"marketingCloud": {
"org": "YOUR-MCORG-ID"
}
Experience Cloud organization IDs uniquely identify each client company in the Adobe Marketing Cloud and appear similar to the following value: 016D5C175213CCA80A490D05@AdobeOrg
.
Ensure that you include @AdobeOrg
.
After the configuration is complete, an Experience Cloud Visitor ID is generated and is included on all hits. Other Visitor IDs, such as custom
and automatically-generated
, continue to be sent with each hit.
Experience Cloud Visitor ID Service Methods
Experience Cloud Visitor ID methods are prefixed with visitor
.
Method | Description |
---|---|
getMarketingCloudID() |
Retrieves the Experience Cloud Visitor ID from the Visitor ID service. ADBMobile.visitor.getMarketingCloudID(); |
syncIdentifiers() |
With the Experience Cloud Visitor ID, you can set additional customer IDs that can be associated with each visitor. The Visitor API accepts multiple customer IDs for the same visitor and a customer type identifier to separate the scope of the different customer IDs. This method corresponds to setCustomerIDs() in the JavaScript library. For example: var identifiers = {}; identifiers["idType"] = "idValue"; ADBMobile.visitor.syncIdentifiers(identifiers); |
For tracking media, implement MediaDelegate protocol
var delegate = {
// Replace <currentPlaybackTime> with the video player current playback time
getCurrentPlaybackTime = function() {
return <currentPlaybackTime>;
},
// Replace <bitrate>, <startuptime>, <fps> and <droppeFrames> with the current playback QoS values.
getQoSObject = function() {
return ADBMobile.media.createQoSObject(<bitrate>, <startupTime>, <fps>, <droppedFrames>);
}
}
ADBMobile.media.setDelegate(delegate);
}