test/integration/init-radio.htm
author hamidouk
Wed, 26 Oct 2011 11:32:21 +0200
branchpopcorn-port
changeset 147 955119f901b4
parent 141 becd5f52fa24
child 158 1813e6e4f0d6
permissions -rw-r--r--
added a function to search annotations to the json serializer.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="ltr" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml" lang="fr">

<head>
<title>Test d'intégration de l'initialisation</title>
</head>

<body>

	<div style="width:650px;font-family: 'Trebuchet MS', 'Helvetica', 'Arial',  'Verdana', 'sans-serif';">
	<h1>MetaDataPlayer </h1>
	Test d'intégration de l'initialisation.
	</div>
	
	
 <!-- START Integration  ###################################### -->
 <!-- SIMPLE PLAYER EXPERIMENTATION -->
	<script type="text/javascript" src="../../build/LdtPlayer-release.js" type="text/javascript"></script> 
	<script type="text/javascript" src="../../unittests/mockSerializer.js" type="text/javascript"></script> 
	<script src="../../res/js/jquery.min.js" type="text/javascript"></script>
	<script src="../../res/js/jquery.tools.min.js" type="text/javascript"></script>
	<script src="../../res/js/jquery-ui.min.js" type="text/javascript"></script>
	
	<div id="video"></div>
	<div id="LdtPlayer"></div>
	
	<script  type="text/javascript">
		$(document).ready(function() {
		var config = {						
				gui:{
						width:650,
						height:480,							
						container:'LdtPlayer',
						css:'../../src/css/LdtPlayer.css',
					  widgets: [
						{type: "PlayerWidget", // please note that type refers directly to the constructor of the widget.
						 mode: "radio",
						 metadata:{
						  format:'cinelab',
						  src:'../test.json',
						  type:'json'}
						},
						
					   {type: "SegmentsWidget", 
						 metadata:{
						  format:'cinelab',
						  src:'../test.json',
						  type:'json'}
						},
					   {type: "AnnotationsWidget", 
						 metadata:{
						  format:'cinelab',
						  src:'../test.json',
						  type:'json'}
						}		
					  ]
			  },
			player:{
			type:'jwplayer', // player type
              container: 'PopcornContainer',
              // the rest is player-dependent configuration options.
              file : "video/franceculture/franceculture_retourdudimanche20100620.flv", 
              streamer: "rtmp://media.iri.centrepompidou.fr/ddc_player/", 
              flashplayer : '../libs/player.swf',
              live: true, 
              "controlbar.position" : "none", 
              height: 300, 
              width: 200, 
              provider: "rtmp" 
            }
		};
		
		IriSP.loadLibs(IriSP.lib, config.gui.css, 
			function() { 	var pop = IriSP.configurePopcorn(config.player);
							var widgets = IriSP.configureWidgets(pop, config.gui); });
		
		});
	</script>
	
	
 </body>
 <div id="PopcornContainer"></div>
 </html>