SlideShare une entreprise Scribd logo
1  sur  43
Télécharger pour lire hors ligne
THE UNCONVENTIONAL DEVICES
FOR THE VIDEO STREAMING
IN ANDROID
a.martellucci[at]reply.it
@martellux
+AlessandroMartellucci
m.bonifazi[at]reply.it
@mbonifazi
+MatteoBonifazi
Who We Are
•  Reply is today a leading IT Services Company, which operates in Italy,
Germany, UK, Benelux, USA and Brazil.
•  Open Reply is the company of Reply Group focused on open source
software, multichannel web solutions and mobile applications.
•  Based in Rome, our team is based a young team of over 40 engineers
100% focused on mobile development (iOS, Android & Windows Phone).
•  We are specialised in broadcasting, banking and Android OS
Customisation.
Open Reply
Engage users through streaming app
*http://www.nielsen.com/us/en/insights/reports/2014/shifts-in-viewing-the-cross-platform-report-q2-2014.html
+53
%
+80
%
+60
%
-1% -1% -2%
18/34 35/49 50/64 Ages
Engage users through streaming app
q  In US more than 2 milion people watched last World Cup by a mobile App.1
q  270% increase in online video watched by smartphone and tablet.2
q  More than one bilion tap on Google Chromecast cast button.3
q  YouTube viewer habits prove “the bigger the screen, the longer people
watch.”4
1)WatchESPN app access 2)Nielsen Q3 ‘14 Total Audience report 3) Google’s Omid Kordestani interview 2015 4) Youtube usage internal analysis.
q  Playing a video content on your handheld device.
q  Streaming taiolered for the user with
q  Easiest way to enjoy video and music on user TV with
Presentation Millestone
Android multimedia framework
Android support for playing several media types from media file stored inside
the application (raw resources, standalone files) or for OTT streaming.
*Camera, foto rendering and other media type are managed by it but they are out of scope for this talk.
Network Protocols
RTSP (RTP, SDP)
HTTP/HTTPS progressive streaming
HTTP/HTTPS live streaming
Dynamic adaptive streaming over HTTP (DASH)
Smooth Streaming
Core Media Formats
H.263 ->3GPP(.3gp),MPEG-4(.mp4)
H.264 AVC -> 3GPP(.3gp),MPEG-4(.mp4),MPEG-
TS(.ts)
MPEG-4 SP -> 3GPP(.3gp)
VP8 -> WebM(.webm),Matroska(.mkv)
Note. Any given mobile device may provide support for additional formats or file types not listed in the table.
Android multimedia framework documentation
50% Android multimedia framework questions are unaswered on
Stackoverflow
//1. Find the view from the layout
VideoView myVideoView = (VideoView)findViewById(R.id.myvideoview);
//2. Setup video url
myVideoView.setVideoURI(Uri.parse(SrcPath));
//3. Setup Video controller
myVideoView.setMediaController(new MediaController(this));
//4. Start playing
myVideoView.requestFocus();
myVideoView.start();
VideoView.java
Media Playback 1/2
//0. Get SurfaceView and its holder
mPreview = (SurfaceView)findViewById(R.id.surfaceView);
holder = mPreview.getHolder();
mp = new MediaPlayer(); //1. Create MediaPlayer object:
//2. Add SurfaceHolder callback - Aware when SurfaceView is created
holder.addCallback(new SurfaceHolder.Callback(){ ....
@Override
public void surfaceCreated(SurfaceHolder holder) {
mp.setDisplay(holder); //3. Attach the surface to the player
try {
mp.setDataSource(filepath);
//4. Prepare the Mediaplayer in sync or async mode ( prepareAsync() )
mp.prepare();
} catch (Exception e) {// Catch the exception}
mp.start(); //5. Start the player }...
});
MediaPlayer.java
Media Playback 2/2
ExoPlayer
ExoPlayer is a media player built on top of the MediaExtractor and MediaCodec
APIs released in Android 4.1 (API level 16).
ExoPlayer provides default TrackRenderer implementations for audio and
video, which make use of the MediaCodec and AudioTrack classes in the
Android framework.
During playback, your app can listen for events generated by the ExoPlayer
that indicates the overall state of the player (ExoPlayer.Listener).
player = ExoPlayer.Factory.newInstance(RENDERER_COUNT, minBuffer, maxBuffer);
// 2. Construct renderers.
DataSource dataSource = new UriDataSource(userAgent, bandwidthMeter);
HlsChunkSource chunkSource = new HlsChunkSource(dataSource, url, manifest, bandwidthMeter,
null,
HlsChunkSource.ADAPTIVE_MODE_SPLICE);
HlsSampleSource sampleSource = new HlsSampleSource(chunkSource, true, 3);
MediaCodecVideoTrackRenderer videoRenderer = new
MediaCodecVideoTrackRenderer(sampleSource,
MediaCodec.VIDEO_SCALING_MODE_SCALE_TO_FIT, 5000, player.getMainHandler(),
player, 50);
MediaCodecAudioTrackRenderer audioRenderer = new
MediaCodecAudioTrackRenderer(sampleSource);
player.prepare(videoRenderer, audioRenderer); // 3. Inject the renderers through prepare.
player.setSurface(surfaceView.getHolder().getSurface()); // 4. Pass the surface to the video renderer.
player.setPlayWhenReady(true); // 5. Start playback
…
…
player.release(); // Release when everything is done!
ExoPlayer.java
ExoPlayer – HLS implementation
What next?
q  Built-in players
ü  AwesomePlayer (default player selected)
ü  NuPlayer (Apple HLS)
q  Extra player factories can be registered
q  DIY mediaplayer
ü  Demuxing: android.media.mediaExtractor
ü  Decoding: android.media.MediaCodec
ü  Video rendering: android.media.MediaCodec
ü  Audio rendering: android.media.AudioTrack
ü  Implement the interface
frameworks/av/include/media/MediaPlayerInterface.h
Android TV
Android TV is Android!!!
Smartphone 5”
320 dp
TV Full HD 30”
320 dp
10 feet
16 inches
10 foot experience
Keep calm and lean back!!
Provides built-in tailored for 10 feet experience
<uses-feature android:name="android.software.leanback"
android:required="true" />
<application
android:allowBackup="false”
android:label="@string/app_name”
android:theme="@style/Theme.Leanback" >
<activity
android:name="MainActivity”
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
AndroidManifest.xml
Android Manifest features1/2
Android Manifest features 2/2
Supporting landscape orientation is mandatory
No touch screen is required
<uses-feature android:name="android.hardware.sensor.accelerometer”
android:required="false" />
<uses-feature android:name="android.hardware.touchscreen”
android:required="false"/>
<activity android:name=”AndroidTvActivity”
android:screenOrientation="landscape" >
Limit your sensor! Your app doesn’t need to accelerate!!!
Leanback UI component – BroswerFragment
Leanback UI component – DetailFragment
Building Live TV Apps
TV Input Framework provides a unified method for receiving
audio and video channel content from hardware sources and
software sources.
Android 5.0 (API level 21) or higher
TV Provider manages all EPG info, meanwhile TV Input
Manager handles streaming contents.
TV Input Manager
<service android:name=”droidcon.it.DroidconTvInputService"
android:label="@string/sample_tv_input_label"
android:permission="android.permission.BIND_TV_INPUT">
<intent-filter>
<action android:name="android.media.tv.TvInputService" />
</intent-filter>
<meta-data android:name="android.media.tv.input"
android:resource="@xml/sample_tv_input" />
</service>
onTune() event is fired when user selects a channel, and
notifies the system TV app for changes in the content and
meta data.
TvInputService creates a TvInputService.Session that
implements Handler.Callback to handle player state
changes.
TV provider
<uses-permission android:name="com.android.providers.tv.permission.READ_EPG_DATA" />
<uses-permission android:name="com.android.providers.tv.permission.WRITE_EPG_DATA" />
Tv Channel
COLUMN_DESCRIPTION
COLUMN_DISPLAY_NAME
COLUMN_DISPLAY_NUMBER
COLUMN_INPUT_ID
COLUMN_SERVICE_TYPE
COLUMN_TRANSPORT_STREAM_ID
COLUMN_TYPE
COLUMN_INTERNAL_PROVIDER_DATA
COLUMN_NETWORK_AFFILIATION
COLUMN_ORIGINAL_NETWORK_ID
COLUMN_SEARCHABLE
COLUMN_SERVICE_ID
COLUMN_VERSION_NUMBER
COLUMN_VIDEO_FORMAT
Tv Program
COLUMN_LONG_DESCRIPTION
COLUMN_POSTER_ART_URI
COLUMN_SEASON_NUMBER
COLUMN_SHORT_DESCRIPTION
COLUMN_START_TIME_UTC_MILLIS
COLUMN_THUMBNAIL_URI
COLUMN_TITLE
COLUMN_VERSION_NUMBER
COLUMN_VIDEO_HEIGHT
COLUMN_VIDEO_WIDTH
COLUMN_AUDIO_LANGUAGE
COLUMN_BROADCAST_GENRE
COLUMN_CANONICAL_GENRE
COLUMN_CHANNEL_ID
COLUMN_CONTENT_RATING
COLUMN_END_TIME_UTC_MILLIS
COLUMN_EPISODE_NUMBER
COLUMN_EPISODE_TITLE
COLUMN_INTERNAL_PROVIDER_DATA
A basic database of TV content metadata such as channel and program
information.
Manifest permission:
Chromecast
a cast-ready device for multi-screen experience
source: www.google.it
Chromecast
some numbers
•  10 million units sold
•  1 billion times for Cast button
•  300+ apps on Play Store
•  6000 developers on 10000 apps
Chromecast
components
•  Google Cast technology
•  Multi-Screen experiece
•  Google Cast SDK
•  Sender Application
•  Android app
•  iOS app
•  Chrome app
•  Receiver Application
•  Default Media Receiver
•  Styled Media Receiver
•  Custom Media Receiver
Android Client Application
library dependencies
•  Minimum SDK version supported by Google Cast is 9 (Gingerbread)
•  MediaRouter API of android-support-v7
•  Google Play Services
•  AppCompat API of android-support-v7
Android Client Application
typical sender application flow
•  Sender app starts MediaRouter device discovery: MediaRouter.addCallback
•  MediaRouter informs sender app of the route the user selected:
MediaRouter.Callback.onRouteSelected
•  Sender app retrieves CastDevice instance: CastDevice.getFromBundle
•  Sender app creates and uses GoogleApiClient: GoogleApiClient.Builder
•  Sender app launches the receiver app: Cast.CastApi.launchApplication
•  Sender app creates a communication channel: Cast.CastApi.setMessageReceivedCallbacks
•  Sender sends a message to the receiver over the communication channel:
Cast.CastApi.sendMessage
source: developers.google.com
Cast-Ready Device Discovery
capabilities
Remote	
  Playback	
  
Live	
  Audio	
   Live	
  Video	
  
MediaRouteSelector.Builder builder = new MediaRouteSelector.Builder();
builder.addControlCategory(MediaControlIntent.CATEGORY_REMOTE_PLAYBACK);
builder.addControlCategory(MediaControlIntent.CATEGORY_LIVE_AUDIO);
builder.addControlCategory(MediaControlIntent.CATEGORY_LIVE_VIDEO);
MediaRouterSelector selector = builder.build();
MainAc'vity.java	
  
Media Cast Button
easy approach for discovering
source: developers.google.com source: developers.google.com
public boolean onCreateOptionsMenu(Menu menu) {
MenuItem mediaRouteMenuItem = menu.findItem(R.id.media_route_menu_item);
MediaRouteActionProvider mediaRouteActionProvider = (MediaRouteActionProvider)
MenuItemCompat.getActionProvider(mediaRouteMenuItem);
mediaRouteActionProvider.setRouteSelector(mMediaRouteSelector);
}
MainAc'vity.java	
  
RemoteMediaPlayer
…finally
MediaInfo mediaInfo = new MediaInfo.Builder("http://your.server.com/video.mp4")
.setContentType("video/mp4")
.setStreamType(MediaInfo.STREAM_TYPE_BUFFERED)
.setMetadata(mediaMetadata)
.build();
…
mRemoteMediaPlayer = new RemoteMediaPlayer();
mRemoteMediaPlayer.load(mApiClient, mediaInfo, true);
…
MainAc'vity.java	
  
Receiver Application
powered by Chrome
What is?
HTML5 and Javascript application
What does?
Display the media content on TV
Message handling
Which type?
Default	
  Media	
  Receiver	
  
Styled	
  Media	
  Receiver	
   Custom	
  Media	
  Receiver	
  
source: unknow
Default Media Receiver
simplest
•  Off-the-shelf
•  No UI customization
•  No registration
Source: developers.google.com
Styled Media Receiver
simple and customizable
•  Similar to Default Media Player
•  CSS UI customization
•  Registration
Source:
developers.google.com
Custom Media Receiver
whatever you want
•  Fully Web Applicaiton
•  Debug(able) at 9222
•  Registration
Source: developers.google.com
Custom Media Receiver
basic example
<html>
<head>
<title>Example minimum receiver</title>
<script src="//www.gstatic.com/cast/sdk/libs/receiver/2.0.0/cast_receiver.js"></
script>
</head>
<body>
<video id='media'/>
<script>
window.mediaElement = document.getElementById('media');
window.mediaManager = new cast.receiver.MediaManager(window.mediaElement);
window.castReceiverManager = cast.receiver.CastReceiverManager.getInstance();
window.castReceiverManager.start();
</script>
</body>
</html>
Index.htm	
  
Custom Media Receiver
advanced features
•  Video Codification/Decodification
•  H.264 High Profile Level 4.1, 4.2 and 5
•  VP8
•  Adaptive Bitrate Streaming
•  HTTP Live Streaming (HLS)
•  Dynamic Adaptive Streaming over HTTP (MPEG-DASH)
•  Smooth Streaming
•  Digital Rights Management
•  Play Ready DRM
•  Widevine DRM
•  Media Player Library
Custom Media Receiver
advanced example
Index.htm	
  
<html>
<head>
<script
src="//www.gstatic.com/cast/sdk/libs/mediaplayer/1.0.0/media_player.js" />
</head>
<body>
<script type="text/javascript">
window.defaultOnLoad = mediaManager.onLoad;
mediaManager.onLoad = function (event) {
if (window.player !== null) {
player.unload();
window.player = null;
}
Custom Media Receiver
advanced example
if (event.data['media'] && event.data['media']['contentId']) {
var url = event.data['media']['contentId'];
window.host = new cast.player.api.Host({'mediaElement':mediaElement, 'url':url});
var ext = url.substring(url.lastIndexOf('.'), url.length);
var startAt = event.data['media']['currentTime'] || 0;
var autoplay = event.data['autoplay'] || true;
var protocol = null;
mediaElement.autoplay = autoplay;
if (url.lastIndexOf('.m3u8') >= 0) {
protocol = cast.player.api.CreateHlsStreamingProtocol(host);
} else if (url.lastIndexOf('.mpd') >= 0) {
protocol = cast.player.api.CreateDashStreamingProtocol(host);
} else if (url.indexOf('.ism/') >= 0) {
protocol = cast.player.api.CreateSmoothStreamingProtocol(host);
}
Index.htm	
  
Custom Media Receiver
advanced example
host.onError = function(errorCode) {
if (window.player) {
window.player.unload();
window.player = null;
}
};
if (protocol !== null) {
window.player = new cast.player.api.Player(host);
window.player.load(protocol, startAt);
} else {
window.defaultOnLoad(event);
}
}
}
window.player = null;
window.castReceiverManager = cast.receiver.CastReceiverManager.getInstance();
castReceiverManager.start();
Index.html	
  
Resources
•  Google Cast: https://developers.google.com/cast
•  Chromecast App:
http://www.google.it/chrome/devices/chromecast/apps.html
•  Google Cast Downloads:
https://developers.google.com/cast/docs/downloads
•  Github: https://github.com/googlecast
•  Android TV: https://developer.android.com/tv
•  Android TV Apps:
http://www.google.it/chrome/devices/chromecast/apps.html
•  Android TV codelab: g.co/dev/codelab-androidtv
•  Github Leanback:
https://github.com/googlesamples/androidtv-Leanback.git
Enjoy the video
thank you to all of you
Source: www.huffingtonpost.ca
+MatteoBonifazi +AlessandroMartellucci
@mbonifazi @martellux

Contenu connexe

Tendances

Video Streaming: from the native Android player to unconventional devices
Video Streaming: from the native Android player to unconventional devicesVideo Streaming: from the native Android player to unconventional devices
Video Streaming: from the native Android player to unconventional devicesAlessandro Martellucci
 
Android App Development Intro at ESC SV 2012
Android App Development Intro at ESC SV 2012Android App Development Intro at ESC SV 2012
Android App Development Intro at ESC SV 2012Opersys inc.
 
Using the Presentation API and external screens on Android
Using the Presentation API and external screens on AndroidUsing the Presentation API and external screens on Android
Using the Presentation API and external screens on AndroidXavier Hallade
 
[Android Codefest] Using the Second-Screen API & Intel® Wireless Display From...
[Android Codefest] Using the Second-Screen API & Intel® Wireless Display From...[Android Codefest] Using the Second-Screen API & Intel® Wireless Display From...
[Android Codefest] Using the Second-Screen API & Intel® Wireless Display From...BeMyApp
 
Secondary Screen Support Using DisplayManager
Secondary Screen Support Using DisplayManagerSecondary Screen Support Using DisplayManager
Secondary Screen Support Using DisplayManagerCommonsWare
 
Android Programming Basic
Android Programming BasicAndroid Programming Basic
Android Programming BasicDuy Do Phan
 
Second-Screen Support in Android 4.2
Second-Screen Support in Android 4.2Second-Screen Support in Android 4.2
Second-Screen Support in Android 4.2CommonsWare
 
What's new in Android Pie
What's new in Android PieWhat's new in Android Pie
What's new in Android PieHassan Abid
 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with NougatOpersys inc.
 
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...ijafrc
 
Embedded Android Workshop with Lollipop
Embedded Android Workshop with LollipopEmbedded Android Workshop with Lollipop
Embedded Android Workshop with LollipopOpersys inc.
 
Android Things: Android for IoT
Android Things: Android for IoTAndroid Things: Android for IoT
Android Things: Android for IoTOpersys inc.
 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with NougatOpersys inc.
 
Brillo / Weave Internals
Brillo / Weave InternalsBrillo / Weave Internals
Brillo / Weave InternalsOpersys inc.
 
Android's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALAndroid's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALOpersys inc.
 
Firefox OS - Hive Pilani 2015
Firefox OS - Hive Pilani 2015Firefox OS - Hive Pilani 2015
Firefox OS - Hive Pilani 2015Nilay Binjola
 
Embedded Android Workshop with Marshmallow
Embedded Android Workshop with MarshmallowEmbedded Android Workshop with Marshmallow
Embedded Android Workshop with MarshmallowOpersys inc.
 

Tendances (20)

Video Streaming: from the native Android player to unconventional devices
Video Streaming: from the native Android player to unconventional devicesVideo Streaming: from the native Android player to unconventional devices
Video Streaming: from the native Android player to unconventional devices
 
Android App Development Intro at ESC SV 2012
Android App Development Intro at ESC SV 2012Android App Development Intro at ESC SV 2012
Android App Development Intro at ESC SV 2012
 
Using the Presentation API and external screens on Android
Using the Presentation API and external screens on AndroidUsing the Presentation API and external screens on Android
Using the Presentation API and external screens on Android
 
[Android Codefest] Using the Second-Screen API & Intel® Wireless Display From...
[Android Codefest] Using the Second-Screen API & Intel® Wireless Display From...[Android Codefest] Using the Second-Screen API & Intel® Wireless Display From...
[Android Codefest] Using the Second-Screen API & Intel® Wireless Display From...
 
Secondary Screen Support Using DisplayManager
Secondary Screen Support Using DisplayManagerSecondary Screen Support Using DisplayManager
Secondary Screen Support Using DisplayManager
 
Android Programming Basic
Android Programming BasicAndroid Programming Basic
Android Programming Basic
 
Second-Screen Support in Android 4.2
Second-Screen Support in Android 4.2Second-Screen Support in Android 4.2
Second-Screen Support in Android 4.2
 
Android Programming
Android ProgrammingAndroid Programming
Android Programming
 
What's new in Android Pie
What's new in Android PieWhat's new in Android Pie
What's new in Android Pie
 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with Nougat
 
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
 
Embedded Android Workshop with Lollipop
Embedded Android Workshop with LollipopEmbedded Android Workshop with Lollipop
Embedded Android Workshop with Lollipop
 
Android Things: Android for IoT
Android Things: Android for IoTAndroid Things: Android for IoT
Android Things: Android for IoT
 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with Nougat
 
Brillo / Weave Internals
Brillo / Weave InternalsBrillo / Weave Internals
Brillo / Weave Internals
 
Google tv
Google tvGoogle tv
Google tv
 
Android's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALAndroid's HIDL: Treble in the HAL
Android's HIDL: Treble in the HAL
 
Firefox OS - Hive Pilani 2015
Firefox OS - Hive Pilani 2015Firefox OS - Hive Pilani 2015
Firefox OS - Hive Pilani 2015
 
What & How to Customize Android?
What & How to Customize Android?What & How to Customize Android?
What & How to Customize Android?
 
Embedded Android Workshop with Marshmallow
Embedded Android Workshop with MarshmallowEmbedded Android Workshop with Marshmallow
Embedded Android Workshop with Marshmallow
 

Similaire à The unconventional devices for the video streaming in Android

viWave Study Group - Introduction to Google Android Development - Chapter 23 ...
viWave Study Group - Introduction to Google Android Development - Chapter 23 ...viWave Study Group - Introduction to Google Android Development - Chapter 23 ...
viWave Study Group - Introduction to Google Android Development - Chapter 23 ...Ted Chien
 
Developing applications with Kurento
Developing applications with KurentoDeveloping applications with Kurento
Developing applications with KurentoLuis Lopez
 
스트리밍과 디지털 권리 관리
스트리밍과 디지털 권리 관리스트리밍과 디지털 권리 관리
스트리밍과 디지털 권리 관리우영 주
 
LIB 114 Emerging Technologies 2011
LIB 114 Emerging Technologies 2011LIB 114 Emerging Technologies 2011
LIB 114 Emerging Technologies 2011bthat
 
Google Wave API: Now and Beyond
Google Wave API: Now and BeyondGoogle Wave API: Now and Beyond
Google Wave API: Now and BeyondMarakana Inc.
 
Reactive Programming with Rx
 Reactive Programming with Rx Reactive Programming with Rx
Reactive Programming with RxC4Media
 
IRJET- Protected Adaptive Bitrate Streaming using HTTP Live Streaming and...
IRJET-  	  Protected Adaptive Bitrate Streaming using HTTP Live Streaming and...IRJET-  	  Protected Adaptive Bitrate Streaming using HTTP Live Streaming and...
IRJET- Protected Adaptive Bitrate Streaming using HTTP Live Streaming and...IRJET Journal
 
Monitoring as an entry point for collaboration
Monitoring as an entry point for collaborationMonitoring as an entry point for collaboration
Monitoring as an entry point for collaborationJulien Pivotto
 
Apache Eagle at Hadoop Summit 2016 San Jose
Apache Eagle at Hadoop Summit 2016 San JoseApache Eagle at Hadoop Summit 2016 San Jose
Apache Eagle at Hadoop Summit 2016 San JoseHao Chen
 
Discover Data That Matters- Deep dive into WSO2 Analytics
Discover Data That Matters- Deep dive into WSO2 AnalyticsDiscover Data That Matters- Deep dive into WSO2 Analytics
Discover Data That Matters- Deep dive into WSO2 AnalyticsSriskandarajah Suhothayan
 
Synapseindia android application development tutorial
Synapseindia android application development tutorialSynapseindia android application development tutorial
Synapseindia android application development tutorialSynapseindiappsdevelopment
 
Synapseindia android apps development tutorial
Synapseindia android apps  development tutorialSynapseindia android apps  development tutorial
Synapseindia android apps development tutorialSynapseindiappsdevelopment
 
Challenges in a Microservices Age: Monitoring, Logging and Tracing on Red Hat...
Challenges in a Microservices Age: Monitoring, Logging and Tracing on Red Hat...Challenges in a Microservices Age: Monitoring, Logging and Tracing on Red Hat...
Challenges in a Microservices Age: Monitoring, Logging and Tracing on Red Hat...Martin Etmajer
 
WebRTC Standards & Implementation Q&A - All about browser interoperability
WebRTC Standards & Implementation Q&A - All about browser interoperabilityWebRTC Standards & Implementation Q&A - All about browser interoperability
WebRTC Standards & Implementation Q&A - All about browser interoperabilityAmir Zmora
 
WSO2 Product Release Webinar: WSO2 Complex Event Processor 4.0
WSO2 Product Release Webinar: WSO2 Complex Event Processor 4.0WSO2 Product Release Webinar: WSO2 Complex Event Processor 4.0
WSO2 Product Release Webinar: WSO2 Complex Event Processor 4.0WSO2
 

Similaire à The unconventional devices for the video streaming in Android (20)

Integrando sua app Android com Chromecast
Integrando sua app Android com ChromecastIntegrando sua app Android com Chromecast
Integrando sua app Android com Chromecast
 
Building Streaming Applications with Streaming SQL
Building Streaming Applications with Streaming SQLBuilding Streaming Applications with Streaming SQL
Building Streaming Applications with Streaming SQL
 
Kurento cpmx
Kurento cpmxKurento cpmx
Kurento cpmx
 
viWave Study Group - Introduction to Google Android Development - Chapter 23 ...
viWave Study Group - Introduction to Google Android Development - Chapter 23 ...viWave Study Group - Introduction to Google Android Development - Chapter 23 ...
viWave Study Group - Introduction to Google Android Development - Chapter 23 ...
 
Android Froyo
Android FroyoAndroid Froyo
Android Froyo
 
Developing applications with Kurento
Developing applications with KurentoDeveloping applications with Kurento
Developing applications with Kurento
 
스트리밍과 디지털 권리 관리
스트리밍과 디지털 권리 관리스트리밍과 디지털 권리 관리
스트리밍과 디지털 권리 관리
 
LIB 114 Emerging Technologies 2011
LIB 114 Emerging Technologies 2011LIB 114 Emerging Technologies 2011
LIB 114 Emerging Technologies 2011
 
Google Wave API: Now and Beyond
Google Wave API: Now and BeyondGoogle Wave API: Now and Beyond
Google Wave API: Now and Beyond
 
Reactive Programming with Rx
 Reactive Programming with Rx Reactive Programming with Rx
Reactive Programming with Rx
 
IRJET- Protected Adaptive Bitrate Streaming using HTTP Live Streaming and...
IRJET-  	  Protected Adaptive Bitrate Streaming using HTTP Live Streaming and...IRJET-  	  Protected Adaptive Bitrate Streaming using HTTP Live Streaming and...
IRJET- Protected Adaptive Bitrate Streaming using HTTP Live Streaming and...
 
Monitoring as an entry point for collaboration
Monitoring as an entry point for collaborationMonitoring as an entry point for collaboration
Monitoring as an entry point for collaboration
 
Apache Eagle: Secure Hadoop in Real Time
Apache Eagle: Secure Hadoop in Real TimeApache Eagle: Secure Hadoop in Real Time
Apache Eagle: Secure Hadoop in Real Time
 
Apache Eagle at Hadoop Summit 2016 San Jose
Apache Eagle at Hadoop Summit 2016 San JoseApache Eagle at Hadoop Summit 2016 San Jose
Apache Eagle at Hadoop Summit 2016 San Jose
 
Discover Data That Matters- Deep dive into WSO2 Analytics
Discover Data That Matters- Deep dive into WSO2 AnalyticsDiscover Data That Matters- Deep dive into WSO2 Analytics
Discover Data That Matters- Deep dive into WSO2 Analytics
 
Synapseindia android application development tutorial
Synapseindia android application development tutorialSynapseindia android application development tutorial
Synapseindia android application development tutorial
 
Synapseindia android apps development tutorial
Synapseindia android apps  development tutorialSynapseindia android apps  development tutorial
Synapseindia android apps development tutorial
 
Challenges in a Microservices Age: Monitoring, Logging and Tracing on Red Hat...
Challenges in a Microservices Age: Monitoring, Logging and Tracing on Red Hat...Challenges in a Microservices Age: Monitoring, Logging and Tracing on Red Hat...
Challenges in a Microservices Age: Monitoring, Logging and Tracing on Red Hat...
 
WebRTC Standards & Implementation Q&A - All about browser interoperability
WebRTC Standards & Implementation Q&A - All about browser interoperabilityWebRTC Standards & Implementation Q&A - All about browser interoperability
WebRTC Standards & Implementation Q&A - All about browser interoperability
 
WSO2 Product Release Webinar: WSO2 Complex Event Processor 4.0
WSO2 Product Release Webinar: WSO2 Complex Event Processor 4.0WSO2 Product Release Webinar: WSO2 Complex Event Processor 4.0
WSO2 Product Release Webinar: WSO2 Complex Event Processor 4.0
 

Dernier

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Dernier (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

The unconventional devices for the video streaming in Android

  • 1. THE UNCONVENTIONAL DEVICES FOR THE VIDEO STREAMING IN ANDROID
  • 3. •  Reply is today a leading IT Services Company, which operates in Italy, Germany, UK, Benelux, USA and Brazil. •  Open Reply is the company of Reply Group focused on open source software, multichannel web solutions and mobile applications. •  Based in Rome, our team is based a young team of over 40 engineers 100% focused on mobile development (iOS, Android & Windows Phone). •  We are specialised in broadcasting, banking and Android OS Customisation. Open Reply
  • 4. Engage users through streaming app *http://www.nielsen.com/us/en/insights/reports/2014/shifts-in-viewing-the-cross-platform-report-q2-2014.html +53 % +80 % +60 % -1% -1% -2% 18/34 35/49 50/64 Ages
  • 5. Engage users through streaming app q  In US more than 2 milion people watched last World Cup by a mobile App.1 q  270% increase in online video watched by smartphone and tablet.2 q  More than one bilion tap on Google Chromecast cast button.3 q  YouTube viewer habits prove “the bigger the screen, the longer people watch.”4 1)WatchESPN app access 2)Nielsen Q3 ‘14 Total Audience report 3) Google’s Omid Kordestani interview 2015 4) Youtube usage internal analysis.
  • 6. q  Playing a video content on your handheld device. q  Streaming taiolered for the user with q  Easiest way to enjoy video and music on user TV with Presentation Millestone
  • 7. Android multimedia framework Android support for playing several media types from media file stored inside the application (raw resources, standalone files) or for OTT streaming. *Camera, foto rendering and other media type are managed by it but they are out of scope for this talk. Network Protocols RTSP (RTP, SDP) HTTP/HTTPS progressive streaming HTTP/HTTPS live streaming Dynamic adaptive streaming over HTTP (DASH) Smooth Streaming Core Media Formats H.263 ->3GPP(.3gp),MPEG-4(.mp4) H.264 AVC -> 3GPP(.3gp),MPEG-4(.mp4),MPEG- TS(.ts) MPEG-4 SP -> 3GPP(.3gp) VP8 -> WebM(.webm),Matroska(.mkv) Note. Any given mobile device may provide support for additional formats or file types not listed in the table.
  • 8. Android multimedia framework documentation 50% Android multimedia framework questions are unaswered on Stackoverflow
  • 9. //1. Find the view from the layout VideoView myVideoView = (VideoView)findViewById(R.id.myvideoview); //2. Setup video url myVideoView.setVideoURI(Uri.parse(SrcPath)); //3. Setup Video controller myVideoView.setMediaController(new MediaController(this)); //4. Start playing myVideoView.requestFocus(); myVideoView.start(); VideoView.java Media Playback 1/2
  • 10. //0. Get SurfaceView and its holder mPreview = (SurfaceView)findViewById(R.id.surfaceView); holder = mPreview.getHolder(); mp = new MediaPlayer(); //1. Create MediaPlayer object: //2. Add SurfaceHolder callback - Aware when SurfaceView is created holder.addCallback(new SurfaceHolder.Callback(){ .... @Override public void surfaceCreated(SurfaceHolder holder) { mp.setDisplay(holder); //3. Attach the surface to the player try { mp.setDataSource(filepath); //4. Prepare the Mediaplayer in sync or async mode ( prepareAsync() ) mp.prepare(); } catch (Exception e) {// Catch the exception} mp.start(); //5. Start the player }... }); MediaPlayer.java Media Playback 2/2
  • 11. ExoPlayer ExoPlayer is a media player built on top of the MediaExtractor and MediaCodec APIs released in Android 4.1 (API level 16). ExoPlayer provides default TrackRenderer implementations for audio and video, which make use of the MediaCodec and AudioTrack classes in the Android framework. During playback, your app can listen for events generated by the ExoPlayer that indicates the overall state of the player (ExoPlayer.Listener).
  • 12. player = ExoPlayer.Factory.newInstance(RENDERER_COUNT, minBuffer, maxBuffer); // 2. Construct renderers. DataSource dataSource = new UriDataSource(userAgent, bandwidthMeter); HlsChunkSource chunkSource = new HlsChunkSource(dataSource, url, manifest, bandwidthMeter, null, HlsChunkSource.ADAPTIVE_MODE_SPLICE); HlsSampleSource sampleSource = new HlsSampleSource(chunkSource, true, 3); MediaCodecVideoTrackRenderer videoRenderer = new MediaCodecVideoTrackRenderer(sampleSource, MediaCodec.VIDEO_SCALING_MODE_SCALE_TO_FIT, 5000, player.getMainHandler(), player, 50); MediaCodecAudioTrackRenderer audioRenderer = new MediaCodecAudioTrackRenderer(sampleSource); player.prepare(videoRenderer, audioRenderer); // 3. Inject the renderers through prepare. player.setSurface(surfaceView.getHolder().getSurface()); // 4. Pass the surface to the video renderer. player.setPlayWhenReady(true); // 5. Start playback … … player.release(); // Release when everything is done! ExoPlayer.java ExoPlayer – HLS implementation
  • 13. What next? q  Built-in players ü  AwesomePlayer (default player selected) ü  NuPlayer (Apple HLS) q  Extra player factories can be registered q  DIY mediaplayer ü  Demuxing: android.media.mediaExtractor ü  Decoding: android.media.MediaCodec ü  Video rendering: android.media.MediaCodec ü  Audio rendering: android.media.AudioTrack ü  Implement the interface frameworks/av/include/media/MediaPlayerInterface.h
  • 15. Android TV is Android!!!
  • 16. Smartphone 5” 320 dp TV Full HD 30” 320 dp 10 feet 16 inches 10 foot experience
  • 17. Keep calm and lean back!! Provides built-in tailored for 10 feet experience
  • 18. <uses-feature android:name="android.software.leanback" android:required="true" /> <application android:allowBackup="false” android:label="@string/app_name” android:theme="@style/Theme.Leanback" > <activity android:name="MainActivity” android:screenOrientation="landscape" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LEANBACK_LAUNCHER" /> </intent-filter> </activity> AndroidManifest.xml Android Manifest features1/2
  • 19. Android Manifest features 2/2 Supporting landscape orientation is mandatory No touch screen is required <uses-feature android:name="android.hardware.sensor.accelerometer” android:required="false" /> <uses-feature android:name="android.hardware.touchscreen” android:required="false"/> <activity android:name=”AndroidTvActivity” android:screenOrientation="landscape" > Limit your sensor! Your app doesn’t need to accelerate!!!
  • 20. Leanback UI component – BroswerFragment
  • 21. Leanback UI component – DetailFragment
  • 22. Building Live TV Apps TV Input Framework provides a unified method for receiving audio and video channel content from hardware sources and software sources. Android 5.0 (API level 21) or higher TV Provider manages all EPG info, meanwhile TV Input Manager handles streaming contents.
  • 23. TV Input Manager <service android:name=”droidcon.it.DroidconTvInputService" android:label="@string/sample_tv_input_label" android:permission="android.permission.BIND_TV_INPUT"> <intent-filter> <action android:name="android.media.tv.TvInputService" /> </intent-filter> <meta-data android:name="android.media.tv.input" android:resource="@xml/sample_tv_input" /> </service> onTune() event is fired when user selects a channel, and notifies the system TV app for changes in the content and meta data. TvInputService creates a TvInputService.Session that implements Handler.Callback to handle player state changes.
  • 24. TV provider <uses-permission android:name="com.android.providers.tv.permission.READ_EPG_DATA" /> <uses-permission android:name="com.android.providers.tv.permission.WRITE_EPG_DATA" /> Tv Channel COLUMN_DESCRIPTION COLUMN_DISPLAY_NAME COLUMN_DISPLAY_NUMBER COLUMN_INPUT_ID COLUMN_SERVICE_TYPE COLUMN_TRANSPORT_STREAM_ID COLUMN_TYPE COLUMN_INTERNAL_PROVIDER_DATA COLUMN_NETWORK_AFFILIATION COLUMN_ORIGINAL_NETWORK_ID COLUMN_SEARCHABLE COLUMN_SERVICE_ID COLUMN_VERSION_NUMBER COLUMN_VIDEO_FORMAT Tv Program COLUMN_LONG_DESCRIPTION COLUMN_POSTER_ART_URI COLUMN_SEASON_NUMBER COLUMN_SHORT_DESCRIPTION COLUMN_START_TIME_UTC_MILLIS COLUMN_THUMBNAIL_URI COLUMN_TITLE COLUMN_VERSION_NUMBER COLUMN_VIDEO_HEIGHT COLUMN_VIDEO_WIDTH COLUMN_AUDIO_LANGUAGE COLUMN_BROADCAST_GENRE COLUMN_CANONICAL_GENRE COLUMN_CHANNEL_ID COLUMN_CONTENT_RATING COLUMN_END_TIME_UTC_MILLIS COLUMN_EPISODE_NUMBER COLUMN_EPISODE_TITLE COLUMN_INTERNAL_PROVIDER_DATA A basic database of TV content metadata such as channel and program information. Manifest permission:
  • 25. Chromecast a cast-ready device for multi-screen experience source: www.google.it
  • 26. Chromecast some numbers •  10 million units sold •  1 billion times for Cast button •  300+ apps on Play Store •  6000 developers on 10000 apps
  • 27. Chromecast components •  Google Cast technology •  Multi-Screen experiece •  Google Cast SDK •  Sender Application •  Android app •  iOS app •  Chrome app •  Receiver Application •  Default Media Receiver •  Styled Media Receiver •  Custom Media Receiver
  • 28. Android Client Application library dependencies •  Minimum SDK version supported by Google Cast is 9 (Gingerbread) •  MediaRouter API of android-support-v7 •  Google Play Services •  AppCompat API of android-support-v7
  • 29. Android Client Application typical sender application flow •  Sender app starts MediaRouter device discovery: MediaRouter.addCallback •  MediaRouter informs sender app of the route the user selected: MediaRouter.Callback.onRouteSelected •  Sender app retrieves CastDevice instance: CastDevice.getFromBundle •  Sender app creates and uses GoogleApiClient: GoogleApiClient.Builder •  Sender app launches the receiver app: Cast.CastApi.launchApplication •  Sender app creates a communication channel: Cast.CastApi.setMessageReceivedCallbacks •  Sender sends a message to the receiver over the communication channel: Cast.CastApi.sendMessage source: developers.google.com
  • 30. Cast-Ready Device Discovery capabilities Remote  Playback   Live  Audio   Live  Video   MediaRouteSelector.Builder builder = new MediaRouteSelector.Builder(); builder.addControlCategory(MediaControlIntent.CATEGORY_REMOTE_PLAYBACK); builder.addControlCategory(MediaControlIntent.CATEGORY_LIVE_AUDIO); builder.addControlCategory(MediaControlIntent.CATEGORY_LIVE_VIDEO); MediaRouterSelector selector = builder.build(); MainAc'vity.java  
  • 31. Media Cast Button easy approach for discovering source: developers.google.com source: developers.google.com public boolean onCreateOptionsMenu(Menu menu) { MenuItem mediaRouteMenuItem = menu.findItem(R.id.media_route_menu_item); MediaRouteActionProvider mediaRouteActionProvider = (MediaRouteActionProvider) MenuItemCompat.getActionProvider(mediaRouteMenuItem); mediaRouteActionProvider.setRouteSelector(mMediaRouteSelector); } MainAc'vity.java  
  • 32. RemoteMediaPlayer …finally MediaInfo mediaInfo = new MediaInfo.Builder("http://your.server.com/video.mp4") .setContentType("video/mp4") .setStreamType(MediaInfo.STREAM_TYPE_BUFFERED) .setMetadata(mediaMetadata) .build(); … mRemoteMediaPlayer = new RemoteMediaPlayer(); mRemoteMediaPlayer.load(mApiClient, mediaInfo, true); … MainAc'vity.java  
  • 33. Receiver Application powered by Chrome What is? HTML5 and Javascript application What does? Display the media content on TV Message handling Which type? Default  Media  Receiver   Styled  Media  Receiver   Custom  Media  Receiver   source: unknow
  • 34. Default Media Receiver simplest •  Off-the-shelf •  No UI customization •  No registration Source: developers.google.com
  • 35. Styled Media Receiver simple and customizable •  Similar to Default Media Player •  CSS UI customization •  Registration Source: developers.google.com
  • 36. Custom Media Receiver whatever you want •  Fully Web Applicaiton •  Debug(able) at 9222 •  Registration Source: developers.google.com
  • 37. Custom Media Receiver basic example <html> <head> <title>Example minimum receiver</title> <script src="//www.gstatic.com/cast/sdk/libs/receiver/2.0.0/cast_receiver.js"></ script> </head> <body> <video id='media'/> <script> window.mediaElement = document.getElementById('media'); window.mediaManager = new cast.receiver.MediaManager(window.mediaElement); window.castReceiverManager = cast.receiver.CastReceiverManager.getInstance(); window.castReceiverManager.start(); </script> </body> </html> Index.htm  
  • 38. Custom Media Receiver advanced features •  Video Codification/Decodification •  H.264 High Profile Level 4.1, 4.2 and 5 •  VP8 •  Adaptive Bitrate Streaming •  HTTP Live Streaming (HLS) •  Dynamic Adaptive Streaming over HTTP (MPEG-DASH) •  Smooth Streaming •  Digital Rights Management •  Play Ready DRM •  Widevine DRM •  Media Player Library
  • 39. Custom Media Receiver advanced example Index.htm   <html> <head> <script src="//www.gstatic.com/cast/sdk/libs/mediaplayer/1.0.0/media_player.js" /> </head> <body> <script type="text/javascript"> window.defaultOnLoad = mediaManager.onLoad; mediaManager.onLoad = function (event) { if (window.player !== null) { player.unload(); window.player = null; }
  • 40. Custom Media Receiver advanced example if (event.data['media'] && event.data['media']['contentId']) { var url = event.data['media']['contentId']; window.host = new cast.player.api.Host({'mediaElement':mediaElement, 'url':url}); var ext = url.substring(url.lastIndexOf('.'), url.length); var startAt = event.data['media']['currentTime'] || 0; var autoplay = event.data['autoplay'] || true; var protocol = null; mediaElement.autoplay = autoplay; if (url.lastIndexOf('.m3u8') >= 0) { protocol = cast.player.api.CreateHlsStreamingProtocol(host); } else if (url.lastIndexOf('.mpd') >= 0) { protocol = cast.player.api.CreateDashStreamingProtocol(host); } else if (url.indexOf('.ism/') >= 0) { protocol = cast.player.api.CreateSmoothStreamingProtocol(host); } Index.htm  
  • 41. Custom Media Receiver advanced example host.onError = function(errorCode) { if (window.player) { window.player.unload(); window.player = null; } }; if (protocol !== null) { window.player = new cast.player.api.Player(host); window.player.load(protocol, startAt); } else { window.defaultOnLoad(event); } } } window.player = null; window.castReceiverManager = cast.receiver.CastReceiverManager.getInstance(); castReceiverManager.start(); Index.html  
  • 42. Resources •  Google Cast: https://developers.google.com/cast •  Chromecast App: http://www.google.it/chrome/devices/chromecast/apps.html •  Google Cast Downloads: https://developers.google.com/cast/docs/downloads •  Github: https://github.com/googlecast •  Android TV: https://developer.android.com/tv •  Android TV Apps: http://www.google.it/chrome/devices/chromecast/apps.html •  Android TV codelab: g.co/dev/codelab-androidtv •  Github Leanback: https://github.com/googlesamples/androidtv-Leanback.git
  • 43. Enjoy the video thank you to all of you Source: www.huffingtonpost.ca +MatteoBonifazi +AlessandroMartellucci @mbonifazi @martellux