您的位置:首页 > 移动开发 > Android开发

Android视频播放之边缓存边播放

2015-10-20 11:43 363 查看
最近在做Android视频播放的有关项目,其中有一项需求就是要求视频可以边加载缓存边播放,类似于优酷土豆的视频点播。网上找了一些相关的资料,比较了每种视频格式的优缺点之后,结合Android手机自身的优势,默认支持mp4编码和解码,最终采用mp4格式作为视频的存储格式。

其实最真实的流媒体协议传输格式并不是普通的http方式,而是rtsp,那样的话得搭建专门的流媒体服务器,成本比较高,采用普通的http方式,实现的是一种伪流媒体传输,但是对于常用的视频缓存播放也足够了。

要想实现视频的边缓存边播放,原则上就要求视频的存储格式是分段的,而mp4正好满足这个要求,只要将mp4的整体视频信息放在mp4文件的开头,这样只要加载了mp4文件的头部之后,就能解析出该mp4文件的时长,比特率等等,为后续的视频缓存做初始化设置,然后每加载一段mp4文件的数据流,通过解析头部来或得当前视频流的帧信息,并在播放器中播放,这样就能先加载一段进行播放,同时缓存后续的一段,依此原理就能实现。

本文的目的就是给大家介绍一种以此原理而开发一个Android视频边缓存边播放的示例,通过该示例的学习,相信大家能对该原理有更深入的理解。

代码解析

VideoViewDemo.java 主要是用来设置启动参数,设定网络视频的url地址和本地缓存的地址,本地缓存的地址可以不设置,程序会自己维护,如果您自己设置了,视频就会缓存到该位置。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

public class VideoViewDemo extends Activity {
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);

//String url = "http://carey-blog-image.googlecode.com/files/vid_20120510_090204.mp4";
String url = "http://bbfile.b0.upaiyun.com/data/videos/2/vid_20120510_090204.mp4";

Intent intent = new Intent();
intent.setClass(VideoViewDemo.this, BBVideoPlayer.class);
intent.putExtra("url", url);
intent.putExtra("cache",
Environment.getExternalStorageDirectory().getAbsolutePath()
+ "/VideoCache/" + System.currentTimeMillis() + ".mp4");
startActivity(intent);
}
}

BBVideoPlayer.java 就是视频缓存的核心了,READYBUFF定义了初始缓存区的大小,当视频加载到初始缓存区满的时候,播放器开始播放,CACHEBUFF则是核心交换缓存区,主要是用来动态调节缓存区,当网络环境较好的时候,该缓存区为初始大小,当网络环境差的时候,该缓存区会动态增加,主要就是为了避免视频播放的时候出现一卡一卡的现象。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
1819
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271

public class BBVideoPlayer extends Activity {

private VideoView mVideoView;
private TextView tvcache;
private String remoteUrl;
private String localUrl;
private ProgressDialog progressDialog = null;

private static final int READY_BUFF = 2000 * 1024;
private static final int CACHE_BUFF = 500 * 1024;

private boolean isready = false;
private boolean iserror = false;
private int errorCnt = 0;
private int curPosition = 0;
private long mediaLength = 0;
private long readSize = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.bbvideoplayer);

findViews();
init();
playvideo();
}

private void findViews() {
this.mVideoView = (VideoView) findViewById(R.id.bbvideoview);
this.tvcache = (TextView) findViewById(R.id.tvcache);
}

private void init() {
Intent intent = getIntent();

this.remoteUrl = intent.getStringExtra("url");
System.out.println("remoteUrl: " + remoteUrl);

if (this.remoteUrl == null) {
finish();
return;
}

this.localUrl = intent.getStringExtra("cache");

mVideoView.setMediaController(new MediaController(this));

mVideoView.setOnPreparedListener(new OnPreparedListener() {

public void onPrepared(MediaPlayer mediaplayer) {
dismissProgressDialog();
mVideoView.seekTo(curPosition);
mediaplayer.start();
}
});

mVideoView.setOnCompletionListener(new OnCompletionListener() {

public void onCompletion(MediaPlayer mediaplayer) {
curPosition = 0;
mVideoView.pause();
}
});

mVideoView.setOnErrorListener(new OnErrorListener() {

public boolean onError(MediaPlayer mediaplayer, int i, int j) {
iserror = true;
errorCnt++;
mVideoView.pause();
showProgressDialog();
return true;
}
});
}

private void showProgressDialog() {
mHandler.post(new Runnable() {

@Override
public void run() {
if (progressDialog == null) {
progressDialog = ProgressDialog.show(BBVideoPlayer.this,
"视频缓存", "正在努力加载中 ...", true, false);
}
}
});
}

private void dismissProgressDialog() {
mHandler.post(new Runnable() {

@Override
public void run() {
if (progressDialog != null) {
progressDialog.dismiss();
progressDialog = null;
}
}
});
}

private void playvideo() {
if (!URLUtil.isNetworkUrl(this.remoteUrl)) {
mVideoView.setVideoPath(this.remoteUrl);
mVideoView.start();
return;
}

showProgressDialog();

new Thread(new Runnable() {

@Override
public void run() {
FileOutputStream out = null;
InputStream is = null;

try {
URL url = new URL(remoteUrl);
HttpURLConnection httpConnection = (HttpURLConnection) url
.openConnection();

if (localUrl == null) {
localUrl = Environment.getExternalStorageDirectory()
.getAbsolutePath()
+ "/VideoCache/"
+ System.currentTimeMillis() + ".mp4";
}

System.out.println("localUrl: " + localUrl);

File cacheFile = new File(localUrl);

if (!cacheFile.exists()) {
cacheFile.getParentFile().mkdirs();
cacheFile.createNewFile();
}

readSize = cacheFile.length();
out = new FileOutputStream(cacheFile, true);

httpConnection.setRequestProperty("User-Agent", "NetFox");
httpConnection.setRequestProperty("RANGE", "bytes="
+ readSize + "-");

is = httpConnection.getInputStream();

mediaLength = httpConnection.getContentLength();
if (mediaLength == -1) {
return;
}

mediaLength += readSize;

byte buf[] = new byte[4 * 1024];
int size = 0;
long lastReadSize = 0;

mHandler.sendEmptyMessage(VIDEO_STATE_UPDATE);

while ((size = is.read(buf)) != -1) {
try {
out.write(buf, 0, size);
readSize += size;
} catch (Exception e) {
e.printStackTrace();
}

if (!isready) {
if ((readSize - lastReadSize) > READY_BUFF) {
lastReadSize = readSize;
mHandler.sendEmptyMessage(CACHE_VIDEO_READY);
}
} else {
if ((readSize - lastReadSize) > CACHE_BUFF
* (errorCnt + 1)) {
lastReadSize = readSize;
mHandler.sendEmptyMessage(CACHE_VIDEO_UPDATE);
}
}
}

mHandler.sendEmptyMessage(CACHE_VIDEO_END);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (out != null) {
try {
out.close();
} catch (IOException e) {
//
}
}

if (is != null) {
try {
is.close();
} catch (IOException e) {
//
}
}
}

}
}).start();

}

private final static int VIDEO_STATE_UPDATE = 0;
private final static int CACHE_VIDEO_READY = 1;
private final static int CACHE_VIDEO_UPDATE = 2;
private final static int CACHE_VIDEO_END = 3;

private final Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case VIDEO_STATE_UPDATE:
double cachepercent = readSize * 100.00 / mediaLength * 1.0;
String s = String.format("已缓存: [%.2f%%]", cachepercent);

if (mVideoView.isPlaying()) {
curPosition = mVideoView.getCurrentPosition();
int duration = mVideoView.getDuration();
duration = duration == 0 ? 1 : duration;

double playpercent = curPosition * 100.00 / duration * 1.0;

int i = curPosition / 1000;
int hour = i / (60 * 60);
int minute = i / 60 % 60;
int second = i % 60;

s += String.format(" 播放: %02d:%02d:%02d [%.2f%%]", hour,
minute, second, playpercent);
}

tvcache.setText(s);

mHandler.sendEmptyMessageDelayed(VIDEO_STATE_UPDATE, 1000);
break;

case CACHE_VIDEO_READY:
isready = true;
mVideoView.setVideoPath(localUrl);
mVideoView.start();
break;

case CACHE_VIDEO_UPDATE:
if (iserror) {
mVideoView.setVideoPath(localUrl);
mVideoView.start();
iserror = false;
}
break;

case CACHE_VIDEO_END:
if (iserror) {
mVideoView.setVideoPath(localUrl);
mVideoView.start();
iserror = false;
}
break;
}

super.handleMessage(msg);
}
};
}

总体来说,原理比较简单,就是把视频加载了一段后,就送到播放器播放,如果出现了错误,则优先缓存一部分文件,然后再继续播放,类似的处理过程循环往复。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: