本文介绍了Chrome不会在我的Windows上显示我的HTML 5视频计算机(我有Divx)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我下载了Divx插件(我认为)HTML文件可以在我所有其他浏览器中播放,但可以播放Chrome浏览器。相反,所有在chrome中显示的是一个带有Divx单词的黑盒子。为什么?

I have the Divx plugin downloaded (i think) the html files play in all my other browers but chrome. Instead, all that shows up in chrome is a black box with the words Divx in them. Why?

以下是我的HTML5代码:

Here is my HTML5 code:

<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>


推荐答案

看看这个解决方案:

这篇关于Chrome不会在我的Windows上显示我的HTML 5视频计算机(我有Divx)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-23 06:25