This is a message.

Forum user: valse

Basic information

Registered Apr 14, 2009
Last login May 21, 2010
Forum posts 6
Direct URL http://www.flowplayer.org/forum/users/9927

Latest forum posts

Posts:

Registered:

» click on link to play movie

Posted: May 21, 2010

I had a similar problem: flowplayer with playlist and some urls with:


$("#url1").click(function(){
   $f().play(0);
   return false;
});

$("#url2").click(function(){
   $f().play(1);
   return false;
});

all works fine but if I go to url2 then re-click to url1 I had this error:

"uncaught exception: Error in Actionscript. Use a try/catch block to find error."

I change my javascript with:


$("#url1").click(function(){
   try {
      $f().play(0);
   } finally {
      return false;
   }
});

$("#url2").click(function(){
   try {
      $f().play(1);
   } finally {
      return false;
   }
});

and all was ok... but I don't know why :-)

Posts:

Registered:

bwcheck returns max bandwidth: 0

Posted: Apr 21, 2010

Hi...

I'm trying to use bwcheck on dynamic streaming mode but the only difference with this demo:

http://flowplayer.org/demos/plugins/streaming/bwcheck-dynamic.html

is that on the log I can see:

switch up current max bandwidth: 0

and if I try to change the bitrate manually the stream change it but start from beginning.

Why the max bandwith value can be 0?

Can be a fms issue? Some port to open?

Thanks

Posts:

Registered:

» » Bandwidth detection url pattern fails

Posted: Dec 23, 2009

great!

it works... I replace urlPattern with urlPatternNoExt and it resolves the url correctly!

I suggest to insert it on the bwcheck documentation page ;-)

Posts:

Registered:

Bandwidth detection url pattern fails

Posted: Nov 11, 2009

Hi...

...I'm working with last version of rtmp and bwcheck plugin embedding flowplayer with en external configuration file.

When I try to use bwcheck with a custom url pattern it didn't match with my setting (I see that with safari log): if I try to downgrade with flowplayer 3.1.2, rtmp 3.1.0 and a dev version of bwcheck (3.1.3-dev3) all works fine.

Marco

Posts:

Registered:

FMS Dynamic stream starts low and doesn"t switch

Posted: Jun 25, 2009

Hi...

...I'm testing Dynamic stream switching with FMS 3.5; the manual switch is ok and I can change bitrate on my own.

I noticed that when start event onBwDone works (it returns: "Your speed is: 3429; bitrate: 2048") but after less than a second it triggers onStreamSwitch that changes my bitrate to 256 (my lowest) and doesn't check anymore.

You can check it here:

http://www.kframeinteractive.com/streaming/

Thanks
Marco

Posts:

Registered:

jquery.scrollable next not disabled at start

Posted: Apr 14, 2009

Hi...

...I'm using your plugin into my site where I have a thumb list.

Sometimes the size of elements doesn't match the maximum size of the scrollable page at startup and the "next" button hasn't the disabled class associated.

Thanks