Ogg (theora / vorbis) 在 Firefox 3.6 中播放
我有这个 html5 代码,其中有一个用于 Chrome 的 MP4(工作)、一个用于 Firefox 的 OGG(失败)以及通过 Java 小程序用于 Internet Explorer 的相同 ogg(工作):
<video width="848" height="480" controls="controls" autoplay="true" >
<source src="vernissage_cpal_2009.mp4" type="video/mp4" />
<source src="vernissage_cpal_2009.ogv" type="video/ogg" />
<applet code="com.fluendo.player.Cortado.class" archive="http://theora.org/cortado.jar" width="848" height="480">
<param name="url" value="vernissage_cpal_2009.ogv" />
</applet>
</video>
Firefox 显示一个灰色框,里面有一个 X。文件“vernissage_cpal_2009.ogv”在普通媒体播放器(如 VLC)中也能正常播放。
I have this html5 code, with a MP4 for Chrome (working), an OGG for Firefox (failing) and the same ogg via a java applet for Internet Explorer (working):
<video width="848" height="480" controls="controls" autoplay="true" >
<source src="vernissage_cpal_2009.mp4" type="video/mp4" />
<source src="vernissage_cpal_2009.ogv" type="video/ogg" />
<applet code="com.fluendo.player.Cortado.class" archive="http://theora.org/cortado.jar" width="848" height="480">
<param name="url" value="vernissage_cpal_2009.ogv" />
</applet>
</video>
Firefox display a gray box with a X inside it. The file "vernissage_cpal_2009.ogv" also plays well inside normal media player, like VLC.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了类似的问题,尝试嵌入 ogg 音频,它在 FF 中播放,但不在 chromium 中播放。
我发现我缺少一个标签,输入audio/ogg。现在播放了。
代码如下:
当然,这不适用于新的 html5 代码,但是,它确实可以播放文件。
I had a similar issue, trying to embed ogg audio, where it was playing in FF, but not in chromium.
I found I was missing a tag, type audio/ogg. It now plays.
Here is the code:
Granted, this is not working with the new html5 code, but, it did make it so the file would play.
使用“video/ogg; codecs=theora,vorbis”作为你的 mime 类型,Firefox 会愉快地播放它。
Use "video/ogg; codecs=theora,vorbis" as your mime type and Firefox will play it back happily.