在Android中播放视频文件
我想播放视频文件,就像
http://test.XXXX.com/myfile.wmv
我使用 Video view
一样,但它说 无法播放视频错误
我也尝试使用 WebView
但它只显示空白页。
只是我想在设备在线播放该视频链接文件
。
怎么办呢?
注意:这些链接在 Windows 浏览器上测试正常。
谢谢
I want to play the video file and it's like
http://test.XXXX.com/myfile.wmv
am using Video view
for that but it saying unable to play video error
I tried using WebView
also but it showing only blank page.
Just i want to play that video link file in device online
.
How to do that ?
Note : The links are working i tested on Windows browser.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将视频转码为 Android 支持的格式,并使结果也可以在您的服务器上使用。
http://developer.android.com/guide/appendix/media-formats.html 提供了受支持表单的官方概述,但您可能会在谷歌上搜索有关 Android 设备转码的说明,以获得更实用的外观。
You will have to transcode the video to an android supported format and make the result available on your server as well.
http://developer.android.com/guide/appendix/media-formats.html provides an official overview of supported forms, but you may have more practical look googling for instructions on transcoding for android devices.