Introduction
With analytics data, you can track the success of your videos and better understand your viewer's habits. The Brightcove Native Player SDKs for iOS and Android make it easy to integrate analytics collection into your video solution.
Analytics solutions:
Video Cloud Analytics
Video Cloud customers who use the catalog service will have analytics data automatically collected by our own Brightcove Analytics system. This data is then aggregated and displayed in the Video Cloud Analytics module. The following table highlights data points currently collected in the SDKs:
Tracked Event | iOS SDK | Android SDK |
---|---|---|
Video impression | ![]() |
![]() |
Video view | ![]() |
![]() |
Video engagement | ![]() |
![]() |
Video complete | ![]() |
![]() |
In addition to these events, you can specify your own custom data, configurable in the app, that can be sent and aggregated for viewing by Brightcove Analytics.
Brightcove Analytics is only available to Brightcove Video Cloud customers.
Adobe Analytics (Omniture)
Offering an in-depth look into the data behind your content, Adobe Analytics is a powerful name in the analytics business. Taking advantage of this expertise, the Brightcove Native Player SDK teams are excited to offer integrations with Adobe Analytics on both iOS and Android platforms.
Adobe Analytics Feature | iOS SDK | Android SDK |
---|---|---|
Heartbeat | ![]() |
![]() |
Milestone | ![]() |
![]() |
The Omniture plugin is available to both Brightcove Video Cloud and Brightcove Player customers. In addition, the Omniture plugin can be used in combination with the Brightcove built-in Analytics for Brightcove Video Cloud customers.
iOS
For details about adding the Omniture plugin to your app, see the following:
Android
For details about adding the Omniture plugin to your app, follow these steps:
- Start with the Basic Omniture Sample App.
-
In the app/res/layout/omniture_activity_main.xml file, replace the following
<com.brightcove.player.view.BrightcoveVideoView
with this
<com.brightcove.player.view.BrightcoveExoPlayerVideoView
-
In the build.gradle, locate the Omniture code block and replace it with this:
if (project.name.contains('Omniture')) { dependencies { implementation "com.brightcove.player:android-omniture-plugin:${anpVersion}" implementation files(libraryDirectory + "adobeMobileLibrary.jar") implementation "com.brightcove.player:exoplayer2:${anpVersion}" } }
-
In the MainActivity.java file, locate the
onCreate()
function. Where theBrightcoveVideoView
is created, replace it with this:brightcoveVideoView = (BrightcoveExoPlayerVideoView) findViewById(R.id.brightcove_video_view);
- You are ready to run the sample app with the ExoPlayer framework.