如何在视频标签中播放AVI文件?

发布于 2024-11-19 14:36:40 字数 175 浏览 1 评论 0原文

我想知道是否可以让浏览器在 video 标记内播放 AVI 文件。

我在网上找到的所有谈论它的内容都集中在 MP4 和 Ogg 格式,但没有人谈论 AVI 格式。

我找到的唯一解决方案是删除 video 标签并使视频可以使用 JW Player 播放。

I'm wondering if it's possible to make a browser play a AVI file within a video tag.

Everything I found on the web talking about it focus on MP4 and Ogg formats but nobody talks about the AVI format.

The only solution I found is to drop the video tag and make the video playable using JW Player.

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

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

发布评论

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

评论(2

戏剧牡丹亭 2024-11-26 14:36:40

只有 DivX Web 播放器可以传输 avi 文件。实际上,vlc 也有一个可以流式传输 avi 文件的插件,但它有问题。

有时得到可靠的答案是一件很痛苦的事情。这是互联网的最大问题之一。

<object id="ie_plugin" classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" 
            width="660" 
            height="300" 
            codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab"> 
<param name="custommode" value="stage6" />
<param name="autoPlay" value="false" />
<param name="src" value="link-to-avi" />
<param name="bannerEnabled" value="false" />

<embed id="np_plugin" type="video/divx" 
src="link-to-avi" 
custommode="stage6" 
width="660" 
height="300" 
autoPlay="false"  
bannerEnabled="false"
pluginspage="http://go.divx.com/plugin/download/">
</embed>
</object>

请注意其中两次显示“link-to-avi”的地方:)

Only the DivX web player can stream avi files. actually, theres a plug in for vlc to stream avi files also, but its buggy.

Sometimes it's a pain in the ass to get a solid answer. its one of the big sucks of the internet.

<object id="ie_plugin" classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" 
            width="660" 
            height="300" 
            codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab"> 
<param name="custommode" value="stage6" />
<param name="autoPlay" value="false" />
<param name="src" value="link-to-avi" />
<param name="bannerEnabled" value="false" />

<embed id="np_plugin" type="video/divx" 
src="link-to-avi" 
custommode="stage6" 
width="660" 
height="300" 
autoPlay="false"  
bannerEnabled="false"
pluginspage="http://go.divx.com/plugin/download/">
</embed>
</object>

note where it says "link-to-avi" twice :)

一花一树开 2024-11-26 14:36:40

今天有很好的方法来处理它。其中之一是在 npm 上找到的模块 Fluent-ffmpeg

它需要之前安装 FFMPEG

avi 的支持不是直接的。有必要构建一个带有节点的服务器来为您的 html 提供服务。

Today there are excellent approaches to deal with it. One of them is the module fluent-ffmpeg found on npm.

It requires the previous installation of FFMPEG

The support of avi isn't direct. It will be necessary build a server with node to serve your html.

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