代码示例:(标识:eg_html_video_html5)
<!DOCTYPE html>
<html>
<body>

<video width="320" height="240" controls="controls" autoplay="autoplay">
  <source src="/static/demo/video/movie.ogg" type="video/ogg" />
  <source src="/static/demo/video/movie.mp4" type="video/mp4" />
  <source src="/static/demo/video/movie.webm" type="video/webm" />
</video>

</body>
</html>
运行结果: