我已经下载了 Divx 插件(我认为)这些 html 文件在我所有其他浏览器中播放,但 chrome 除外。相反,在 chrome 中显示的只是一个带有 Divx 字样的黑框。为什么?
这是我的 HTML5 代码:
<div class = "video-js-box">
<video class = "video-js" width = "675" height = "380" controls>
<source src = "/videos/videofiles/Reversing_a_Track.mp4"
type = 'video/mp4; codecs="avc1.42E01E, mp4a.40.2"';/>
<source src = "/videos/videofiles/Reversing_a_Track.ogg"
type = 'video/ogg; codecs="theora, vorbis"'/>
<source src = "/videos/videofiles/Reversing_a_Track.webm"
type = 'video/webm; codecs="vp8, vorbis"'/>
</video>
</div>