Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在播放之前先下载整个视频,有没有办法缓存视频或强制它下载整个文件?
使用给出的示例,在 chrome 中,它似乎下载了部分视频,然后就停止了。我假设这是 HTML5 视频播放器试图节省带宽,但实际上我需要下载整个文件。
干杯。
如果我正在解释您想要正确执行的操作,那么在 HTML 中,preload="auto"在 :video标记内设置标志。
preload="auto"
video
<video controls preload="auto"> <source src="..." type="..."> </video>