如何更改有关“无法播放视频”的行为错误
我正在尝试通过 HTTP 播放视频。有时它播放得很好,有时我会收到“无法播放视频”错误,但可以立即开始再次播放。似乎它会在最轻微的打嗝时显示此错误,有没有办法增加容忍度,以便它可以继续进行,而不是仅仅放弃下载并弹出错误?
I am trying to play a video via HTTP. It sometimes plays fine, others I get the "Cannot play video" error but can immediately start playing it again. It seems it will display this error on the slightest hiccup, is there anyway to increse the tolerance so it can continue through instead of just dropping the download and popping up the error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您的应用程序实现一个
OnErrorListener
并设置viewview.setOnErrorListener(classhere);
然后您可以按照您想要的方式处理错误。implement a
OnErrorListener
for your application and setviewview.setOnErrorListener(classhere);
Then you can handle errors the way you want to.