我正在制作phonegap应用,我需要在其中播放视频。我知道为了在Android上播放视频,我需要使用其中一个插件,但要在iOS上播放视频,我可以使用HTML 5视频标签。我有这些代码:
<div id="video">
<video id="video01" width="300" height="300" controls>
<source src="images/test2.mp4" type="video/mp4" />
</video>
</div>
我可以看到“视频框”,但由于某些原因我无法播放视频。在控制台中我没有看到任何错误。
我正在使用的视频来自此页面:http://www.quirksmode.org/html5/tests/video.html
在iPhone Safari中,我可以毫无问题地从该页面加载MP4版本。
答案 0 :(得分:1)
我知道它已经有一段时间了,但我正在查看我的一些旧问题,而且我注意到我完全忘了为我的问题发布解决方案。
最后,我设法使用Cordova File api解决了这个问题,解决方案看起来很糟糕。像这样:
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
console.log("gotFS");
getFolder(fileSystem, "video", function(folder) {
filePath = folder.toURL() + "\/" + "videotest.mp4";
playVideo(filePath);
}, function() {
console.log("failed to get folder");
});
},
function() {
console.log("failed to get filesystem");
});
function playVideo(uri) {
var player = document.getElementById("videoPlayer");
var source = document.createElement("source");
source.src = uri;
source.type = "video/mp4";
player.appendChild(source);
player.load();
}