client/player/test/index.htm
author wakimd
Wed, 22 Dec 2010 12:01:05 +0100
changeset 25 c8dfd7ea87e5
parent 9 22ab430e9b64
permissions -rw-r--r--
Corrections on merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     2
<html dir="ltr" xml:lang="fr" 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     3
xmlns="http://www.w3.org/1999/xhtml" lang="fr">
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     4
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     5
<head>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     6
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     7
</head>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     8
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     9
<body>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    10
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    11
	<div style="width:650px;font-family: 'Trebuchet MS', 'Helvetica', 'Arial',  'Verdana', 'sans-serif';">
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    12
	<h1>SimplePlayer </h1>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    13
	Iri SimplePlayer is a javascript's Widget interface to augment existing flash or html5 video player. 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    14
	It's made to show time annotation and different metadata on video.
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    15
	To implement it on your website it's 's really simple.
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    16
	You just need to insert a div and a script, like the exemple under this lines.<br/><br/>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    17
	This player was test on : firefox 3.6.9 / Chrome 6.0.472.55 / Safari 5.0.2 / Internet Explore 8<br/><br/>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    18
	This Player is a freeSoftware under <a href="http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"/> CeCILL-C</a> license.
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    19
	This program is made by <a href="http://www.iri.centrepompidou.fr/" >Institut de recherche et d innovation</a>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    20
	more information on <a href="http://www.iri.centrepompidou.fr/outils/agmented-player/" >this page</a>.
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    21
	<br/><br/>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    22
	</div>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    23
	
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    24
 <!-- START Integration  ###################################### -->
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    25
 <!-- SIMPLE PLAYER EXPERIMENTATION -->
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    26
	<script type="text/javascript" src="../src/js/LdtPlayer.js"></script> 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    27
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    28
	<div id="LdtPlayer"></div>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    29
	
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    30
	<script  type="text/javascript">	
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    31
		var config = {
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    32
						metadata:{
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    33
							format:'cinelab',
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    34
							src:'http://exp.iri.centrepompidou.fr/franceculture/franceculture/ldt/cljson/id/ef4dcc2e-8d3b-11df-8a24-00145ea4a2be',
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    35
							load:'jsonp'},
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    36
						gui:{
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    37
							width:650,
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    38
							height:1,
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    39
							mode:'radio',
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    40
							container:'LdtPlayer',
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    41
							debug:false,
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    42
							css:'../src/css/LdtPlayer.css'},
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    43
						player:{
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    44
							type:'jwplayer',
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    45
							src:'../res/swf/player.swf'}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    46
					};
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    47
		__IriSP.init(config);     
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    48
	</script>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    49
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    50
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    51
<!-- END  ################  ###################################### -->
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    52
 </body>
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    53
 </html>