如何停止嵌入视频的自动播放?
How to stop auto play of embedded video?
这是我要嵌入的来自 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>
嵌入没问题,只是剪辑会在页面加载后自动开始播放。我怎样才能在这里停止自动播放?
我尝试了以下选项,但 none 个有效:
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
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
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
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
我也尝试在所有这些选项中使用 autoPlay 而不是 autoStart,但它也没有帮助。
作为 iFrame 源的 link 是 link 网页,而不是视频。
您可以通过在浏览器中加载 link 然后使用开发人员工具 'inspecting' 页面来查看。
该网页随后包含 link 视频本身和播放器,该播放器设置了自动播放,因此视频会立即开始。
如果您有权访问该视频 link,那么您可能会发现将其添加到您自己的页面会更容易 - 该视频看起来至少有一个版本是 HLS 文件,因此您需要JavaScript 网络播放器或本机支持 HLS 的浏览器 - 使用播放器更安全,因为它提供更广泛的支持。
这是我要嵌入的来自 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>
嵌入没问题,只是剪辑会在页面加载后自动开始播放。我怎样才能在这里停止自动播放?
我尝试了以下选项,但 none 个有效:
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
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
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
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
我也尝试在所有这些选项中使用 autoPlay 而不是 autoStart,但它也没有帮助。
作为 iFrame 源的 link 是 link 网页,而不是视频。
您可以通过在浏览器中加载 link 然后使用开发人员工具 'inspecting' 页面来查看。
该网页随后包含 link 视频本身和播放器,该播放器设置了自动播放,因此视频会立即开始。
如果您有权访问该视频 link,那么您可能会发现将其添加到您自己的页面会更容易 - 该视频看起来至少有一个版本是 HLS 文件,因此您需要JavaScript 网络播放器或本机支持 HLS 的浏览器 - 使用播放器更安全,因为它提供更广泛的支持。