Insight analytics
To test this feature and view the example code, please see the Android SDK 5 Example Code Quick Start guide.
Using the Insight Agent class, the application can report player metrics to the Insight servers. It uses the Agent to manage Insight sessions alongside playback, during which content information and playback monitoring information is collated and uploaded to the Insight servers. A session lifecycle equates to the playback of one content; starting when the content is loaded into the player and ending when the content is unloaded from the player.
The application is responsible for:
- Instantiating and driving the player
- Providing metadata about the content
The Agent is responsible for:
- Observing metrics and events on the player
- Reporting metrics and events to the Insight servers
Prerequisites
An additional library in the insight-agent-1.2.2.aar package performs the reporting mechanism to Insight servers. There is no need to modify your build.gradle file as the player SDK includes all the dependency declarations. You will need to copy the Insight library file to the common/libs directory of the example code project (or wherever your application defines it as the library directory).
The Agent library is provided with the player SDK library for your convenience. This additional library can be obtained through the Insight Customer Service Desk. However, the Agent wrapper in the SDK is designed to work with the version provided in the SDK package.
Example code
Configuration file
For Insight to be available, a configuration file must be present at src/res/raw/analytics.json of the integrating application. The Insight Agent will read the configuration file when the application creates the Agent.
When using this as a reference, update fields specific to your account and application.
Import classes
The Insight Analytics Agent is delivered along with the Android SDK. The integrating application needs to import the classes to use the Insight Agent.
import nagra.insight.agent.Agent;
import nagra.insight.agent.utils.ContentInfoHolder;
import nagra.insight.agent.utils.UserInfoHolder;
Request READ_PHONE_STATE permission (API 29 and above)
Before setting up Insight, runtime permission requests for `READ_PHONE_STATE` are necessary when both of the following conditions are true:
- The application will run on Android Q devices
- The application's
targetSdkVersion
is 29 (Android Q) or higher
If permission has not already been granted, the user's approval comes back asynchronously in the onRequestPermissionsResult()
callback, which is an Activity override.
Create Agent
Once the package has been imported, the application can create the Agent in the correct place:
mInsightAgent = new Agent(mContext, deviceId, integrationMode);
- If the specified deviceId is null, the final value for the device ID will be set to Settings.Secure.ANDROID_ID
- If integrationMode set to true, it allows non-valid operations to be detected during the integration by throwing RuntimeException exceptions. If set to false, then the errors will only be logged. The integration flag must be set to false for a production build.
The same Agent can be reused for multiple playback sessions, so there is usually no need to instantiate this class more than once.
Session control
The Agent is only responsible for collating the analytics data; it needs the application to control an Insight session alongside playback.
The application should start and end the session to align with the stream's playback.
- For both live and VOD, a session should start when playback commences.
- For VOD streams, a session should stop when the playback finishes, whether by error, user action or playout.
- For live streams, a session should end when the stream is switched or is stopped by an error.
Prepare content information
When starting the session, the application should prepare the content and user information the session will need, including metadata related to the stream currently playing. If the application has all the metadata available before selecting a stream, it can be created on stream selection. If not, some can be obtained from the video view once it is prepared, in which case something similar to the following snippet would need to be called after receiving the OnPreparedListener.onPrepared
event.
Start session
After getting all the content information available, the application can start the session with the content information and the OTVVideoView
. Beware of the timing of starting the session; the application should only start the session after the onPrepared
event has been received. Also, the mOTVVideoView is to be passed with a valid DRM callback set to make the startSession() hook with DRM callbacks for Network events.
mInsightAgent.startSession(mOTVVideoView, contentInfoHolder, userInfoHolder);
The application can choose to start the Insight session without the user information,
mInsightAgent.startSession(mOTVVideoView, contentInfoHolder);
Stop Session
The application should stop the session if started when the playback finishes, whether by error or the user stopping the playback. Note that the agent resources are still intact and are reused when the session is started again if the application stops the session.
// Stop the Insight session when playback completes
mOTVVideoView.setOnCompletionListener(mp -> {
OTVLog.i(TAG, "Playback complete");
mInsightAgent.stopSession();
});
// Stop the Insight session when there is an error during playback
mOTVVideoView.setOnErrorListener((mp, what, extra) -> {
OTVLog.i(TAG, "Playback error");
mInsightAgent.stopSession();
return true;
});
Release Session
The application can stop the session if started and release the agent resources when playback completes or after an error is encountered in playback. This will terminate the active insight session.
// Release the Insight session when playback completes
mOTVVideoView.setOnCompletionListener(mp -> {
OTVLog.i(TAG, "Playback complete");
mInsightAgent.release();
});
// Release the Insight session when there is an error during playback
mOTVVideoView.setOnErrorListener((mp, what, extra) -> {
OTVLog.i(TAG, "Playback error");
mInsightAgent.release();
return true;
});
The application needs to instantiate the agent and start the session again when it needs the agent further after releasing the session.