49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
|
|
name="viewport">
|
|
<meta content="ie=edge" http-equiv="X-UA-Compatible">
|
|
<title>E2E with VAST Linear</title>
|
|
<%= htmlWebpackPlugin.tags.headTags %>
|
|
<style lang="css">
|
|
#fluid-player-e2e-case {
|
|
width: 90%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<video id="fluid-player-e2e-case">
|
|
<source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" data-fluid-hd title="1080p" type="video/mp4"/>
|
|
</video>
|
|
|
|
<%= htmlWebpackPlugin.tags.bodyTags %>
|
|
|
|
<script>
|
|
var instance = fluidPlayer('fluid-player-e2e-case', {
|
|
vastOptions: {
|
|
allowVPAID: true, // Default false.
|
|
adList: [
|
|
{
|
|
roll: 'preRoll',
|
|
vastTag: '/static/vast_linear_e2e.xml',
|
|
},
|
|
{
|
|
roll: 'midRoll',
|
|
vastTag: '/static/vast_linear_e2e.xml',
|
|
timer: 40,
|
|
},
|
|
{
|
|
roll: 'postRoll',
|
|
vastTag: '/static/vast_linear_e2e.xml',
|
|
},
|
|
]
|
|
},
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|