【发布时间】:2012-12-18 10:26:03
【问题描述】:
我尝试使用 UIWebView 播放来自网站(带有 HTML5 视频标签)的 .mp4 视频。 iPhone / iPad 设备和模拟器仅显示带有被删除的播放按钮的黑框。 如果我只是在 Safari Mac 版上调用这个网站,就可以播放它。 怎么了?
它不是本地文件。 html 看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="../css/shared-culture.css" />
</head>
<body>
<section class="base">
<hgroup>
<h1>creative commons</h1>
<h2>a shared culture</h2>
</hgroup>
<p>To celebrate our 2008 fundraising campaign, Creative Commons has
released “A Shared Culture,” a short video by renowned filmmaker <a
href="http://en.wikipedia.org/wiki/Jesse_Dylan">Jesse Dylan</a>. Known for
helming a variety of films, music videos, and the Emmy Award-winning <a
href="http://my.barackobama.com/page/invite/yeswecanvideo">“Yes We Can”</a>
Barack Obama campaign video collaboration with rapper will.i.am, Dylan created
“A Shared Culture” to help spread the word about the Creative Commons mission. </p>
<!-- height="240" width="360" -->
<video id="video1" controls="controls">
<source src="../video/shared-culture.mp4" type="video/mp4"/>
<source src="../video/shared-culture.webm" type="video/webm"/>
<div class="errmsg">
<p>Your Reading System does not support (this) video.</p>
<pre><code>
<video id="video1" controls="controls">
<source src="../video/shared-culture.mp4" type="video/mp4"/>
<source src="../video/shared-culture.webm" type="video/webm"/>
</video>
</code></pre>
</div>
</video>
<p>In the video, some of the leading thinkers behind Creative Commons
describe how the organization is helping “save the world from failed sharing”
through free tools that enable creators to easily make their work available to
the public for legal sharing and remix. Dylan puts the Creative Commons system
into action by punctuating the interview footage with dozens of photos that have
been offered to the public for use under CC licenses. Similarly, he used two
CC-licensed instrumental pieces by Nine Inch Nails as the video’s soundtrack
music. These tracks, “17 Ghosts II” and “21 Ghosts III,” come from the Nine Inch
Nails album Ghosts I-IV, which was released earlier this year under a Creative
Commons BY-NC-SA license. (See <a
href="http://creativecommons.org/videos/a-shared-culture">attribution</a>.)
</p>
</section>
</body>
</html>
【问题讨论】:
-
是本地文件中的视频,您可以发布您的
HTML代码。 -
如果您只想播放该网站中的视频,请查看VideoPlayerKit。
-
刚刚查看了
http://my.barackobama.com . . ./video/shared-culture.mp4的页面源代码,它声明了带有type="application/x-shockwave-flash"属性的电影嵌入标签。对于 Apple HLS,您需要 MPEG2.TS 容器中的 H.264/AVC。 HLS 文档在这里:developer.apple.com/resources/http-streaming -
@RichTolley 您应该将其作为答案而不是评论。
-
在实际设备上玩累了吗??
标签: ios video uiwebview screen frame