If the element has a attribute: zero or more elements, then , but with no descendants.
If the element does not have a attribute: zero or more elements, then zero or more elements, then , but with nodescendants.:
- Address of the resource
- How the element handles crossorigin requests- Poster frame to show prior to video playback- Hints how much buffering the will likely need
- Hint that the can be started automatically when the page is loaded- Groups together with an implicit- Whether to loop the
- Whether to mute the by default- Show user agent controls- Horizontal dimension- Vertical dimension
video如何下载的?
HTML5 video does not work like streaming technologies or Flash. So how does the browser manage to play a long videowithout downloading the whole file before playing it? Part of the trick is that the video is encoded in such a way that themetadata is at the top of the file. This means once the first chunk of data is returned it is enough to determine whether thebrowser can play it all the way through. If you are encoding video for use with the video element, you will want to choose theWeb optimized option in the encoding software. (See the section on video encoding above.)不⽀持类似流媒体和flash的功能。
The real trick though is how Web servers allow you to only download the a part of a file you request. The browser requests achunk of the video at a time which allows HTML5 video to give the appearance of streaming. This behavior of mimickingstreaming is called progressive download. This also allows fast seeking through the video by clicking the time rail on anunbuffered portion of the video. In general, requesting just a chunk of a file from a Web server is called a range request or “.”只要服务器允许请求⽂件的⼀个部分, 就可以实现表现上流的效果。 可以⽀持 拖动进度条, 这种下载也成为 进度下载(progressivedownload),
服务器⽀持的这种特性 叫 byte serving
You may need to do some configuration on your video server to allow for range requests. You can test this by looking at theresponse headers for one of your video files. Here we look at the headers for our demo video on the command line.
$ curl -I http://siskel.lib.ncsu.edu/RIS/getting_a_book/getting_a_book.mp4HTTP/1.1 200 OK
Content-Length: 8343631Content-Type: video/mp4
Last-Modified: Thu, 20 Dec 2012 19:40:10 GMTAccept-Ranges: bytes
Access-Control-Allow-Origin: *X-Powered-By: ASP.NET
Date: Sat, 22 Dec 2012 22:04:23 GMT
使⽤这个命令可以查看是否⽀持 bytes下载。
You will be looking for the “: bytes” header which advertises that the server can accept range requests.range请求的解释:
You can look at the request headers to see how this works from the client’s perspective. Using the network tab of the browser’sdeveloper tools or an add-on like Firefox’s . Go to and you’ll see “Range: bytes=0-” as one of the headers the browser sendswhen making a request for the video. This is the initial request for the first chunk of bytes. A successful response will begin witha “206 Partial Content” response code. The response will include the “Accept-Ranges: bytes” header to show that rangerequests are accepted. The header (e.g. “Content-Range: bytes 0-3771428/3771429”) shows the range of bytes which weretransferred in the current response followed after the slash by the total number of bytes in the file. You’ll also see in the time railfor most players that part of the video timeline has been “buffered” and is available to play. The header will show the actualnumber of bytes which were transferred with each request.
This document describes a protocol for transferring unbounded streams of multimedia data. It specifies the data format of the files and the actions to be taken by the server (sender) and the clients
(receivers) of the streams. It describes version 7 of this protocol.
I don't think it is possible now to \"cheat\" the HTML5 browser to encapsulate the live video stream to a \".mp4\" file. I believeHTML5 will consider live video support in a near future. What you can do is just wait. :)
Future of Media on the Web
The simple video element is rather pedestrian these days. There’re so many other interesting things happening with media onthe Web.