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

Your preferred username that is used when logging in.

Can I turn off the Loading-Progress-Circle Created Nov 18, 2008

This thread is solved

Views: 4927     Replies: 19     Last reply Apr 5, 2011  
You must login first before you can use this feature

godfather

Posts: 7

Registered:
Nov 11, 2008

Can I turn off the Loading-Progress-Circle

Posted: Nov 18, 2008

Hi again,
now I am triing to integrate the floy-player into a web-site. This works fine. With a div-tag I can set the position on a website.

We have a picture as background-graphics. We animated a part of the picture and then converted it to flv. After this we changed the position of the player, so that it "overlays" the original part of the background. The animation is loaded and plays fine.

But after the animation ended there is the loading-progress-circle and then the animation repeats.

Is there a way not to show that the flowplayer is loading?

thanks in advance.

godfather

Posts: 7

Registered:
Nov 11, 2008

» Can I turn off the Loading-Progress-Circle

Posted: Nov 22, 2008

Reply to: Can I turn off the Loading-Progress-Circle, from godfather
Hi again,
I wonder that there is no answer, yet. Sorry, if my Englsh is not good enough to give you a more detailed description of what I am triing. Perhaps the question too hard to understand?

Or is there even no possibility to turn off the caching-circle?

Thanks

Godfather

Tero
Author of jQuery Tools and this website + JavaScript developer of Flowplayer.

Posts: 1867

Registered:
Nov 16, 2007

» » Can I turn off the Loading-Progress-Circle

Posted: Nov 22, 2008

Reply to: » Can I turn off the Loading-Progress-Circle, from godfather
get the latest version RC4 and set logo property to null or it's opacity to 0.

godfather

Posts: 7

Registered:
Nov 11, 2008

Now even looping does not work anymore - and the LPC is still present

Posted: Nov 24, 2008

Reply to: » » Can I turn off the Loading-Progress-Circle, from tipiirai
Thanks for your answer, but that hint does not work.
Now, with the new realease Candidate even the AutoLoop does not work anymore.

This is the Code I wrote:


<script src="../flowplayer/flowplayer.min.js"></script>

<a href="My.flv" style="display:block;width:90px;height:110px"id="player"></a>
<script language="JavaScript"> 
	flowplayer("player", "js/flowplayer.swf",{
			
		plugins: {
			controls: null
		},
		clip: {
			autoPlay: true,
			autoBuffering: true,
	  	},
		logo: {
			opacity: 0
		}

			
	}); 
</script>

You can take a look at what I am triing to do at:

www.goddess-universe.com/flashtest1

Their faces should move continuously (without the loading-bar after a sequnce ended and is loaded again). If they stop for a while after the sequence, that soesn't matter - only the loading bar "breaks" the picture.
I really don't know how to fix it.

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» Now even looping does not work anymore - and the LPC is still present

Posted: Nov 24, 2008

Reply to: Now even looping does not work anymore - and the LPC is still present, from godfather
Yes we changed the behavior so that by default it stops at the end of a clip and shows the "Play again" button. Try this:

    flowplayer("player", "js/flowplayer.swf",{ 
             
        plugins: { 
            controls: null 
        }, 
        clip: { 
            autoPlay: true, 
            autoBuffering: true,
            onBeforeFinish: function() {
                // returning false prevents the default
                // behavior associated with this event --->
                // it will loop instead of stop at finish
                return false; 
            } 
          }, 
        logo: { 
            opacity: 0 
        } 
 
             

godfather

Posts: 7

Registered:
Nov 11, 2008

» » Now even looping does not work anymore - and the LPC is still present

Posted: Nov 24, 2008

Reply to: » Now even looping does not work anymore - and the LPC is still present, from Anssi
OK, now looping works again. Thanks a lot.

But the Loading-Progress-Circle still is present.

I'll change the scripting and upload it again, so you can see the LPC.

Hope you can help me. It just does not look fine.

Please check the link again

http://www.goddess-universe.com/flashtest1/

Thanks a lot in advance

Godfather

Tero
Author of jQuery Tools and this website + JavaScript developer of Flowplayer.

Posts: 1867

Registered:
Nov 16, 2007

api (Flash coder) is on vacation

Posted: Nov 27, 2008

Reply to: » » » Now even looping does not work anymore - and the LPC is still present, from godfather
I just send a notification to my fellow developer who is responsible for this. He is on a vacation at this point - but may do something remotely.

godfather

Posts: 7

Registered:
Nov 11, 2008

» api (Flash coder) is on vacation

Posted: Nov 27, 2008

Reply to: api (Flash coder) is on vacation, from tipiirai
Thanks for your answer. But it seems that we found a way to solve the "problem".

You just have to add the option

play: null

:-D

Don't know if that was planned so - but this works.

So - he should just enjoy his vacation ;-)

Godfather

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» » api (Flash coder) is on vacation

Posted: Nov 27, 2008

Reply to: » api (Flash coder) is on vacation, from godfather
Yes, hello from Suomutunturi, Lapland, Finland. Setting play: null does indeed disable the buffering animation and the play button overlay.

godfather

Posts: 7

Registered:
Nov 11, 2008

» » » api (Flash coder) is on vacation

Posted: Nov 27, 2008

Reply to: » » api (Flash coder) is on vacation, from Anssi
wow - a response from your vacation - I think you live for your product, don't you :-D

That works really great - seems now that even the loop works faster.

How is Finland - never been there but I will one day - there is not such a far distance between germany and finnland. Could you see some polar lights?

Thanks a lot for your engagement.

Godfather

kakoni

Posts: 1

Registered:
Dec 18, 2008

» » » api (Flash coder) is on vacation

Posted: Dec 18, 2008

Reply to: » » api (Flash coder) is on vacation, from Anssi
Hi! So I'm trying to show live feed from ffserver using flowplayer.
I am passing play: null to flowplay control plugin but no luck, this loading circle just stays there..

Any ideas?;)

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

play: null

Posted: Dec 18, 2008

Reply to: » » » api (Flash coder) is on vacation, from kakoni
The play: null setting goes to the root of the configuration object - not under the controls plugin:


$f("player", "/swf/flowplayer-3.0.2.swf", {     
    play: null
});

rottitime

Posts: 1

Registered:
Sep 28, 2009

play: null

Posted: Sep 28, 2009

Reply to: play: null, from Anssi
hi, it still doenst work. can you copy the below into your browser and test it :(


<script type="text/javascript" src="http://flowplayer.org/js/tools/1.1.1/all/jquery.tools.min.js"></script>
<script type="text/javascript" src="http://static.flowplayer.org/js/global-0.34.js"></script>
<a  href="http://flowplayer.org/video/flowplayer-700.flv"  style="display:block;width:425px;height:300px;" id="player"> </a>
<script>
flowplayer("player", "http://flowplayer.org/swf/flowplayer-3.1.3-dev.swf",  { 
    clip: {    
        autoPlay: true,  
        autoBuffering: true,
		duration: 2, 
		onBeforeFinish: function ()  { return false; }
		
    },
	logo: { 
            opacity: 0
    },
	play: null,
	plugins: { 
    	controls: null
	}
});
</script>

Christian Ebert
Flowplayer support

Posts: 2803

Registered:
May 27, 2008

» play: null

Posted: Sep 28, 2009

Reply to: play: null, from rottitime
You can't customize the logo in non-commercial versions; apart from that:

Flowplayer forum example

HTML setup for the player

<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.6.js"></script>

<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
	<img src="path/to/splash_image" />
</a>


JavaScript coding

Following script will install Flowplayer into our player container


<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer-3.2.7.swf",{
play: null
});
</script>


I don't see any play button or loading animation.

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» play: null

Posted: Sep 28, 2009

Reply to: play: null, from rottitime
There was a bug in using play: null and controls: null at the same time. This is now fixed in 3.1.4-dev. See it in action below.

Flowplayer forum example

HTML setup for the player

<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.6.js"></script>

<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
	<img src="path/to/splash_image" />
</a>


JavaScript coding

Following script will install Flowplayer into our player container


<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer-3.1.4-dev.swf",{

 clip: {     
        autoPlay: true,   
        autoBuffering: true, 
        onBeforeFinish: function ()  { return false; } 
         
    }, 
    logo: {  
            opacity: 0 
    }, 
    play: null, 
    plugins: {  
        controls: null 
    }
});
</script>


DiNASTY

Posts: 10

Registered:
Apr 13, 2009

» » play: null

Posted: Nov 19, 2009

Reply to: » play: null, from Anssi
Does this also work when you have wmode: 'opaque' set? The spinning "loading" circle appears at the top right of my player even with logo: null, play: null, and controls: null.

ecoimpresoras

Posts: 4

Registered:
Feb 24, 2011

Turn off the loading progress circle

Posted: Apr 5, 2011

Reply to: Can I turn off the Loading-Progress-Circle, from godfather
I think it is so easy that just add null to the play in your configuration.impresoras cd