// JavaScript Document
flowplayer("player", "http://distinguished.utk.edu/flowplayer/flowplayer-3.1.4.swf", { 
    playlist: [ 

        // this first PNG clip works as a splash image
        {
            url: 'http://distinguished.utk.edu/images/olga.jpg',
            scaling: 'orig'
        }, 

 {
        //url: 'fac_senate09',
        url: 'mp4:DistinguishedFellowship',
        // configure clip to use influxis as our provider, it uses our rtmp plugin
        provider: 'rtmp',
        autoPlay: false,
        captionUrl: 'http://distinguished.utk.edu/docs/DistinguishedFellowship.xml'
    }
	],

    // streaming plugins are configured under the plugins node
    plugins: {
	    captions: {
            url: 'http://distinguished.utk.edu/flowplayer/flowplayer.captions-3.1.4.swf', 

            // pointer to a content plugin (see below)
            captionTarget: 'content'
        },
        content: {
            url:'http://distinguished.utk.edu/flowplayer/flowplayer.content.swf',
            bottom: 25,
            width: '90%',
            height:50,
            backgroundColor: 'transparent',
            backgroundGradient: 'low',
            borderRadius: 4,
            border: 0,
			display: 'none', 

            style: {
                'body': {
                fontSize: '14',
                fontFamily: 'Arial',
                textAlign: 'center',
                color: '#000000'
                }
            }
        },
         // here is our rtpm plugin configuration
        rtmp: {
            url: 'http://distinguished.utk.edu/flowplayer/flowplayer.rtmp-3.1.3.swf', 

            // netConnectionUrl defines where the streams are found
            // netConnectionUrl: 'rtmp://fms1.ites.utk.edu/utk'
            netConnectionUrl: 'rtmp://fms1.ites.utk.edu/utk'
        }
    }
});

