flowplayer(

			"video-player",
			"lib/flash/flowplayer-3.2.4.swf",

{
		    "wmode": 'transparent',

		    "canvas": {
		        "backgroundColor": '#000000'
		    },

          

		    "plugins": {

                 
		        "controls": {
		            "borderRadius": '0px',
		            "sliderGradient": 'none',
		            "bufferGradient": 'none',
		            "volumeSliderColor": '#000000',
		            "timeBgColor": '#555555',
		            "progressGradient": 'medium',
		            "tooltipColor": '#999999',
		            "backgroundGradient": [1, 1, 1, 1, 1],
		            "buttonOverColor": '#9c9c9c',
		            "tooltipTextColor": '#ffffff',
		            "backgroundColor": '#FFFFFF',
		            "volumeSliderGradient": 'none',
		            "buttonColor": '#6e6e6e',
		            "timeColor": '#ffffff',
		            "sliderColor": '#000000',
		            "durationColor": '#ffffff',
		            "progressColor": '#bf1015',
		            "bufferColor": '#b3bdb6',
		            "height": 24,
		            "opacity": 1.0,

		            // tooltips configuration
		            "tooltips": {

		                // enable english tooltips on all buttons
		                "buttons": true,

		                // customized texts for buttons
		                "play": 'Jouer',
		                "pause": 'Pause',
		                "fullscreen": 'Plein écran',
		                "fullscreenExit": 'Sortir du mode plein écran',
		                "mute": 'Mettre en sourdine',
		                "unmute": 'Mettre le son'


		            }
                    
		        },
             
		        // the RTMP plugin
		        "rtmp": {

		            "url": 'lib/flash/flowplayer.rtmp-3.2.3.swf'
		            // netConnectionUrl has our CloudFront domain name + 'cfx/st'
		           // "netConnectionUrl": 'rtmp://s1hqwaug9eu495.cloudfront.net/cfx/st'
		        }
		    },


            "playlist": [

	
		            // this first PNG clip works as a splash image
		            {
		            "url": myVid + "_big.jpg",
                    "scaling": 'orig'
                  
		            },
		
		            // second clip is a video. when autoPlay is set to false the splash screen will be shown
		            {

		            "url": myVid, 
			            "autoPlay": false, 
			
			            // video will be buffered when splash screen is visible
			            "autoBuffering": true 
		            } 
                    
                   
                   
	        ],


			        "play": { "replayLabel": 'Rejouer' }

           
		   
});



