﻿// video player
function playShowReel(url) {
    flowplayer("fms", { src: '/Flash/flowplayer-3.1.1.swf', wmode: 'opaque' }, {
        clip: {
            url: url,
            // configure clip to use influxis as our provider, it uses our rtmp plugin 
            provider: 'influxis',
            autoplay: "false"
        },
        // streaming plugins are configured under the plugins node 
        plugins: {
            // here is our rtpm plugin configuration 
            influxis: {
                url: '/Flash/flowplayer.rtmp-3.1.0.swf',
                // netConnectionUrl defines where the streams are found 
                netConnectionUrl: 'rtmp://flashy.Astream.com/H3D/'
            }
        }
    });
}

