html5 - Why does Chrome keep attempting to mount mp4 files when it can't play them? -


why chrome keep attempting mount mp4 files when can't play them?

i working on pc windows 7, ie 10, chrome version 25.0.1364.172.

it doesn't matter whether mp4 source line before or after object lines, chrome seems want mount mp4 files if can't play them.

i play mp4 file in ie 10 , flash equivalent in chrome, can't seem make combination of line ordering work.

so far, workaround use flash in both browsers. why have to? thought html5 video tag supported both browsers?

is correct way flash fallback coded, doesn't seem working. there way code don't have use flash in ie 10, can play mp4 files native?

thanks whatever assistance can give me.

here's copy of code generated @ http://sandbox.thewikies.com/vfe-generator/

<!-- "video everybody" http://camendesign.com/code/video_for_everybody --> <video controls="controls" poster="mark.jpg" width="640" height="480">         <source src="mark.mp4" type="video/mp4" />         <object type="application/x-shockwave-flash"     data="http://player.longtailvideo.com/player.swf" width="640" height="360">               <param name="movie" value="http://player.longtailvideo.com/player.swf" />               <param name="allowfullscreen" value="true" />               <param name="wmode" value="transparent" />               <param name="flashvars" value="controlbar=over&amp;image=mark.jpg&amp;file=mark.mp4" />               <img alt="mark" src="mark.jpg" width="640" height="480" title="no video playback capabilities, please download video below" />         </object> </video> 


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -