76 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport"
 | 
						|
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
 | 
						|
    <title>VOD extended</title>
 | 
						|
    <%= htmlWebpackPlugin.tags.headTags %>
 | 
						|
    <style lang="css">
 | 
						|
        #fluid-player-e2e-case {
 | 
						|
            width: 90%;
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
<video id="fluid-player-e2e-case">
 | 
						|
    <source src="https://cdn.fluidplayer.com/videos/valerian-1080p.mkv" data-fluid-hd title="1080p" type="video/mp4"/>
 | 
						|
    <source src="https://cdn.fluidplayer.com/videos/valerian-720p.mkv" data-fluid-hd title="720p" type="video/mp4"/>
 | 
						|
    <source src="https://cdn.fluidplayer.com/videos/valerian-480p.mkv" title="480p" type="video/mp4"/>
 | 
						|
</video>
 | 
						|
 | 
						|
<%= htmlWebpackPlugin.tags.bodyTags %>
 | 
						|
 | 
						|
<script>
 | 
						|
    var instance = fluidPlayer('fluid-player-e2e-case', {
 | 
						|
        layoutControls: {
 | 
						|
            primaryColor: "#dd2e44",
 | 
						|
            timelinePreview: {
 | 
						|
                file: '/static/thumbnails.vtt',
 | 
						|
                type: 'VTT'
 | 
						|
            },
 | 
						|
            logo: {
 | 
						|
                imageUrl: '/static/logo.png',
 | 
						|
                position: 'top right',
 | 
						|
                clickUrl: 'https://fluidplayer.com',
 | 
						|
                opacity: 1,
 | 
						|
                mouseOverImageUrl: null,
 | 
						|
                imageMargin: '2px',
 | 
						|
                hideWithControls: true,
 | 
						|
                showOverAds: true
 | 
						|
            },
 | 
						|
            fillToControls: true,
 | 
						|
            posterImage: '/static/video-thumbnail.jpg',
 | 
						|
            playbackRateEnabled: true,
 | 
						|
            allowDownload: true,
 | 
						|
            autoPlay: false,
 | 
						|
            playButtonShowing: true,
 | 
						|
            playPauseAnimation: true,
 | 
						|
            htmlOnPauseBlock: {
 | 
						|
                html: '<button>hello world</button>',
 | 
						|
                height: 100,
 | 
						|
                width: 200
 | 
						|
            },
 | 
						|
        },
 | 
						|
        vastOptions: {
 | 
						|
            allowVPAID: true, // Default false.
 | 
						|
            adList: [
 | 
						|
                {
 | 
						|
                    roll: 'preRoll',
 | 
						|
                    vastTag: '/static/vpaid_linear.xml'
 | 
						|
                },
 | 
						|
                {
 | 
						|
                    roll: 'midRoll',
 | 
						|
                    vastTag: '/static/vpaid_nonlinear.xml',
 | 
						|
                    timer: 4
 | 
						|
                },
 | 
						|
            ]
 | 
						|
        }
 | 
						|
    });
 | 
						|
</script>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |