| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <html> |
|---|
| 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><head></strong> |
|---|
| 33 | of your page: |
|---|
| 34 | </p> |
|---|
| 35 | <pre><script type="text/javascript" src="/scripts/jquery.js"></script> |
|---|
| 36 | <script type="text/javascript" src="/scripts/jquery.jwplayer.js"></script></pre> |
|---|
| 37 | <p> |
|---|
| 38 | Second, place this code where you want the video to appear: |
|---|
| 39 | </p> |
|---|
| 40 | <pre><video height="270" id="player" poster="/files/bunny.jpg" |
|---|
| 41 | src="/files/bunny.mp4" width="480"> |
|---|
| 42 | |
|---|
| 43 | <script type="text/javascript"> |
|---|
| 44 | $('#player').jwplayer({ |
|---|
| 45 | flashplayer:'/files/player.swf', |
|---|
| 46 | skin:'/files/five.xml' |
|---|
| 47 | }); |
|---|
| 48 | </script></pre> |
|---|
| 49 | </body> |
|---|
| 50 | </html> |
|---|