DPE Web Applications 2.x
2.17 2.16 2.15
2.17 2.16 2.15

Video Preview Player Component

The Video Preview Player is located in the Details Pane and configured as part of the Details Pane Template.

XML
{{#if-equal param1=model.Class param2="Video"}}
	{{#if-not-equal param1=model.State param2="Virtual"}}
		{{#if-equal param1=model.Story param2="0"}}
			{{dpe-video-player videoUrl=model.videoUrl thumbnailUrl=model.thumbnailUrl useDash=model.isDashVideo legacyController=legacyController selectedAudioStream=legacyController.audioChannels.streamSelection.stream digaDash=true}}
		{{/if-equal}}
	{{/if-not-equal}}
{{/if-equal}}

{{#if-equal param1=model.Class param2="VideoProject"}}
	{{#if-not-equal param1=model.State param2="Virtual"}}
		{{#if-equal param1=model.Story param2="0"}}
			{{dpe-video-player videoUrl=model.videoUrl thumbnailUrl=model.thumbnailUrl useDash=model.isDashVideo legacyController=legacyController selectedAudioStream=legacyController.audioChannels.streamSelection.stream digaDash=true playlist=true}}
		{{/if-equal}}
	{{/if-not-equal}}
{{/if-equal}}