source: trunk/html5/test/examples/single_mp4.html @ 1298

Revision 1298, 2.0 KB checked in by zach, 3 years ago (diff)
  • Adding tests
RevLine 
[1298]1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
[994]2<html>
[1298]3        <head>
4                <title>Single MP4 Example</title>
5        </head>
6    <body>
7        <h1>Single MP4 video</h1>
8        <p>
9            This is the basic setup for a video that plays on Safari,iPhone/iPad and Chrome. Firefox, IE and Opera will fallback to Flash. A poster image is included.
10        </p>
11        <p>
12            <video height="270" id="player" poster="http://content.bitsontherun.com/thumbs/nPripu9l-320.jpg" src="http://content.bitsontherun.com/videos/nPripu9l-327.mp4" width="480">
13            </video>
14        </p>
15        <script type="text/javascript" src="../../../js/bin-debug/jwplayer.js">
16        </script>
17        <script type="text/javascript" src="../../bin-debug/jwplayer.html5.js">
18        </script>
19        <script type="text/javascript">
20            var player = new jwplayer.html5(document.getElementById("player"));
21            player.setup({
22                file: "../../../js/test/files/bunny.mp4",
23                                image: "../../../js/test/files/bunny.jpg"
24           
25            });
26        </script>
27        <h3>HTML code</h3>
28        <p>
29            Here is the code for this setup. Make sure to change all links to the scripts, player, image and video. They must refer to the correct files on your server.
30        </p>
31        <p>
32            First, place this code in the <strong>&lt;head&gt;</strong>
33            of your page:
34        </p>
35        <pre>&lt;script type="text/javascript" src="/scripts/jquery.js"&gt;&lt;/script&gt;
[994]36&lt;script type="text/javascript" src="/scripts/jquery.jwplayer.js"&gt;&lt;/script&gt;</pre>
[1298]37        <p>
38            Second, place this code where you want the video to appear:
39        </p>
40        <pre>&lt;video height="270" id="player" poster="/files/bunny.jpg"
[1000]41  src="/files/bunny.mp4" width="480"&gt;
[994]42
43&lt;script type="text/javascript"&gt;
44  $('#player').jwplayer({
45    flashplayer:'/files/player.swf',
46    skin:'/files/five.xml'
[1000]47  });
[994]48&lt;/script&gt;</pre>
[1298]49    </body>
50</html>
Note: See TracBrowser for help on using the repository browser.