Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome won't show my HTML 5 video on my windows Computer (I have 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?

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>
like image 611
Philip Avatar asked Nov 14 '22 15:11

Philip


1 Answers

take a look at this solution: http://codecanyon.net/forums/thread/divx-vs-html5-in-chrome/61708

like image 56
shem Avatar answered Dec 18 '22 19:12

shem