以下是我试图嵌入的来自metacafe.com的视频剪辑:
<!DOCTYPE html>
<html>
<body>
<table>
<tr>
<td>
<iframe
width="720" height="405"
src="http://www.metacafe.com/embed/11600739/natasha-the-founder-of-easy-peasy-lemon-squeezy-forms-the-secrets-to-form-a-saas-application-mp4$autoStart=false"
frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen>
</iframe>
</td>
</tr>
</table>
</body>
</html>
嵌入是可以的,除了剪辑在页面加载后自动开始播放。我怎样才能在这里停止自动播放?
我尝试了以下选项,但都没有效果:
http://www.metacafe.com/embed/11600739/natasha-the-founder-of-easy-peasy-lemon-squeezy-forms-the-secrets-to-form-a-saas-application-mp4的 /&安培; AUTOSTART =假
http://www.metacafe.com/embed/11600739/natasha-the-founder-of-easy-peasy-lemon-squeezy-forms-the-secrets-to-form-a-saas-application-mp4的 /&安培; AUTOSTART = 0
http://www.metacafe.com/embed/11600739/natasha-the-founder-of-easy-peasy-lemon-squeezy-forms-the-secrets-to-form-a-saas-application-mp4的 /?AUTOSTART =假
http://www.metacafe.com/embed/11600739/natasha-the-founder-of-easy-peasy-lemon-squeezy-forms-the-secrets-to-form-a-saas-application-mp4的 /?AUTOSTART = 0
http://www.metacafe.com/embed/11600739/natasha-the-founder-of-easy-peasy-lemon-squeezy-forms-the-secrets-to-form-a-saas-application-mp4的&安培; AUTOSTART =假
http://www.metacafe.com/embed/11600739/natasha-the-founder-of-easy-peasy-lemon-squeezy-forms-the-secrets-to-form-a-saas-application-mp4的&安培; AUTOSTART = 0
http://www.metacafe.com/embed/11600739/natasha-the-founder-of-easy-peasy-lemon-squeezy-forms-the-secrets-to-form-a-saas-application-mp4的?AUTOSTART = 0
我还尝试在所有这些选项中使用 autoPlay 而不是 autoStart ,但它也没有帮助。
答案 0 :(得分:1)
您作为iFrame来源的链接是指向网页的链接,而不是视频的链接。
您可以通过在浏览器中加载链接然后检查&#39;来查看此信息。包含开发人员工具的页面。
该网页随后包含视频本身和播放器的链接,该播放器具有自动播放设置,因此视频会立即启动。
如果您可以访问视频链接,那么您可能会发现将其添加到您自己的页面更容易 - 视频看起来至少有一个版本是HLS文件,因此您需要一个JavaScript网络播放器或本地支持HLS的浏览器 - 使用播放器更安全,因为它提供更广泛的支持。