预取/缓存视频以供稍后播放

发布于 2024-10-16 06:15:32 字数 70 浏览 2 评论 0原文

如何强制浏览器开始下载视频流(或视频文件)而不触发立即播放?请注意,我想向用户播放该视频 - 但不是立即播放,因此目标是预取。

How can I force the browser to begin downloading a video stream (or video file) without triggering it to play immediately? Please note, I will want to play this video to the user - but not immediately, so the goal is to pre-fetch.

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

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

发布评论

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

评论(1

夜光 2024-10-23 06:15:32

元素中指定 preload 属性,指示浏览器应在页面加载后立即开始下载文件;例如:

<video src="..." preload></video>

Specify the preload attribute in the <video> element to indicate that the browser should start downloading the file as soon as the page loads; for example:

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