The video element describes a video object
<video id="objectId" src="videoSource"
[width="videoWidth"] [height="videoHeight"]
[audioBitrate="audioQuality"] [videoBitrate="videoQuality"]
[disabledAudio="isAudioDisabled"] [loop="isLoopVideo"]
/>
Name |
Description |
Value type |
Optional |
Default Value |
| id |
Object identifier |
no |
- |
|
| src |
Path to the video file. |
no |
- |
|
| width |
Width of the video * |
yes |
0 |
|
| height |
Height of the video.* |
yes |
0 |
|
| audioBitrate |
Audio stream bitrate in Kbps, if audio stream exists. |
yes |
128 |
|
| videoBitrate |
Sets video stream bitrate in Kbps If not specified, source video bitrate will be used |
yes |
- |
|
disabledAudio |
Enable/disable audio stream |
yes |
false |
|
loop |
Use this attribute, if you want to loop video |
yes |
false |
* When specified, the width and height attributes will be used to resize a video during Flash movie generation. If the width and height attributes are not specified or set to "0" the video will be used with its original dimensions.