HTML5 Video
mp4 Video Codec 要用H.264 (x264)
set the files MIME type should be video/mp4
mp4 custom width不要過大, IE 會看不到.
但內設的 1920×1080 都可行, 1080×1920就不行><
已測試 612×1088 是可行
<video width="320" height="240" controls>
<!–support new browser safari/chrome/IE9–>
<source src="movie.mp4" type="video/mp4">
<!–support new browser firefox–>
<source src="movie.webm" type="video/webm">
<!–support old browser ie7/8–>
<embed src="movie.swf" wmode="transparent">
</video>