In the home screen, the SSAI URL should be provided in the allocated text box. If it is a live stream, switch on the live button and click on the play button to load the media. If it is a VOD, switch off the live button and click on the play button to load the media. Once you click on the play button, screen 2 will appear where we can see the video player and ad information.
Player Screen
This screen contains the four different views as shown in the image.
The first view on the top contains the ad tracking information like tracking urls.
The second view in the middle of the screen contains the AV Player and its player controls.
The third view contains the functionalities like Ad Ends in, Click Ad and Skip Ad. In this, Ad Ends in text view shows the ad remaining time in seconds. As the ad progresses, the time reduces and the timer will get to 0 when the ad ends. Click Ad is a button which when clicked will redirect the user to safari browser and it opens the Ad Click Through url of that ad. Skip Ad button helps to skip the ads in VOD streams. This button will be enabled after First Quartile from the ad start. Currently this functionality is disabled for live streams.
The fourth view contains the current playing ad information like Ad Event, Ad Number, Ad Title and Ad ID.
List of Ad Events:
adCueTimelineAdded
adCueTimelineStart
adImpression
adStarted
adFirstQuartile
adMidpoint
adThirdQuartile
adComplete
adCueTimelineEnd
Stream URL Types
Live:
This app can handle multiple live URLs like - View, Master.m3u8 and Audio only. Based on the input URL given, the app will internally classify the URL and fetch the data accordingly.
In the getURLDetails function, HTTP header fields should be provided for the VOD streams. As it is a POST request, along with the headers, HTTP request body should also be provided here as shown in the below code snippet.
This section helps in understanding how the screen layouts are arranged for modifications.
Home Screen
Layout of this screen is called as sample_chooser_activity.xml , it was present in res folder, inside the layout folder . The layout of the screen looks like below:
In addition to the above layout, in the sample_chooser_activity.xml file, labels for Title, Version, URL Title and Live Text are added. The positioning and the fit of all these elements are handled in the this file. OnClick action for the play button is also handled in this file. In this onClick action, stream url and isLive variables will be assigned with the values taken from the user.
Player Screen
Layout of this screen is called as player_activity.xml file, present inside layout folder of res folder. The layout of the screen looks like below:
Inside the main view of this screen, total 4 individual views are added as shown in the above image. Positions and arrangements of all these views and elements are handled in this file.
Ad Events Info
Ad events info is being assigned to the UI inside the showAdEventsshowTrackingURLs function of this file.
// Updating UI in the player screen for ad events//SHOWING AD EVENTS ON UIpublicvoidshowAdEvents(String msg){//adEventsView.setText(msg);Handler handler =newHandler(Looper.getMainLooper());handler.post(newRunnable() { @Overridepublicvoidrun() {adEventsView.setText(msg); } }); }// FOR SHOWING AD INFORMATION ON UIpublicvoidshowAdInfo(String msg1,String msg2,String msg3){Handler handler =newHandler(Looper.getMainLooper());handler.post(newRunnable() { @Overridepublicvoidrun() {adInfo3.setText(msg1); //shows AD IDadInfo4.setText(msg2); //Shoes AD TitleadNum.setText(msg3); // shows ad Number } }); }// FOR DISPLAYING TRACKING URLS ON UIpublicvoidshowTrackingURLs(List<String> trackingURLs,boolean check){String tracking ="";if(trackingURLs!=null) {for (int i =0; i <trackingURLs.size(); i++) { tracking +="--> "; tracking +=trackingURLs.get(i); tracking +="\n\n"; } }Handler handler =newHandler(Looper.getMainLooper());String finalTracking = tracking;handler.post(newRunnable() { @Overridepublicvoidrun() {if(check) {adInfo1.setText(""); }else{adInfo1.setText(finalTracking); } } }); }// Updating UI in the player screen for ad events
Handling Click Ad Button
In this, Ad Click Through url is fetched from the SSAIAdManger and the same will be opened in the safari browser. The player will be paused when user clicked on the button and the player should resume manually when user came back to the application from browser.
At the same time, when user clicked on the Ad, adClickTrackingUrls will be fired from the SSAIAdManger.
// Fetching the click through url from the ad dataList<String> clickThrough =mmAd.getClickThroughURLs(); // fetching click through url from mmAd obj clickTracking =mmAd.getClickTrackingURLs(); // fetching click tracking url from mmAd objif(clickThrough.size() >0) {//make button visibleclick.setVisibility(View.VISIBLE); clickUrl =clickThrough.get(0); //storing the click through url in clickUrl variable }// Fetching the click through url from the ad data
// Ad click button implementationclick.setOnClickListener(newOnClickListener() { @OverridepublicvoidonClick(View view) {player.setPlayWhenReady(false); // pausing the player when click through was clicked//Firing click tracking url when click through link was clickednowtilusSSAIPlugin.fireTrackingUrl("ClickTrackingUrl",clickTracking);// redirecting to click through url in browserUri uri =Uri.parse(clickUrl);Intent intent =newIntent(Intent.ACTION_VIEW, uri);startActivity(intent); } });// Ad click button implementation
Handling Skip Ad Button
The skip ad button will be enabled after first quartile of the Ad Start for VOD streams. This button is disabled for live streams as of now.
// Ad Skip Enabling after First quartile only for VOD@OverridepublicvoidonAdFirstQuartile(mmAd mmAd) {Log.i("MM","**onAdFirstQuartile**");if(!isLiveStream) skip.setVisibility(View.VISIBLE); }// Ad Skip Enabling after 5sec only for VOD
// Ad skip button implementationskip.setOnClickListener(newOnClickListener() { @OverridepublicvoidonClick(View view) {player.seekTo(endTime-50);skip.setVisibility(View.INVISIBLE); // after skip making button invisible } });// Ad skip button implementation
Handling Ad Remaining Time TextView
Ad remaining time is calculated as the difference between adEndTime and pbTime. The function named onAdTime will be called 2 times in every second from the SSAIAdManger using delegates to update the ad remaining time.
// This callback updates the ad reamaining time continuously@OverridepublicvoidonAdTime(long pbTime,long adEndTime) {Handler handler =newHandler(Looper.getMainLooper());handler.post(newRunnable() { @Overridepublicvoidrun() {int min = (int) 0;int sec = (int) ((adEndTime-pbTime)/1000);String timeLeft =String.format(Locale.getDefault(),"%02d:%02d",min,sec);countDown.setText(timeLeft); } });