嵌入式quicktime视频点击暂停如何防止?

发布于 2024-08-31 10:20:02 字数 236 浏览 6 评论 0原文

我在 Firefox 中嵌入了一个 QuickTime 视频。它有效,但我想阻止用户通过用鼠标左键单击视频来停止视频。阅读苹果文档我没有找到任何答案。我想出了一个解决方法,我只是在整个视频上放置了一个几乎看不见的 div。该解决方法适用于 OS X 的 Firefox,但奇怪的是不适用于 Windows 中的同一版本的 Firefox。

我希望有一种方法,无论是否有解决方法,至少在 windows/firefox 环境中实现这一点。谢谢!

I embedded a quicktime video in firefox. It works, but i would like to prevent the users to stop the video by clicking on it with the left mouse button. Reading the apple documentation i didn't find any answear. I came up with a workaround, i just put an almost invisible div over the whole video. The workaround works in firefox for os X, but oddly does not for the same version of firefox in windows.

I would appreciate a way, workaround or not, to achive this at least in the windows/firefox environment. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尤怨 2024-09-07 10:20:02

好的,这就是嵌入的 QuickTime 对象的工作原理:

  • 如果您单击它,如果您给它 HREF 参数,它会暂停流,
  • 然后单击它,它会打开给定的 URL,但不会暂停流

所以想法是给它一个不会打开的 URL,并且会阻止播放器暂停,因此在 < 中添加此参数:href="javascript:function(){}" /code> 标记如下:

<embed src="poster.mov" bgcolor="000000" width="640" height="480" scale="ASPECT" qtsrc="rtsp://192.168.0.2/stream1" kioskmode="true" showlogo=false" autoplay="true" controller="false" href="javascript:function(){}" pluginspage="http://www.apple.com/quicktime/download/">

就这样,单击它时无需暂停,并且它适用于所有浏览器,因为您正在使用 HREF 参数。 =)

Ok so this is how the embedded QuickTime object works:

  • if you click it, it PAUSES the stream
  • if you give it HREF parameter, and then click it, it opens the given URL, but doesn't pause the stream

So the idea is to give it the URL that will not open, and will prevent the player from pausing, so add this parameter: href="javascript:function(){}" in the <embed> tag like so:

<embed src="poster.mov" bgcolor="000000" width="640" height="480" scale="ASPECT" qtsrc="rtsp://192.168.0.2/stream1" kioskmode="true" showlogo=false" autoplay="true" controller="false" href="javascript:function(){}" pluginspage="http://www.apple.com/quicktime/download/">

And there you go, no pausing when you click it, and it works on all browsers because you are using the HREF parameter. =)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文