<div class="video " data-module="video" data-autoplay="" data-hide-controls="" data-loop="" data-muted="">
<template class="js-small-video-template">
<div class="js-video-container video__container">
<video class="video__player js-video-player" controls playsinline>
</video>
</div>
</template>
<template class="js-medium-video-template">
<div class="js-video-container video__container">
<video class="video__player js-video-player" controls playsinline>
</video>
</div>
</template>
<div class="js-video-container video__container"></div>
</div>
<div class="video {{#ifEquals videoAspect 'portrait'}}video--portrait{{/ifEquals}}" {{#unless
doNotInitialise}}data-module="video" {{/unless}} data-autoplay="{{autoplay}}" data-hide-controls="{{hideControls}}"
data-loop="{{loop}}" data-muted="{{muted}}" {{#if video.posterUrl}} data-poster-url="{{video.posterUrl}}" {{/if}}>
<template class="js-small-video-template">
<div class="js-video-container video__container" {{#if video.mobileDashUrl}}
data-dash-url="{{video.mobileDashUrl}}" {{/if}} {{#if video.mobileHlsUrl}}
data-hls-url="{{video.mobileHlsUrl}}" {{else}} {{#if video.hlsUrl}} data-hls-url="{{video.hlsUrl}}" {{/if}}
{{/if}} {{#if video.posterUrl}} data-poster-url="{{video.posterUrl}}" {{/if}}>
<video class="video__player js-video-player" {{#unless hideControls}}controls{{/unless}} {{#if
autoplay}}autoplay muted{{else}}{{#if muted}}muted{{/if}}{{/if}} playsinline {{#if loop}}loop{{/if}}
{{#if video.posterUrl}}poster="{{video.posterUrl}}" {{/if}}>
{{#if video.mobileDashUrl}}
{{#if video.mobileHlsUrl}}
<source src="{{video.mobileHlsUrl}}" type="{{video.hlsVideoType}}" />
{{else}}
{{#if video.hlsUrl}}
<source src="{{video.hlsUrl}}" type="{{video.hlsVideoType}}" />
{{/if}}
{{/if}}
<source src="{{video.mobileDashUrl}}" type="application/dash+xml" />
{{else}}
{{#if video.mobileVideoUrls}}
{{#each video.mobileVideoUrls}}
<source src="{{url}}" type="{{type}}" />
{{/each}}
{{else}}
{{#if video.videoUrls}}
{{#each video.videoUrls}}
<source src="{{url}}" type="{{type}}" />
{{/each}}
{{/if}}
{{/if}}
{{/if}}
{{#if video.captions}}
{{#each video.captions}}
<track label="{{language}}" kind="subtitles" srclang="{{languageCode}}" src="{{url}}" />
{{/each}}
{{/if}}
</video>
</div>
</template>
<template class="js-medium-video-template">
<div class="js-video-container video__container" {{#if video.dashUrl}} data-dash-url="{{video.dashUrl}}" {{/if}}
{{#if video.hlsUrl}} data-hls-url="{{video.hlsUrl}}" {{/if}} {{#if video.posterUrl}}
data-poster-url="{{video.posterUrl}}" {{/if}}>
<video class="video__player js-video-player" {{#unless hideControls}}controls{{/unless}} {{#if
autoplay}}autoplay muted{{else}}{{#if muted}}muted{{/if}}{{/if}} playsinline {{#if loop}}loop{{/if}}
{{#if video.posterUrl}}poster="{{video.posterUrl}}" {{/if}}>
{{#if video.dashUrl}}
{{#if video.hlsUrl}}
<source src="{{video.hlsUrl}}" type="{{video.hlsVideoType}}" />
{{/if}}
<source src="{{video.dashUrl}}" type="application/dash+xml" />
{{else}}
{{#if video.videoUrls}}
{{#each video.videoUrls}}
<source src="{{url}}" type="{{type}}" />
{{/each}}
{{/if}}
{{/if}}
{{#if video.captions}}
{{#each video.captions}}
<track label="{{language}}" kind="subtitles" srclang="{{languageCode}}" src="{{url}}" />
{{/each}}
{{/if}}
</video>
</div>
</template>
<div class="js-video-container video__container"></div>
{{#if tags}}
{{> @cp-hashtags tags }}
{{/if}}
</div>
/* No context defined for this component. */
There are no notes for this item.