test/integration/jwplayer-video.htm
author hamidouk
Thu, 10 Nov 2011 11:04:43 +0100
branchpopcorn-port
changeset 221 2a83d308dba6
parent 215 e03f5f886f52
child 227 0eb060a3b656
permissions -rw-r--r--
added short descriptions to all the template files.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
215
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     2
<html dir="ltr" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml" lang="fr">
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     3
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     4
<head>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     5
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     6
</head>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     7
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     8
<body>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
     9
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    10
	<div style="width:650px;font-family: 'Trebuchet MS', 'Helvetica', 'Arial',  'Verdana', 'sans-serif';">
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    11
	<h1>MetaDataPlayer </h1>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    12
	Test d'intégration du widget du player avec Popcorn (jwplayer).
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    13
	</div>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    14
	
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    15
	
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    16
 <!-- START Integration  ###################################### -->
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    17
 <!-- SIMPLE PLAYER EXPERIMENTATION -->
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    18
	<script type="text/javascript" src="../../build/LdtPlayer-release.js" type="text/javascript"></script> 
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    19
	<script src="../../res/js/jquery.min.js" type="text/javascript"></script>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    20
	<script src="../../res/js/jquery.tools.min.js" type="text/javascript"></script>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    21
	<script src="../../res/js/jquery-ui.min.js" type="text/javascript"></script>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    22
	
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    23
	<div id="video"></div>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    24
	<div id="LdtPlayer"></div>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    25
	
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    26
	<script  type="text/javascript">
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    27
		$(document).ready(function() {
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    28
		var config = {
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    29
						gui:{
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    30
							width:650,
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    31
							height:1,
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    32
							mode:'video',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    33
							container:'LdtPlayer',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    34
							debug:true,
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    35
							css:'../../src/css/LdtPlayer.css',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    36
              widgets : [{ 
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    37
                  type: "PlayerWidget", // please note that type refers directly to the constructor of the widget.
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    38
                  mode: "radio",
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    39
                  metadata:{
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    40
                  format:'cinelab',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    41
                  src:'../test.json',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    42
                  type:'json'}
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    43
              }]},
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    44
						player:{
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    45
							type:'jwplayer',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    46
							flashplayer:'../../res/swf/player.swf',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    47
              file:'http://127.0.0.1/mdp/test/trailer.mp4',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    48
              provider:'video',
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    49
              duration: 50}
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    50
					};
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    51
		
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    52
          IriSP.loadLibs(IriSP.lib, config.gui.css, function() { 	
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    53
              var layoutManager = new IriSP.LayoutManager(config.gui.container);
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    54
              var pop = IriSP.configurePopcorn(layoutManager, config.player);
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    55
              
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    56
              var widgets = IriSP.configureWidgets(pop, layoutManager, config.gui); });
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    57
    
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    58
    });
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    59
	</script>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    60
	
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    61
	
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    62
 </body>
e03f5f886f52 renamed and trimmed the integration tests.
hamidouk
parents:
diff changeset
    63
 </html>