58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.9 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>Suggested videos with subtitles</title>
 | 
						|
    <%= htmlWebpackPlugin.tags.headTags %>
 | 
						|
    <style lang="css">
 | 
						|
        #fluid-player-e2e-case, #fluid-player-e2e-case-2 {
 | 
						|
            width: 90%;
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
<h1>Video with no subtitles initially, two video sources</h1>
 | 
						|
<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='http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerBlazes.mp4' title="480p" type='video/mp4'/>
 | 
						|
</video>
 | 
						|
 | 
						|
<h1>Video with no subtitles initially, only 1 video source</h1>
 | 
						|
<video id="fluid-player-e2e-case-2">
 | 
						|
    <source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" type="video/mp4"/>
 | 
						|
    <track label="English" kind="metadata" srclang="en" src="/static/subtitles/english.vtt" default>
 | 
						|
    <track label="Deutsch" kind="metadata" srclang="de" src="/static/subtitles/deutsch.vtt">
 | 
						|
</video>
 | 
						|
 | 
						|
<%= htmlWebpackPlugin.tags.bodyTags %>
 | 
						|
 | 
						|
<script>
 | 
						|
    var instance = fluidPlayer('fluid-player-e2e-case', {
 | 
						|
        layoutControls: {
 | 
						|
            subtitlesEnabled: true,
 | 
						|
        },
 | 
						|
        suggestedVideos: {
 | 
						|
            configUrl: '/static/suggested_videos_example_v1.json',
 | 
						|
        },
 | 
						|
    });
 | 
						|
</script>
 | 
						|
 | 
						|
<script>
 | 
						|
    var instance = fluidPlayer('fluid-player-e2e-case-2', {
 | 
						|
        layoutControls: {
 | 
						|
            subtitlesEnabled: true,
 | 
						|
        },
 | 
						|
        suggestedVideos: {
 | 
						|
            configUrl: '/static/suggested_videos_example_v1.json',
 | 
						|
        },
 | 
						|
    });
 | 
						|
</script>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |