/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = { 
  // default clip configuration 
  defaults: { 
      scaling: 'fit',
      autoPlay: false, 
      autoBuffering: false, 
      bufferLength: 3,
      url: '/Flex-Splash.m4v',
      provider: 'rtmp',
      connectionProvider: 'secure'
  }, 
  contents: { 
      url:'flowplayer.content-3.1.0.swf', 
      top: 180, 
      opacity:0.6, 
      border:0,
      backgroundColor: 'transparent', 
      backgroundGradient: 'none', 
      style: {  
	  body: {  
	      fontSize: 24,  
	      fontFamily: 'Arial', 
	      textAlign: 'center', 
	      color: '#808080' 
	  }  
      }
  }, 
  version: [10, 1],  
  onFail: function(version)  {  
        document.getElementById("player").innerHTML =  
            'Your Flash version ' + version +  
            ' is too old to support high quality (H.264) videos. Go to <a href="http://www.adobe.com/">www.adobe.com</a> to upgrade to the latest version Flash.' 
        ;     
    },
  plugins: {
    h264streaming: {
      url: 'flowplayer.h264streaming-3.0.5.swf'
    },
    controls: {
      url: 'flowplayer.controls-3.0.3.swf',
      // which buttons are visible and which not ?
      play:true,
      fullscreen:true,
     // scrubber is a well known nickname to the timeline/playhead combination
      scrubber: true
    }
  } 
}


