Chrome won't show my HTML 5 video on my windows Computer (I have Divx)

心不动则不痛 提交于 2019-12-10 14:48:45

问题


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>

回答1:


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



来源:https://stackoverflow.com/questions/8017859/chrome-wont-show-my-html-5-video-on-my-windows-computer-i-have-divx

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!