/**
 * Example external configuration file. 
 * You can freely categorize these nodes
 */ 
var conf = { 
     
    // default clip configuration 
    defaults: { 
           onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        }
 
}, 
 
    playlist: [  
        // this first PNG clip works as a splash image  
        {  
            url: 'swf/splash.gif',   
            scaling: 'scale' 
        },  
        // second clip is a video. when autoPlay is set to false the splash screen will be shown  
        {  
               url: 'fcsevastopol.sdp',  
                live: true,  
            // configure clip to use CDN as our provider, it uses our rtmp plugin  
            provider: 'rtmp',  
        autoPlay: true, 
        autoBuffering: true,
     onBufferEmpty: function() { 
            info.innerHTML = "Низкая скорость интернет подключения"; 
        } 
}
    ],         
 
     
    // my skins 
    skins: {         
        live:  { 
             // display properties  
            height: 25,  
                    width: 400, 
            width: '98%',   
                  bottom: 5,  
                    left: '50%',  
                    borderRadius: 15,                 
            backgroundColor: '#666666',  
                backgroundGradient: 'low',  
            buttonColor: '#333333', 
            opacity: 0, 
            // controlbar-specific configuration  
            autoHide: 'always', 
            // which buttons are visible and which are not?  
            all:false, 
            stop:false,  
                playlist:false, 
            play:false, 
             time: true, 
            mute:true, 
            volume:true, 
            fullscreen:true, 
            // tooltips configuration  
            tooltips: {  
                  
                // enable english tooltips on all buttons  
                buttons: true,  
                  
                // customized texts for buttons  
                play: 'Воспроизвести',  
                pause: 'Пауза',  
                fullscreen: 'В полноэкранном режиме',  
        fullscreenExit: 'Выбод из полноэкранного режима', 
        mute: 'Без звука', 
        unmute: 'Включить звук' 
            },  
              
            // background color for all tooltips  
            tooltipColor: '#112233',  
              
            // text color  
            tooltipTextColor: '#8899ff'   
 
            } 
         
        // setup additional skins here ...         
    }, 
    rtmp: { 
        video1:{ 
                    url: 'swf/flowplayer.rtmp-3.1.3.swf', 
  
                  // netConnectionUrl defines where the streams are found  
                        netConnectionUrl: 'rtmp://86.111.95.5/rtplive',
			proxytype: 'http' 
            } 
        }, 
    gatracker: { 
        tracker1: {  
            url: 'swf/flowplayer.GoogleTracker-3.1.5.swf',  
            labels: {  
                    start: 'Start',      
                    play: 'Play',      
                    pause: 'Pause',      
                    resume: 'Resume',      
                    seek: 'Seek',      
                    stop: 'Stop',      
                    finish: 'Finish',      
                    mute: 'Mute',      
                    unmute: 'Unmute',      
                    fullscreen: 'Full Screen',      
                    fullscreenexit: 'Full Screen Exit'      
                    },  
                debug: true,  
                trackingMode: 'Bridge',  
		bridgeObject: '_tracker'
        } 
},
	content: {

    	myContent: { 
 
        // location of the plugin 
        url: 'swf/flowplayer.content-3.1.0.swf', 
 
        // display properties 
        height: 113,
	bottom: 35, 
        width: '98%', 
 
        // styling properties 
        borderRadius: 10,
	closeButton: true,
 
        // "inline" styling (overrides external stylesheet rules), 
        /* 
            initial HTML content. content can also be fetched from the HTML document 
            like we did in the example above. see the source code for that. 
        */ 
        html: '<img src="http://www.boschsecurity.com/dealer/Image.ashx?guid=6720ed83-dbf4-40fe-8520-de4390c9234f" align="top" /><p class="h1">Интернет трансляцию футбольных матчей ПФК "СЕВАСТОПОЛЬ" обеспечивает компания "РОМСАТ". <br> Комплексные решения для Интернет-вещания. <br> Тел: +38(044)4231983 <br>  Е-mail: dap@romsat.ua <br> <a href="http://www.romsat.ua">www.romsat.ua</a></p>' 
        // clicking on the plugin hides it (but you can do anything) 
        // onClick: function() { 
        //    this.hide(); 
        // } 
    } 
}
	
} 
