<video>¶
This element creates a video player. Only BINK (.bik) videos are supported.
Attributes¶
pos="X Y Z"¶
Classic positioning, available for backwards compatibility
posn="X Y Z"¶
size="width height"¶
Classic sizing, available for backwards compatibility
sizen="width height"¶
scale="factor"¶
Element scale, a scale of 2 doubles the size.
data="video.bik"¶
The path to the videofile. You can also wrap the path in the element instead. (Example: <video>video.bik</video>)
play="1"¶
This video automatically starts playing when set to 1
looping="0"¶
The videoplayer stops after the video played once when set to 0. The default value is 1 (looping)
Examples¶
<video
    pos="0 0 0"
    size="0.512 0.256"
    data="sign_warning.bik"
    play="1"
/>