我正在尝试在我使用PhoneGap开发的应用上播放视频。在普通的网络浏览器上,我可以完美地播放视频,但在我的设备上,相同的代码返回错误。不知道我哪里出错了。我是这项技术的新手,任何帮助或指导都会非常有帮助
我在浏览器上的代码:
<html>
<head>
<title> Video player</title>
</head>
<body>
<center><div style="background:cyan; width:80%; height:60%; ">
<video width="320" height="240" controls>
<source src="http://s032.synergymms.com/SynergyWebApps/OpenFileAttachments.aspx?cid=5209&fid=215" type="video/mp4">
Your browser does not support the video tag.</source>
</video>
</div></center>
</body>
</html>
在移动应用上:Phonegap
<video class="load-video" width="320" height="240" controls><source src="http://s032.synergymms.com/SynergyWebApps/OpenFileAttachments.aspx?cid=5209&fid=215" type="video/mp4">Your browser does not support the video tag.</video>
答案 0 :(得分:1)
正在为Android开发?如果是,android不支持该标签。是的,我知道。所以你必须使用插件来播放视频。您可以使用https://github.com/raulduran/VideoPlayer播放视频。尝试使用该插件,如果无法使用,我会为您提供更多指导。在办公室,很忙。抱歉。顺便说一下,我遇到了同样的问题。 6个小时后,我设法解决了这个问题。