Tag: HTML5video

为什么苹果设备在自己的播放器中播放html5video?

我尝试了不同的HTML播放器,并使用html5video标签。 不过苹果设备(ipod touch 4,iphone 4,ipad)在自己的播放器中显示html5video。 我的主要目标是在video上显示重叠广告。 我决定用绝对定位和z-index来隐藏/显示div。 它适用于我的电脑浏览器,但无法在苹果设备pipe理。 为了在苹果设备上显示广告,首先我需要使用我自己的html5播放器,而不是苹果的默认video播放器。 我的方法是可能的还是有任何解决方法? 任何想法将不胜感激。 谢谢, editted 有一个属性“webkit-playsinline”。 但是这也行不通。 我认为它只适用于使用UIWebView的应用程序编程。 <video id="video" width="480" height="320" webkit-playsinline>

iOS – html5 – 全屏模式 – 禁用清理

我有一个html5 videoplayer自定义控件,我需要显示/隐藏。 通过video.removeAttribute(“controls”)删除默认控件。 但是,当用户启动全屏时,他将获得默认的iOS控件,并可以通过广告进行清理。 有没有办法在全屏模式下禁用search? 谢谢。

MP4在直接访问时播放,而不是在iOS上通过PHP读取时播放

我使用PHP脚本来validationvideo请求之前,他们。 这个脚本按照预期在桌面上运行,使用Safari和Chrome。 但在iOS上,我得到一个打破的播放button。 我相信这个video是正确编码的iPhone / iPad,因为当我直接访问它,它按预期工作。 相关的PHP代码: $file_name = 'test-video.mp4'; $file_size = (string)(filesize($file_name)); header('Content-Type: video/mp4'); header('Content-Length: '.$file_size); readfile_chunked($file_name); exit; ( readfile_chunked()类似于readfile()但对于非常大的文件,可以在PHP手册页的注释中find: http : //php.net/manual/en/function.readfile.php 。无论如何, test-video.mp4只有~5MB,小于内存限制 – 在这种情况下,我实际上可以replace正常的readfile()并产生完全相同的行为。) 我直接访问test-video.mp4时得到的标题是: Accept-Ranges:bytes Connection:Keep-Alive Content-Length:5558749 Content-Type:video/mp4 Date:Sun, 27 Jun 2010 21:02:09 GMT Etag:"1c04757-54d1dd-489944c5a6400" Keep-Alive:timeout=10, max=30 Last-Modified:Tue, 22 Jun 2010 01:25:36 GMT Server:Apache/2.2.15 (CentOS) mod_ssl/2.2.15 0.9.8l DAV/2 mod_auth_passthrough/2.1 FrontPage/5.0.2.2635 […]