使用两个 VideoView 时出现播放错误
当同时在两个 VideoView
中开始播放两个 HTTP 流时,它可以工作。当我尝试停止一个并启动另一个时,它会抛出错误。使用的代码:
mVideoView1.setVideoPath(videoPath);
mVideoView2.setVideoPath(videoPath);
mVideoView1.start();
Button btn = (Button) findViewById(R.id.button);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mVideoView1.stopPlayback();
mVideoView2.start();
}
});
有什么想法导致此错误吗?当我使用 MediaPlayer
和 SurfaceView
时,我会得到相同的行为(在后台准备第二个 MediaPlayer
,release()
首先,然后 start()
第二个)
When starting playback of two HTTP streams in two VideoView
s simultaneously, it works. When I try to stop one and start the other, it throws an error. Code used:
mVideoView1.setVideoPath(videoPath);
mVideoView2.setVideoPath(videoPath);
mVideoView1.start();
Button btn = (Button) findViewById(R.id.button);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mVideoView1.stopPlayback();
mVideoView2.start();
}
});
Any ideas what's causing this error? I get the same behaviour when I use MediaPlayer
and SurfaceView
(preparing second MediaPlayer
in background, release()
the first, then start()
the second)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下代码,它对我有用,
也不要错过在布局中添加两个 VideoView 和一个 ProgressBar
you can use the following code it work for me,
also don miss to add tow VideoView and one ProgressBar in layout