You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: jasperkooij

Basic information

Registered Aug 26, 2009
Last login Nov 6, 2009
Forum posts 9
Direct URL http://www.flowplayer.org/forum/users/14696

Latest forum posts

Posts:

Registered:

need help doing a secure stream

Posted: Nov 3, 2009

I need help doing a secure flowplayer with SimpleCDN.

I've emailed :

If you need a custom Secure Streaming plugin where the shared secret is compiled in, drop us a line at info@flowplayer.org.
We will compile you a custom plugin with the secret compiled in, the price of this service is 150.00 $ (or 110 ?).

But I have not heard anything

Can anyone help me?

Posts:

Registered:

Need help doing secure flowplayer

Posted: Nov 2, 2009

I need help doing a secure flowplayer with SimpleCDN.

I've emailed :

If you need a custom Secure Streaming plugin where the shared secret is compiled in, drop us a line at info@flowplayer.org.
We will compile you a custom plugin with the secret compiled in, the price of this service is 150.00 $ (or 110 ?).

But I have not heard anything

Can anyone help me?

Posts:

Registered:

» » » close overlay window by button action in flash

Posted: Oct 26, 2009

anyone any idea where to look for an answer?

Posts:

Registered:

» » close overlay window by button action in flash

Posted: Oct 22, 2009

I'm using flash CS4 with an imported flash file using AS2

Posts:

Registered:

» close overlay window by button action in flash

Posted: Oct 21, 2009

anyone any hint where I should be looking?

Posts:

Registered:

close overlay window by button action in flash

Posted: Oct 19, 2009

How do I make an overlay window close by clicking on a button in the flash movie in the overlay.

The overlay is called by:

<!-- overlay -->
<div class="simple_overlay" id="intro">
<div class="details">
href="#"
style="display:block;width:900px;height:600px;"
id="playintro">

</div>
<script language="JavaScript">
flowplayer("playintro", "/intro_V4_work.swf");
</script>

</div>
<!-- end overlay -->
<script>
// What is $(document).ready ? See:http://flowplayer.org/tools/using.html#document_ready
$(document).ready(function() {

$("img[rel]").overlay();
});
</script>

From within flash I tried:

on (release) {
fscommand('$("img[rel]").overlay().close;');
}

Any idea?

Posts:

Registered:

splash image from frame 1 when using rtmp not possible?

Posted: Oct 6, 2009

I want to avoid using an image on the splash screen of the video. I am going to be delivering the video's from simplecdn over rtmp and i have been using the following config to start testing, which does not produce the splash image.

Is it indeed correct that with rtmp I have to create an image to use as splashscreen?

Here is my config:

<a style="display:block;width:640px;height:384px;" id="flowplayerexample"></a>
<script type="text/javascript">
$f("flowplayerexample", "/swf/flowplayer-3.1.3.swf", { 
    clip: {  
        url: 'mp4:floralive/ImObservingaPhenomanontry4.mov',  
        provider: 'simplecdn',  
		autoPlay: false,
		autoBuffering: true,
		accelerated: true,
		scaling: 'fit'
    }, 
    // streaming plugins are configured under the plugins node  
    plugins: { 
        simplecdn: {  
            url: '/swf/flowplayer.rtmp-3.1.2.swf',  
            netConnectionUrl: 'rtmp://e1f1.simplecdn.net/play'  
        } 
    }     
});
</script>

Posts:

Registered:

» » delay option?

Posted: Oct 6, 2009

worked great, thanks!

Posts:

Registered:

delay option?

Posted: Oct 3, 2009

great example thanks.

How would I go about having the overlay come in delayed by 5 seconds?

I have a situation where I have
a. flowplayer video in the content
b. button in the sidebar that triggers an overlay
c. need the same button in the sidebar triggered after 5 second delay after the document loads

The above example has been helpful but i can't get my head around implementing a delay