在之前的博客中 Nginx 搭建DASH服务器 中对如何搭建DASH服务器和视频处理做了分享。由于DASH具有动态码率自适应的特点,正好可以应用于VR视频这样平均码率较大的视频的播放,而且DASH作为未来流媒体的统一规范,具有很好的发展前景。
之前我在播放器中播放在线视频走的是rtsp或者http协议,在服务器带宽不是很大的情况,播放效果都不是很好,主要体现在初始加载时间久,播放过程中卡顿次数较多。所以想到可以在使用DASH来改善播放质量。不过安卓原生的媒体库MediaPlayer并不支持DASH,谷歌后来推出的应用级媒体库ExoPlayer则支持,于是就换用了这个库。
下面介绍的步骤主要参考了ExoPlayer的官方开发指导和示例代码,针对的是本项目的播放dash视频的需求,如果是其他类型的视频,方法大同小异。
使用ExoPlayer前需要先添加依赖。在app的build.gradle中添加
repositories {
jcenter()
google()
}
然后
implementation 'com.google.android.exoplayer:exoplayer:2.X.X'
在这里可以看到发布版本信息,目前最新的是2.8.0。上面这种方法是添加全部的ExoPlayer模块,根据官网的说法,你也可以只添加自己需要的那部分。
使用工厂方法创建一个播放器
// 1. Create a default TrackSelector
Handler mainHandler = new Handler();
BandwidthMeter bandwidthMeter = new DefaultBandwidthMeter();
TrackSelection.Factory videoTrackSelectionFactory =
new AdaptiveTrackSelection.Factory(bandwidthMeter);
TrackSelector trackSelector =
new DefaultTrackSelector(videoTrackSelectionFactory);
// 2. Create the player
SimpleExoPlayer player =
ExoPlayerFactory.newSimpleInstance(context, trackSelector);
try {
Uri dashVideoUri = Uri.parse(mpdUrl);
DataSource.Factory mediaDataSourceFactory= new DefaultDataSourceFactory(context,
Util.getUserAgent(context, "yourApplicationName"),bandwidthMeter);
DataSource.Factory dashDataSourceFactory = new DefaultDataSourceFactory(context,
Util.getUserAgent(context, "yourApplicationName"));
// This is the MediaSource representing the media to be played.
DashMediaSource dashMediaSource = new DashMediaSource.Factory(
new DefaultDashChunkSource.Factory(mediaDataSourceFactory),
dashDataSourceFactory)
.createMediaSource(dashVideoUri,null,null);
// Prepare the player with the source.
mExoPlayer.prepare(dashMediaSource);
} catch (Exception e) {
e.printStackTrace();
}
上面代码中的mpdUrl为服务器中dash视频mdp文件的url,因为是访问网络文件,这部分就放到一个try,catch中了。准备好资源后,调用prepare将dashMediaSource传给播放器。
因为我是使用glsurfaceview来展示opengl es渲染的内容的,所以,用类似下面的代码来设置surface。
Surface surface = new Surface(mSurface);
mExoPlayer.setVideoSurface(surface);
如果使用封装好的PlayerView的话,绑定view需要用到下面的代码
// Bind the player to the view.
playerView.setPlayer(player);
ExoPlayer播放的方法为
mExoPlayer.setPlayWhenReady(true);
播放时设置为true,暂停时设置为false。
对比MediaPlayer的使用,除了在资源准备方面稍微麻烦点外,ExoPlayer的很多方法都和MediaPlayer差不多,甚至更为简单,易用。因为MediaPlayer支持的格式较少等等缺点,自己一直想换一个播放器,试过vitamio,ijkplayer 等等播放器,因为本身开发经验不是很够,都没能最终应用到播放器上,替换掉MediaPlayer。而ExoPlayer很多地方和MediaPlayer有相似之处,很适合用来做媒体库的升级,如果已经用MediaPlayer开发好一个应用的话。另外ExoPlayer是开源的,并且可以商用,而vitamio这样的播放器都用商用限制,这也ExoPlayer的一个优点吧!