Chrome不会在我的Windows计算机上显示我的HTML 5视频(我有Divx)

Phi*_*lip 5 html5 google-chrome divx windows-7 html5-video

我已经下载了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>
Run Code Online (Sandbox Code Playgroud)