source: plugins/captions/test/ova.html @ 2052

Revision 2052, 1.2 KB checked in by jeroen, 17 months ago (diff)

added OVA test cases to Captions/HD/Related/Sharing plugins

Line 
1<html>
2<head>
3
4    <meta charset="UTF-8">
5    <script type="text/javascript" src="assets/jwplayer.min.js"></script>
6    <title>OVA Support</title>
7    <link rel="stylesheet" href="assets/style.css" />
8
9</head>
10<body>
11
12<h2>OVA Support</h2>
13
14<div id="container"></div>
15
16<script type="text/javascript">
17jwplayer("container").setup({
18    file: 'http://content.bitsontherun.com/videos/nPripu9l-327.mp4',
19    height: 270,
20    image: 'http://content.bitsontherun.com/thumbs/nPripu9l-480.jpg',
21    flashplayer: 'assets/player.swf',
22    plugins: { 
23        'assets/ova.swf': {
24            debug: {
25              levels: "fatal"
26            },
27            ads: {
28                servers: [{
29                    type: "OpenX",
30                    apiAddress: "http://openx.openvideoads.org/openx/www/delivery/fc.php"
31                }],
32                schedule: [{
33                    zone: "5",
34                    position: "pre-roll"
35                }]
36            }
37        }, '../captions.js': {
38              file: "assets/bunny-eng.xml"
39        }
40    },
41    width: 480
42});
43</script>
44
45
46<p>
47    OVA only works in Flash mode.<br/>
48    The Captions button should not display before and during playback of the preroll.
49</p>
50
51
52</body>
53</html>
Note: See TracBrowser for help on using the repository browser.