The items attribute specifies the media files presented by the video element.
<video>
or
/ items = (file, file, file,... )Name | Type | Description |
---|---|---|
itemname | item | The name of an item element defined elsewhere in the script listing media file names. |
file | videofile | The path to a video file. |
Items can be defined either by specifying the name of an item element or by directly by listing each media file in the set.
The following defines video items:
<video rock>
/ items = ("beatles.wav", "stones.wav", "thewho.wav")
</video>