Article object
Media (videos and audio files)
Element or context:
<media>
Media files may or may not have a caption. However, regardless of whether they have a caption, they are not figures.
Requirements:
- Give each <media> a unique id of the form "media{some number}"
- If the media item has a label, such as "Video 1", then include that within <label> tags
- If the media file is a video, then set attribute mimetype on <media> to "video"
- If the media item has a caption, then include that within <caption><p>
- Reference the file using attribute xlink:href on <media>. For videos hosted on Wistia (CSP can advise), it is not necessary to include the entire URL; the Wistia ID will suffice (see the example)
Examples:
Example 1: Media within an abstract: <abstract abstract-type="media">
<media xlink:href="yu9pvkgix2" mimetype="video"/> </abstract> Example 2: Media with a caption: <media xlink:href="yu9pvkgix2" mimetype="video"> <label>Video 1.</label> <caption><p>This is the caption for video 1.</p></caption> </media>