1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
2 <html dir="ltr" xml:lang="fr" |
|
3 xmlns="http://www.w3.org/1999/xhtml" lang="fr"> |
|
4 |
|
5 <head> |
|
6 |
|
7 </head> |
|
8 |
|
9 <body> |
|
10 |
|
11 <div style="width:650px;font-family: 'Trebuchet MS', 'Helvetica', 'Arial', 'Verdana', 'sans-serif';"> |
|
12 <h1>SimplePlayer </h1> |
|
13 Iri SimplePlayer is a javascript's Widget interface to augment existing flash or html5 video player. |
|
14 It's made to show time annotation and different metadata on video. |
|
15 To implement it on your website it's 's really simple. |
|
16 You just need to insert a div and a script, like the exemple under this lines.<br/><br/> |
|
17 This player was test on : |
|
18 <ul> |
|
19 <li>Firefox 3.6.9</li> |
|
20 <li>Chrome 6.0.472.55</li> |
|
21 <li>Safari 5.0.2</li> |
|
22 <li>Internet Explore 8</li> |
|
23 </ul> |
|
24 This Player is a freeSoftware under <a href="http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"/> CeCILL-C</a> license. |
|
25 This program is made by <a href="http://www.iri.centrepompidou.fr/" >Institut de recherche et d innovation</a> |
|
26 more information on <a href="http://www.iri.centrepompidou.fr/outils/agmented-player/" >this page</a>. |
|
27 <br/><br/> |
|
28 </div> |
|
29 |
|
30 |
|
31 <!-- START IRI EMBED ###################################### --> |
|
32 <!-- SIMPLE PLAYER EXPERIMENTATION --> |
|
33 <script type="text/javascript" src="../build/LdtPlayer-release.js"></script> |
|
34 |
|
35 <input id="amount" /> |
|
36 |
|
37 <div id="LdtPlayer"></div> |
|
38 |
|
39 <script type="text/javascript"> |
|
40 var config = { |
|
41 metadata:{ |
|
42 format:'cinelab', |
|
43 src:'test.json', |
|
44 load:'json'}, |
|
45 gui:{ |
|
46 width:480, |
|
47 height:270, |
|
48 mode:'video', |
|
49 container:'LdtPlayer', |
|
50 debug:true, |
|
51 css:'../src/css/LdtPlayer.css'}, |
|
52 player:{ |
|
53 type:'dailymotion', |
|
54 src:'http://www.dailymotion.com/swf/video/x9ah8m_colloque-transphobie-a-l-assemblee_news?additionalInfos=0' |
|
55 } |
|
56 }; |
|
57 __IriSP.init(config); |
|
58 </script> |
|
59 |
|
60 |
|
61 <!-- END ################ ###################################### --> |
|
62 </body> |
|
63 </html> |
|