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

Your preferred username that is used when logging in.

Sometimes black area instead of movie clip (commerical version) Created Dec 7, 2009

This thread is solved

Views: 4037     Replies: 11     Last reply Apr 1, 2010  
You must login first before you can use this feature

computix

Posts: 41

Registered:
Nov 19, 2009

Sometimes black area instead of movie clip (commerical version)

Posted: Dec 7, 2009

We have the following problem with FlowPlayer commercial version:

Browser IE 8, sometimes instead of the FlowPlayer movie clip, there is only a black area. When we reload the page, the player and movie does work.

Here is the code we use for the StreamZilla CDN:


<script type="text/javascript" src="flowplayer-3.1.4.min.js"></script> 
<a style="display:block;width:640px;height:384px;" id="player" alt="Hier klicken um Video abzuspielen"></a>  
<script language="JavaScript">flowplayer("player", "flowplayer.commercial-3.1.5.swf",
{
key: '#$xxxxxxxxxxxxxxxxx',
contextMenu: ['computix GmbH Videoplayer'],
clip: {
url: escape('http://rrr.sz.xlcdn.com/?user=computix&file=n300_web.f4v&type=streaming&service=wowza&protocol=rtmp&port=80&output=smil'),
provider: 'rtmp',
autoPlay: 'true'
},
plugins: {   
smil: { url: 'flowplayer.smil-3.1.3.swf' }, 
rtmp: { url: 'flowplayer.rtmp-3.1.3.swf' }}
});
</script>

Any help for this problem?

Thank you in advance!

computix

Posts: 41

Registered:
Nov 19, 2009

» Sometimes black area instead of movie clip (commerical version)

Posted: Dec 9, 2009

Reply to: Sometimes black area instead of movie clip (commerical version) , from computix
We did use the method:


<script language="JavaScript">flowplayer("player", "flowplayer.commercial-3.1.5.swf",
{
key: '#$4556d27490ec0ca684b',
contextMenu: ['computix GmbH Videoplayer'],
clip: {
url: "n300_web.f4v",
autoPlay: true
}
});
</script>

Which doesn't work.

After reviewing some suggestions from user EDGE I saw that he suggests a different start of the javascript:


$f("player", {src: "flash//flowplayer-3.1.5.swf", cachebusting: true}, ...

I did change this to $f instead of flowplayer and also the cachebusting parameter and currently it does work at least here with IE8 and Vista. I have to test it today at the office with XP and IE8.

Will let you know later if it works.

Thank you.

computix

Posts: 41

Registered:
Nov 19, 2009

» » Sometimes black area instead of movie clip (commerical version)

Posted: Dec 9, 2009

Reply to: » Sometimes black area instead of movie clip (commerical version) , from computix
Unfortunately the problem is still there with XP and IE8.0.

It looks like it happens now not everytime, but at least in about 10 % of the case.

computix

Posts: 41

Registered:
Nov 19, 2009

» » » Sometimes black area instead of movie clip (commerical version)

Posted: Jan 12, 2010

Reply to: » » Sometimes black area instead of movie clip (commerical version) , from computix
Since Flash Player update 10,0,42,34 the problem is solved.

It looks like there is or was a problem with Flash Player and not with FlowPlayer or both together, it's difficult to say.

jupili
Web developer and tinkerer.

Posts: 1

Registered:
Jan 13, 2010

Potential (hacky) solution

Posted: Jan 13, 2010

Reply to: » » » Sometimes black area instead of movie clip (commerical version) , from computix
I've recently encountered this in IE 7 running an older version of flash (<10). I'd like to support Flash 9 in my app so below is a potential workaround that seems to be doing the trick for us...so far. The fact that this is working indicates to me this is some sort of caching issue whether by flash or the browser.


var flashversion = getFlashVersion().split(',').shift(); 
var randomizer =  "";
if (flashversion < 10){
    randomizer = "?rdm=" + Math.random() * 99999;
}
     
flowplayer(
    "container", 
    "flowplayer.swf" + randomizer,
    {
        ...
    }
)

Here's the javascript snippet for detecting flash version:
http://www.prodevtips.com/2008/11/20/detecting-flash-player-version-with-javascript/

Maybe this will help you out.

drrmkuhn

Posts: 1

Registered:
Feb 11, 2010

(hacky) solution has wider scope

Posted: Feb 11, 2010

Reply to: Potential (hacky) solution, from ezraJ
I ran into this "black box" problem on Firefox 3.5.7 on Mac and PC. I'm running flash 10.0.42
So I removed the version check, and just added


var randomizer = "?rdm=" + Math.random() * 99999;
flowplayer( 
    "container",  
    "flowplayer.swf" + randomizer, 
    { 
        ... 
    }
) 


Worked like a charm!!

Thanks jupilli!

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» (hacky) solution has wider scope

Posted: Feb 25, 2010

Reply to: (hacky) solution has wider scope, from drrmkuhn
The current dev version should also fix this. No need to use the randomizer as in the code above. This development version is available here:http://flowplayer-releases.s3.amazonaws.com/info/dist.html You need to download the player and compatible plugins from this page.

Let us know how it works for you.

Mark.Zylka@RedPrairie.com

Posts: 1

Registered:
Aug 6, 2008

Solved

Posted: Mar 2, 2010

Reply to: » (hacky) solution has wider scope, from Anssi
The development version resolved the issue for me. Thank you! When is this planned to be released so that I can get my commericial key to work with it?

computix

Posts: 41

Registered:
Nov 19, 2009

» Solved

Posted: Mar 20, 2010

Reply to: Solved, from Mark.Zylka@RedPrairie.com
We tried this new version, with this version the control area doesn't work.

computix

Posts: 41

Registered:
Nov 19, 2009

Not solved

Posted: Mar 31, 2010

Reply to: » Solved, from computix
We tried this new version, with this version the control (scrubber) area doesn't work.

Any chance that version 3.2 will fix this bug?

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» Not solved

Posted: Apr 1, 2010

Reply to: Not solved, from computix
How is the scrubber broken?

computix

Posts: 41

Registered:
Nov 19, 2009

Solved

Posted: Apr 1, 2010

Reply to: » Not solved, from Anssi
I did test it again with a fresh setup, now the scrubber area does work.

Sorry for the trouble.