浏览器 - 截至 2022 年,是否真的有办法在现代浏览器中预览 Quicktime (.mov) 视频?

发布于 2025-01-20 01:41:32 字数 323 浏览 2 评论 0原文

我只想知道在现代浏览器(特别是Windows!)上预览QuickTime(.mov)的出路。

我非常清楚,现代浏览器不支持 Quick QuickTime 包装盒和旧解决方案(例如嵌入式和对象标签)由于没有相关插件而无法工作。

我一直在浏览很多资源,所有这些资源都非常过时,对现代浏览器不起作用。让我知道我是否需要提及这些!

I just want to know a way out to preview quicktime(.mov) on modern browsers (Windows specifically!).

I'm very well aware that modern browsers doesn't supports quicktime containers out of the box and old solutions like embed and object tags doesn't work anymore due to no related plugins.

I've been crawling through a lot of resources and all of those are pretty outdated and doesn't work for modern browsers. Let me know if I need to mention those!

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

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

发布评论

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

评论(1

疯狂的代价 2025-01-27 01:41:32

如果您是在悬停在视频时预览视频,那么这不是标准HTML5视频标签功能的一部分。

It is usually implemented in JavaScript, either in a 3rd party player or sometimes inline with the HTML5 - eg by adding something like this in the video tag:

<video id="YourVidID"  onmouseover="this.play()" onmouseout="this.pause()">
    <source src="your_video.mp4" type="video/mp4">
    Your browser does not support HTML5 video.
 </video>

Quicktime support is a separate issue and as you say support is not strong across browsers - the best place for the current view is usually the Mozilla info:

If you mean to preview the video when you hover over it, this is not part of the standard HTML5 video tag functionality.

It is usually implemented in JavaScript, either in a 3rd party player or sometimes inline with the HTML5 - e.g. by adding something like this in the video tag:

<video id="YourVidID"  onmouseover="this.play()" onmouseout="this.pause()">
    <source src="your_video.mp4" type="video/mp4">
    Your browser does not support HTML5 video.
 </video>

Quicktime support is a separate issue and as you say support is not strong across browsers - the best place for the current view is usually the Mozilla info:

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