firefox - video.js Chrome and FF Quality problems -


i can't work out why video playing @ different qualities on different browsers. in chrome , ff quality terrible in safari , ie looks fine. know of reason/solution?

video: www.mediaeclipse.co.uk

html code:

<link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet"> <script src="http://vjs.zencdn.net/c/video.js"></script> <video id="my_video_1" class="video-js vjs-default-skin" controls preload="auto" width="1000" height="536" poster="http://www.mediaeclipse.co.uk/media/previewimage1.png"  data-setup="{}"> <source type="video/ogg" src="http://www.mediaeclipse.co.uk/media/showreel.ogg"> <source type="video/mp4" src="http://www.mediaeclipse.co.uk/media/showreelsmall.mp4"> </video> 

you have 2 videos of incredibly different quality. mp4 rendition looks fine, safari , ie playing, since chrome , ff can play ogg natively you're seeing horrendous ogg encoding.

you can either remove ogg rendition altogether , let video.js fallback flash player, or transcode mp4 ogg using handbrake or zencoder. suggest latter, either should trick.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -