html5test

chrome could play html5 mp4 video but html5test said chrome did not support mp4 video codec

﹥>﹥吖頭↗ 提交于 2019-12-17 06:45:58
问题 According to html5test.com , chrome does not support html5 mp4 video (see following link). http://html5test.com/compare/feature/video-mpeg4.html However, in this test page , the mp4 video could be played successfully by setting the body as following: <!DOCTYPE html> <html> <body> <video width="320" height="240" controls="controls"> <source src="movie.mp4" type="video/mp4" /> Your browser does not support the video tag. </video> </body> </html> How can I interpret this correctly? 回答1: .mp4 is

chrome could play html5 mp4 video but html5test said chrome did not support mp4 video codec

浪子不回头ぞ 提交于 2019-11-27 01:46:44
According to html5test.com , chrome does not support html5 mp4 video (see following link). http://html5test.com/compare/feature/video-mpeg4.html However, in this test page , the mp4 video could be played successfully by setting the body as following: <!DOCTYPE html> <html> <body> <video width="320" height="240" controls="controls"> <source src="movie.mp4" type="video/mp4" /> Your browser does not support the video tag. </video> </body> </html> How can I interpret this correctly? .mp4 is just a container format ( MPEG-4 Part 14 ), the video and audio formats under .mp4 file can be varied. For