How to insert HTML video?

Insert the HTML code for the video:

<video width="420" height="200" controls autoplay>
                <source src="img/video/movie.ogg" type="video/ogg">
                <!--因为我的视频格式是ogg,所以路径的视频格式为ogg,下边注释的地方,就是你的视频什么格式就弄什么格式!-->
                <!--<source src="img/video/movie.mp4" type="video/mp4">
                <source src="movie.webm" type="video/webm">-->
                <object data="movie.mp4" width="320" height="240">
                    <embed width="420" height="200" src="img/video/movie.swf">
                </object>
            </video>

If something is wrong or do not know, I basically online at any time, comments that, or send E-mail: [email protected]

Guess you like

Origin blog.csdn.net/gaoxin_gx/article/details/91890085