root/trunk/sl1/readme.html @ 43

Revision 43, 3.0 kB (checked in by jeroen, 16 months ago)

last-minute 1.1 bugfixes to logo and linkfromdisplay

Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4
5        <title>JW WMV Player for Silverlight</title>
6
7        <style type="text/css">
8                body { background-color: #fff; padding: 0 20px; color:#000; font: 13px/18px Arial, sans-serif; }
9                a { color: #360; }
10                h3 { padding-top: 20px; }
11                ol { margin:5px 0 15px 16px; padding:0; list-style-type:square; }
12        </style>
13
14</head>
15<body>
16
17        <h3>Example</h3>
18        <p>Thanks for downloading! Below you see a simple embedded example of the <a href="http://www.jeroenwijering.com/?item=JW_WMV_Player">JW Player</a>.
19                Copy-paste the source code and put the .JS, .XAML and .WMV files on your site to get started.
20        </p>
21
22
23
24
25
26
27        <div name="mediaspace" id="mediaspace"></div>
28        <script type='text/javascript' src="silverlight.js"></script>
29        <script type='text/javascript' src="wmvplayer.js"></script>
30        <script type="text/javascript">
31                var cnt = document.getElementById("mediaspace");
32                var src = 'wmvplayer.xaml';
33                var cfg = {
34                        file:'video.wmv',
35                        height:'240',
36                        width:'440'
37                };
38                var ply = new jeroenwijering.Player(cnt,src,cfg);
39        </script>
40
41
42
43
44
45
46        <h3>Licensing</h3>
47        <p>The WMV Player is licensed under a <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">Creative Commons License</a>.
48                It allows you to use, modify and redistribute the script, but only for <b>noncommercial</b> purposes.
49                For corporate use, <a href="http://www.jeroenwijering.com/?page=order">please apply for a commercial license</a>.
50        </p>
51
52
53        <h3>Quickstart</h3>
54        <p>The easiest way to get to know the player is by using <a href="http://www.jeroenwijering.com/?page=wizard">the setup wizard</a>.
55                Select an example, set the file or playlist you want to play and copy-paste the embed code to your site.
56        </p>
57
58
59        <h3>Wiki and source</h3>
60        <p>The <a href="http://code.jeroenwijering.com/trac">JW Player Wiki</a> contains a wealth of information about the player, including:</p>
61        <ol>
62                <li>All <a href="http://code.jeroenwijering.com/trac/wiki/SLFormats">supported file formats</a> (and playlists).</li>
63                <li>All <a href="http://code.jeroenwijering.com/trac/wiki/SLVars">supported variables</a> for customizing the player.</li>
64                <li>The <a href="http://code.jeroenwijering.com/trac/wiki/SLAPI">javascript API</a> documentation.</li>
65                <li>The full <a href="http://code.jeroenwijering.com/trac">history and source code</a> of the player.</li>
66        </ol>
67
68
69        <h3>Next steps</h3>
70        <p>If you're ready to get professional about online video, check out these two services that take your site to the next level:</p>
71        <ol>
72                <li><a href="http://www.longtailvideo.com">LongTail Video</a> is a no-nonsense video advertisement network that will increase your traffic and monetize your streams. <a href="http://www.longtailvideo.com.com/signup.asp">Sign up</a>.</li>
73                <li><a href="http://www.bitsontherun.com">Bits on the Run</a> is a hassle-free video management system that handles the encoding, streaming and tracking of your videos. <a href="http://www.bitsontherun.com.com/signup">Sign up</a>.</li>
74        </ol>
75
76
77</body>
78</html>
Note: See TracBrowser for help on using the browser.