Youbora Destination
Web Destination
When you enable Youbora in the Segment web app, your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading Youbora’s JavaScript onto your page. (This means you should remove Youbora’s snippet from your page.)
Youbora automatically starts recording data.
Tracking Video Events
Segment can keep track of events occurring on any number of video players on your
page. You must include the session_id
property with every video event you want to send to Youbora so Segment can keep track of which player to attribute the events to.
Video Playback Started
When a user starts playback of a video, use the Video Playback Started event. Segment maps the properties from the Video Playback Started event to the following Youbora video metadata fields:
Youbora Parameter | Segment Property | Data Type |
---|---|---|
content.isLive |
properties.livestream |
Boolean |
Resource | context.page.url |
String |
Video Content Started
When the video content actually begins playing, use the Video Content Started event. Segment maps the properties from the Video Playback Started event to the following Youbora video metadata fields:
Youbora Parameter | Segment Property | Data Type |
---|---|---|
content.title |
properties.title |
String |
content.title2 |
properties.program |
String |
content.duration |
properties.total_length |
Integer |
content.metadata.content_id |
properties.asset_id |
String |
content.metadata.genre |
properties.genre |
String |
content.metadata.owner |
properties.publisher |
String |
Youbora calculates the join time using the time difference between Video Playback Started
and Video Content Started
,
Video Playback Paused/Resumed
When a user pauses or resumes playback of a video, use the Video Playback Paused and Video Playback Resumed events.
If the user pauses during an ad, fill the properties.ad_asset_id
field from the spec for both calls, as Segment uses its
presence to determine whether the pause is occurring during an ad or not.
Example
analytics.track('Video Playback Paused', {
session_id: '1',
ad_asset_id: '12345'
});
analytics.track('Video Playback Resumed', {
session_id: '1',
ad_asset_id: '12345'
});
Video Playback Seek Started/Completed
When the video content actually begins playing, use the Video Playback Seek Started and Video Playback Seek Completed events. Youbora internally calculates the duration of the seek but if you would prefer to provide this value yourself you can pass it as the integration-specific option duration
.
Example
analytics.track('Video Playback Seek Started');
analytics.track('Video Playback Seek Completed');
Video Playback Buffer Started/Completed
When the video content buffers during playback, use the Video Playback Buffer Started and Video Playback Buffer Completed events. Segment maps the properties from these events to the following Youbora video metadata fields:
Example
analytics.track('Video Playback Buffer Started', { session_id: 1 });
analytics.track('Video Playback Buffer Completed', { session_id: 1 });
If the user pauses during an ad, fill the properties.ad_asset_id
field from the spec for both calls, as Segment uses its
presence to determine whether the pause is occurring during an ad or not.
Video Playback Interrupted
When playback of a video is interrupted, use the Video Playback Interrupted event.
Video Playback Completed
To track the completion of the video playback session, use the Video Playback Completed event.
Example
analytics.track('Video Playback Completed', { session_id: 1 });
Video Ad Started
When an ad begins to load, use the Video Ad Started event. Segment maps the properties from these events to the following Youbora video metadata fields:
Youbora Parameter | Segment Property | Data Type |
---|---|---|
ad.title |
properties.title |
String |
Example
analytics.track('Video Ad Started', { session_id: 1, title: 'Test Ad Title', ad_asset_id: 1 });
Video Ad Completed
To track the completion of an ad, use the Video Ad Completed event.
Example
analytics.track('Video Ad Completed', { session_id: 1, ad_asset_id: 1 });
Video Ad Clicked
To track an ad click, track an event with event name ‘Video Ad Clicked’.
Example
analytics.track('Video Ad Clicked', { session_id: 1, ad_asset_id: 1 });
Automatic Video Player Tracking
Youbora supports automatic video tracking for the following video players:
- DashJS
- HTML5
- JWPlayer
- TheoPlayer
- ThePlatform
- VideoJS
However, relying solely on Youbora auto tracking will not send your video events to Segment downstream destinations, including a raw data warehouse. To track data to downstream tools, Segment recommends either manually implementing all video player events or manually implementing all events alongside Youbora.
If you employ the latter method, you should indicate explicitly that your Segment events should not flow to Youbora (because they’ve already been auto-tracked by the Youbora library).
analytics.track('Video Playback Started', { // empty properties object
}, {
integrations: {
'Youbora': false
}
});
Use the following steps to track a player that falls in one of the previous categories:
- Ensure you have the latest snippet on your page.
- If your snippet is in the
head
of your page, move it to the very bottom of yourbody
, right before the</body>
tag. - Replace the
load
method in your snippet with the following (you can delete any of the categories you won’t be using):analytics.load(<YOUR WRITE KEY HERE>, { integrations: { Youbora: { players: { videojs: [], html5: [], jwplayer: [], theoplayer: [], theplatform: [], videojs: [] } } } });
- Add players inside the appropriate category in the following format:
{ player: video player object or video player id, options: { YOUBORA OPTIONS HERE } }
In the player
field, pass the video player object, or the ID of the
video player element in the case of HTML5.
In the options
field, you can pass options the same way you would pass them natively to Youbora.
The following example shows a working implementation:
<script>
var vplayer = videojs('html5player')
!function(){var i="analytics",analytics=window[i]=window[i]||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","screen","once","off","on","addSourceMiddleware","addIntegrationMiddleware","setAnonymousId","addDestinationMiddleware","register"];analytics.factory=function(e){return function(){if(window[i].initialized)return window[i][e].apply(window[i],arguments);var n=Array.prototype.slice.call(arguments);if(["track","screen","alias","group","page","identify"].indexOf(e)>-1){var c=document.querySelector("link[rel='canonical']");n.push({__t:"bpc",c:c&&c.getAttribute("href")||void 0,p:location.pathname,u:location.href,s:location.search,t:document.title,r:document.referrer})}n.unshift(e);analytics.push(n);return analytics}};for(var n=0;n<analytics.methods.length;n++){var key=analytics.methods[n];analytics[key]=analytics.factory(key)}analytics.load=function(key,n){var t=document.createElement("script");t.type="text/javascript";t.async=!0;t.setAttribute("data-global-segment-analytics-key",i);t.src="https://cdn.segment.com/analytics.js/v1/" + key + "/analytics.min.js";var r=document.getElementsByTagName("script")[0];r.parentNode.insertBefore(t,r);analytics._loadOptions=n};analytics._writeKey="YOUR_WRITE_KEY";;analytics.SNIPPET_VERSION="5.2.1";
analytics.load("YOUR_WRITE_KEY", {
integrations: {
Youbora: {
players: {
videojs: [
{
player: vplayer,
options: {
'content.title': 'My Awesome Content'
}
}
],
html5: [
{
player: 'html5-player',
options: {}
]
}
}
}
});
analytics.page();
}}();
</script>
Settings
Segment lets you change these destination settings from the Segment app without having to touch any code.
Setting | Description |
---|---|
Account Code (required) |
string . Your Youbora account code |
This page was last modified: 19 Jan 2024
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!