Chrome won't show my HTML 5 video on my Windows computer (I have Divx)

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

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>
+5
source share
1 answer

All Articles