
The video element for HTML is used for playing videos or movies, and audio files with captions.
<video attribute-name="attribute-value"></video>
| Name | Value | Description |
|---|
| autoplay | autoplay | empty | Automatically play when the page is loaded |
| controls | controls | empty | Display the controls |
| height | non-negative integer | Vertical dimension |
| loop | loop | empty | Instructs the UA to seek back to the start of the audio stream upon reaching the end |
| mediagroup | string | Instructs the UA to link multiple videos and/or audio streams together |
| muted | muted | empty | Represents the default state of the audio stream, potentially overriding user preferences |
| poster | URI | Address of an image file for the UA to show while no video data is available |
| preload | auto | empty | Hints to the UA that optimistically downloading the entire audio stream is considered desirable |
| metadata | Hints to the UA that the user is not expected to need the audio stream, but that fetching its metadata (duration and so on) is desirable |
| none | Hints to the UA that the user is not expected to need the audio stream, or that minimizing unnecessary traffic is desirable |
| src | URI | URL for the audio stream |
| width | non-negative integer | Horizontal dimension |
