This is a message.

Does Flowplayer support Limelight CDN Created Sep 22, 2009

This thread is solved

Views: 2851     Replies: 3     Last reply Sep 22, 2009  
You must login first before you can use this feature

codeamatic

Posts: 4

Registered:
Sep 21, 2009

Does Flowplayer support Limelight CDN

Posted: Sep 22, 2009

The company I work for has an account with Limelight which we use for a great deal of video streaming. We currently use swfobject and custom flash video players for 90% of our work but would like to switch to another flash player with the ability to custom configure it. Obviously we are interested in purchasing the 100 license version. I downloaded the free player but have had no luck of getting any of our videos to stream from limelight via rtmp. If anyone has had success or can just let me know whether it's possible or not and if so, point me towards instructions that would be much appreciated...

traneHead

Posts: 5

Registered:
Sep 21, 2009

» Does Flowplayer support Limelight CDN

Posted: Sep 22, 2009

Reply to: Does Flowplayer support Limelight CDN, from codeamatic
You are using the rtmp plugin right?

For me (not using Limelight but another rtmp-provider) this works


$f("player", "flowplayer-3.1.3.swf", {
      plugins: {
        rtmp: { 
          url: 'flowplayer.rtmp-3.1.2.swf' 
        },
       /* controls config etc
           ...
       */
      },
      clip: {scaling: 'fit'},
      playlist: [
        { //clip 1
          provider: 'rtmp',
          netConnectionUrl: 'rtmp://myrtmp-provider.com/path/_to_/ncode/',
          url: 'myMovie_372', //removed .flv suffix
          autoPlay: true
        },
        // more clips
      ]
});


codeamatic

Posts: 4

Registered:
Sep 21, 2009

» » Does Flowplayer support Limelight CDN

Posted: Sep 22, 2009

Reply to: » Does Flowplayer support Limelight CDN, from traneHead
THANKS A LOT for the input traneHead...that definitely did the trick for me...works like a charm...only thing left to do is prepare some tests and assessments for the team lead..thanks so much...

codeamatic

Posts: 4

Registered:
Sep 21, 2009

» » Does Flowplayer support Limelight CDN

Posted: Sep 22, 2009

Reply to: » Does Flowplayer support Limelight CDN, from traneHead
THANKS A LOT for the input traneHead...that definitely did the trick for me...works like a charm...only thing left to do is prepare some tests and assessments for the team lead..thanks so much...