我刚创建了一个网站,我们可以使用PHP
免费下载和观看电影。现在我遇到了embedded
视频的问题。我正在使用下面显示的<iframe>
代码来嵌入Flash视频。
echo '<iframe name="watch_online" id="watch_online" src="http://filehoot.com/embed-09uknzl64bw0-570x380.html" height="380" width="570" style="z-index:2147483647;" webkitAllowFullScreen mozallowfullscreen allowfullscreen frameborder="0" scrolling="no"></iframe>';
在PC上运行良好,但是当我在iPhone上打开它时,我的Flash视频会变为jwplayer
,但仍无法播放视频。消息显示如下:
"the video could not be loaded either because the server or network failed or because the format is not support"
此问题需要指导。感谢。
答案 0 :(得分:0)
没有适用于iOS,开发或其他目的的原生Flash播放器,请尝试上传HTML5兼容视频,例如.mp4,.m4v和.f4v文件......
检测iOS设备(javascript):
var uagent = navigator.userAgent.toLowerCase();
if (uagent.search("iphone") > -1 ||
uagent.search("ipod") > -1 ||
uagent.search("ipad") > -1 ||
uagent.search("appletv") > -1) {
// handle code here for html5 video
}