如何播放在线文件服务器上存储的视频?
我必须在我的 Android 应用程序中播放视频。该文件存储在在线文件服务器
链接上:http://view.vzaar.com/923037/video
我无法使用 VideoView 播放此文件。我还尝试将此文件加载到 WebView 中,但 WebView 打开 Web 浏览器,然后文件开始播放。
有没有办法直接在我的应用程序中播放此类文件,而无需下载到设备中?
I have to play a video in my android app. The file is stored on a online file server
link is : http://view.vzaar.com/923037/video
I am unable to play this file using VideoView. I also tried to load this file into WebView but the WebView opens Web Browser and then the file starts playing.
Is there any way to play these kind of file directly into my app without downloading into device?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于您的 VideoView,问题在于
setVideoPath
方法。您需要使用setVideoURI
来指定流媒体源:如果视频编码正确,这应该可以工作:(AAC+H.264,基线)
For your VideoView, the prpoblem is with
setVideoPath
method. You need to usesetVideoURI
instead to specify a streaming source:This should work, provided the video is encoded correctly: (AAC+H.264, baseline)
编写此 html 代码并将其加载到 webview 中:
write this html code and load it in webview: