使用本地文件作为 html 视频标签的源

发布于 2025-01-16 21:48:59 字数 214 浏览 2 评论 0原文

我正在尝试使用本地文件作为 html 标记的源,但每当我尝试此代码时都不起作用,

<video src="file:///C:/Users/Videos/server_videos/first.mp4" controls></video>

我尝试将文件转换为 Blob 链接,但这也不起作用。

任何帮助表示赞赏。

I am trying to use a local file as the source for my html tag but whenever I try this code nothing works

<video src="file:///C:/Users/Videos/server_videos/first.mp4" controls></video>

I have tried converting the file into a Blob link however that doesn't work either.

Any help is appreciated.

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

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

发布评论

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

评论(1

是伱的 2025-01-23 21:48:59

没有名为 src 的属性。您需要在 容器中添加一个 标记,该标记具有 src 属性。

试试这个:

<video controls>
  <source src="file:///C:/Users/sbucarion1/Videos/server_videos/first.mp4" type="video/mp4">
</video>

</video> Doesn't have an attribute named src. You will need to add in the </video> container a <source> tag, which has the src attribute.

Try this:

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