ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Videos on Android
Stuff What I Learned
Videos on Android - Stuff What I Learned
Videos on Android - Stuff What I Learned
In the beginning¡­
>200Videos
1080p H.264
~10MB
2GB
50MB-100MB / routine
0.5TB/month
Videos on Android - Stuff What I Learned
1GB/month
10MB ¡ú <1MB
Videos on Android - Stuff What I Learned
1GB/month ¡ú <10MB total
{
"id": 117,
"name": "Hamstring Hanging Stretch",
"description": "Position yourself lying on your front on a flat, raised
surface. Allow the lower part of your leg to hang off the edge. Let the weight
of your foot straighten your knee.",
"sets": 3,
"reps": 8,
"hold_duration": 10,
"rest": 30,
"created": "2013-12-02 22:03:21",
"modified": "2013-12-23 16:59:02",
"video": {
"id": 132,
"url": "/ddaf3d7d59b4dd09fae6d34e760236d9/320p-16to9.mp4",
"hold_time_seconds": 4.3,
"loop_time_start_seconds": 0,
"loop_time_end_seconds": 0,
"etag": "b38f39cebe21487dd2ed123d16065d7b"
}
}
Let¡¯s Code!
Both.
I hate this device. It¡¯s great!
developer.android.com/guide/appendix/media-formats.html
Videos on Android - Stuff What I Learned
Video ViewSurfaceView
MediaPlayer
start()
pause()
seekTo()
getDuration()
setVideoURI()
setVideoPath()
setOnPreparedListener()
setOnCompletionListener()
vv.
vv.
vv.
vv.
vv.
vv.
vv.
vv.
VideoView vv = (VideoView) findViewById(R.id.videoView);	
vv.setVideoPath(path);	
!
vv.setOnPreparedListener (new OnPreparedListener() { 	
@Override	
public void onPrepared(MediaPlayer mp) {	
mp.setLooping(true);	
}	
});	
!
vv.start();
Videos on Android - Stuff What I Learned
Videos on Android - Stuff What I Learned
Disclaimer:This isn¡¯t meant to happen.
¨CAndroid API Docs
¡°SurfaceView punches a hole in its window	

to allow its surface to be displayed.¡±
TextureView
? Android 4.0	

? Behaves as a regular view	

? OpenGL,Video etc
implement TextureView.SurfaceTextureListener
public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height)	
!
!
public boolean onSurfaceTextureDestroyed(SurfaceTexture surface)	
!
!
public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height)	
!
!
public void onSurfaceTextureUpdated(SurfaceTexture surface)
public void onSurfaceTextureAvailable(SurfaceTexture surfaceT, int width, int height) {	
	 	 Surface surface = new Surface(surfaceT);	
	
	 	 try {	
	 	 	 	 mediaPlayer.setDataSource(path);	
	 	 } catch (Exception e) {	
	 	 }	
!
	 	 mediaPlayer.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {	
	 	 	 	 @Override	
	 	 	 	 public void onPrepared(MediaPlayer mp) {	
	 	 	 	 	 	 mp.setLooping(true);	
	 	 	 	 	 	 mp.start();	
	 	 	 	 }	
	 	 });	
!
	 	 mediaPlayer.setSurface(surface);	
!
	 	 mediaPlayer.prepareAsync();	
}
public boolean onSurfaceTextureDestroyed(SurfaceTexture surfaceT) {	
	 	 mediaPlayer.release();	
	 	 return true;	
}
Videos on Android - Stuff What I Learned
Hey Mark, what aboutYouTube?
YouTubePlayer
MediaController
? Just a view containing media controls	

? Implement all callbacks with setMediaPlayer();	

? start(), pause(), seekTo() etc callbacks	

? Hook these up to your MediaPlayer:
public void start() {	
	 	 mediaPlayer.start();	
}	
!
public void pause() {	
	 	 mediaPlayer.pause();	
}	
!
public void seekTo(int i) {	
	 	 mediaPlayer.seekTo(i);	
}
MediaMetadataRetriever
? Get a frame as a Bitmap	

? Useful when waiting for video to load or when usingVideoView
metadataRetriever.setDataSource(ctx, path);	
!
Bitmap bitmap = metadataRetriever.getFrameAtTime(0L, MediaMetadataRetriever.OPTION_CLOSEST);	
!
if (bitmap != null) {	
	 	 BitmapDrawable previewBitmap = new BitmapDrawable(this.getResources(), bitmap);	
	 	 imageView.setImageDrawable(previewBitmap);	
}
Playing Audio?
!
setVolumeControlStream(AudioManager.STREAM_MUSIC);
Y U NO USE INTENT?!
In Summary
? Think about your content	

? ¡°I need shiny 1080p¡±	

? Resolution/user dependent content?	

? Be nice, cache (and cache hard) if possible	

? Assume nothing and be prepared 	

? TextureView when 4.0	

? VideoView when <4.0	

? Test	

? Test	

? Test	

? Test	

? Test	

? Test
Fin.
@mhemmings

More Related Content

What's hot (20)

PDF
Getting started with open source game playing AIs
Melvin Zhang
?
TXT
Tic tac toe
jo pakson
?
PPTX
Cookies
amuthadeepa
?
PPTX
Nvvp streams-3
Josh Wyatt
?
PPTX
Cookie and session
Aashish Ghale
?
TXT
Cara instal
??? ?????? ???????
?
ODP
Od DV kazete do DVD-a
StarFox83
?
PDF
The JSON Architecture - BucharestJS / July
Constantin Dumitrescu
?
PPT
3-in-1 YSlow
Stoyan Stefanov
?
PPTX
????? 4
jangpd007
?
KEY
Fluent plugin-dstat
shunsuke Mikami
?
KEY
About memcached
ChangQi Lin
?
DOCX
Python
HungTrinh69
?
PDF
Can you hear me now?
Ida Aalen
?
PPT
Nodejs quick start
Guangyao Cao
?
PPTX
Web sockets
bodokaiser
?
DOCX
Proxy server ubuntu 12.04
Tio Aldiansyah
?
PPT
PHP - Introduction to PHP Cookies and Sessions
Vibrant Technologies & Computers
?
PDF
´óÊÆ¤Æ?¥Ò?¥ó¥Û?¥ó¤Æ?¤­¤ë¤Î¤Ï¡¢¤¿?¤ì?
Sachirou Inoue
?
PPTX
Tying it all together in real time - Connect.JS / Ti.Connect
joshcjensen
?
Getting started with open source game playing AIs
Melvin Zhang
?
Tic tac toe
jo pakson
?
Cookies
amuthadeepa
?
Nvvp streams-3
Josh Wyatt
?
Cookie and session
Aashish Ghale
?
Cara instal
??? ?????? ???????
?
Od DV kazete do DVD-a
StarFox83
?
The JSON Architecture - BucharestJS / July
Constantin Dumitrescu
?
3-in-1 YSlow
Stoyan Stefanov
?
????? 4
jangpd007
?
Fluent plugin-dstat
shunsuke Mikami
?
About memcached
ChangQi Lin
?
Can you hear me now?
Ida Aalen
?
Nodejs quick start
Guangyao Cao
?
Web sockets
bodokaiser
?
Proxy server ubuntu 12.04
Tio Aldiansyah
?
PHP - Introduction to PHP Cookies and Sessions
Vibrant Technologies & Computers
?
´óÊÆ¤Æ?¥Ò?¥ó¥Û?¥ó¤Æ?¤­¤ë¤Î¤Ï¡¢¤¿?¤ì?
Sachirou Inoue
?
Tying it all together in real time - Connect.JS / Ti.Connect
joshcjensen
?

Similar to Videos on Android - Stuff What I Learned (20)

PDF
The unconventional devices for the Android video streaming
Matteo Bonifazi
?
PDF
The unconventional devices for the video streaming in Android
Alessandro Martellucci
?
PDF
IMPLEMENTING VOICE CONTROL WITH THE ANDROID MEDIA SESSION API ON AMAZON FIRE ...
Amazon Appstore Developers
?
PDF
Multi Streaming Player
Guillaume Chabin
?
KEY
Gtug
Mohan Krk
?
PDF
Android 3.0 Portland Java User Group 2011-03-15
sullis
?
PPT
Android Media Player Development
Talentica Software
?
PDF
Android Multimedia Support
Jussi Pohjolainen
?
PDF
Android 3.1 - Portland Code Camp 2011
sullis
?
PPTX
Video service
doyley_2000
?
PDF
Android Workshop 2013
Junda Ong
?
KEY
HTML5 Video Presentation
sith33
?
PPTX
Android Training (Media)
Khaled Anaqwa
?
DOCX
Android media-chapter 23
Dr. Ramkumar Lakshminarayanan
?
PDF
Android - Open Source Bridge 2011
sullis
?
PDF
Craft 2019 - ¡°The Upside Down¡± Of The Web - Video technologies
M¨¢t¨¦ N¨¢dasdi
?
PDF
What is so cool about Android 4.0
Lars Vogel
?
KEY
Android workshop
Michael Galpin
?
PPTX
Playing Video with ExoPlayer : Android Bangkok 2018
Minseo Chayabanjonglerd
?
PDF
First meet with Android Auto
Johnny Sung
?
The unconventional devices for the Android video streaming
Matteo Bonifazi
?
The unconventional devices for the video streaming in Android
Alessandro Martellucci
?
IMPLEMENTING VOICE CONTROL WITH THE ANDROID MEDIA SESSION API ON AMAZON FIRE ...
Amazon Appstore Developers
?
Multi Streaming Player
Guillaume Chabin
?
Android 3.0 Portland Java User Group 2011-03-15
sullis
?
Android Media Player Development
Talentica Software
?
Android Multimedia Support
Jussi Pohjolainen
?
Android 3.1 - Portland Code Camp 2011
sullis
?
Video service
doyley_2000
?
Android Workshop 2013
Junda Ong
?
HTML5 Video Presentation
sith33
?
Android Training (Media)
Khaled Anaqwa
?
Android media-chapter 23
Dr. Ramkumar Lakshminarayanan
?
Android - Open Source Bridge 2011
sullis
?
Craft 2019 - ¡°The Upside Down¡± Of The Web - Video technologies
M¨¢t¨¦ N¨¢dasdi
?
What is so cool about Android 4.0
Lars Vogel
?
Android workshop
Michael Galpin
?
Playing Video with ExoPlayer : Android Bangkok 2018
Minseo Chayabanjonglerd
?
First meet with Android Auto
Johnny Sung
?
Ad

Videos on Android - Stuff What I Learned