source: plugins/sharing/test/ova.html @ 2059

Revision 2059, 1.4 KB checked in by jeroen, 17 months ago (diff)

added OVA support, removed shortcuts from docs

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                controls: { 
29                    manage: false 
30                },
31                servers: [{
32                    type: "OpenX",
33                    apiAddress: "http://openx.openvideoads.org/openx/www/delivery/fc.php"
34                }],
35                schedule: [{
36                    zone: "5",
37                    position: "pre-roll"
38                }]
39            }
40        }, '../sharing.js': {
41              link: "http://www.openvideoads.org",
42              code: "<embed src='http://example.com/12345.swf' width='480' height='270' allowfullscreen='true' />"
43        }
44    },
45    width: 480
46});
47</script>
48
49
50<p>
51    OVA only works in Flash mode.<br/>
52    The Sharing button should not display before and during playback of the preroll.
53</p>
54
55
56</body>
57</html>
Note: See TracBrowser for help on using the repository browser.