Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I write a html5 page, the source is as fllows:

<!doctype html5>
....
<video id="vdemo1" controls  width="440" height="248">
  <source src='http://mysite.com/demo.webm' type='video/webm'>
  <source src='http://mysite.com/demo.mp4' type='video/mp4'>
  // fallback codes
</video>

the output of video tag is an empty black box. By following the instruction on this url:HTML5 Video not working in IE9 - Some tips to debug, it shows a MEDIA_ERR_DECODE error code. However, I can right click on the empty viewport and choose 'play' item but nothing appears in viewport. After right clck and choose 'save' to save mp4 file to local hd, it can be played well under OS. I even change video src to local file but it doesn't help!

Does IE9 lose the mp4 codec ability ( I'm sure the mp4 is encoded in H.264)? How can I regain the ability?

======= edit @ 2012/10/9

There's a strange thing happened. I never run Windows media player before and after I run it 1st time, if source of video tag is local file, it can be playbacked. But if remote url, then it won't. Can anyone see why?

share|improve this question
New questions should not be appended to other questions... and you should rate answers to your existing questions – Jörn Berkefeld Oct 14 '12 at 9:23

2 Answers

up vote 0 down vote accepted
  1. Re-sort the sources - put mp4 on top!
  2. Check if your server sends the correct mime type (video/mp4) for your mp4.

Both can break playback...

share|improve this answer

Sometimes I've seen IE9 have trouble playing videos encoded with B-Frames. Try encoding your video without them. You can do this with ffmpeg by adding the option "-bf 0" to the command line.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.