This is a message.

Forum user: stashrider

Basic information

Registered Feb 1, 2009
Last login Aug 6, 2009
Forum posts 11
Direct URL http://www.flowplayer.org/forum/users/8009

Latest forum posts

Posts:

Registered:

Looking for Developer

Posted: Aug 6, 2009

We urgently need support for heavy flowplayer functional customizing (no skinning) which should start immediately, release is scheduled by the end of august 09.

So please add a comment here with contact details, if you're familar with flowplayer customizing, have sufficient capacity and work in Europe.

Cheers

Posts:

Registered:

» » Akamai connection provider plugin

Posted: Aug 3, 2009

we're also looking for support of Akamai Live Streams with Token Authentication.
What effort do you expect for implementing this or when will it be supported as a native Akamai Plugin Feature?

Cheers!

Posts:

Registered:

fixed: confluence argh

Posted: Feb 1, 2009

http://jira.atlassian.com/browse/CONF-13974

The error lies in how confluence delivers flash files attached to a page to browsers using flash 10.

..

Posts:

Registered:

i see

Posted: Feb 1, 2009

i downloaded the file which has been used in this example to my wiki server and guess what. same behaviour...

Player won't start in IE under XP.
When i directly link to the version at flowplayer.org everything works fine...

Posts:

Registered:

How strange is that?

Posted: Feb 1, 2009

after 10hours of work i figured out, what i never expected or let's say cosidered as the last minor option...

The flowplayer i downloaded from this site with the version 3.0.3 is not the same as the flowplayer this site uses in its examples.

I compared character by character in my HTML, Jaascript, external resources, CSS, kicked my whole configuration and made all new from scratch, to find this out.

http://www.flowplayer.org/swf/flowplayer-3.0.3.swf

differs from the swf included here

http://www.flowplayer.org/releases/flowplayer/flowplayer-3.0.3.zip

and yes... this player works in my firefox under osx and IE under XP deployed with a confluence WIKI.

Now i can rebuild everything from scratch.

%$"%"%

Posts:

Registered:

Player does not start in IE

Posted: Feb 1, 2009

it seems that the player does not start to load and show a video - with playlist and simple mode, which it does on firefox...
The reason why the buttons are not switching but keep the play status may be related to that.

Any hint would be very appreciated...

Posts:

Registered:

» the function...

Posted: Feb 1, 2009

ok, i think i need to kick it...

first i removed the $(function() { string to get it working again.

then it works in firefox but still not in IE.

The error message (object expected) seems to have something to do with jquery and the f$ thing...

i then figured out that i need to include two versions of jquery...

After inserting the additional version of jquery

<script src=http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>

and


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>


at least the playlist is now displayed correctly, but clicking on the entries highlights them all and the player is still not working.

this whole thing is unpredictable to me... Spending 6 hours of getting it done in the IE - without success - is not an advantage in productivity.

Having two versions of jquery in the site don't feels reliable as well. Does'nt that produce conflicts?

The site where i planned to include that player includes jquery as well... So i kicked the lines above. Same result.

It's confluence who includes:
<script type="text/javascript" src="jquery.js" ></script>
<script type="text/javascript" src="jquery-compatibility.js" ></script>
<script type="text/javascript" src="jquery.dimensions.js" ></script>

Posts:

Registered:

the function...

Posted: Feb 1, 2009


<script>
$(function() {
$f("flowplayer", "/download/attachments/1016145/flowplayer-3.0.3.swf", {
// properties that are common to all clips in the playlist
clip: { baseUrl: '/download/attachments/1016145/'},
// playlist with threeentries
playlist: [{
title: 'Step 1:Import',url: '/download/attachments/1016145.flv',subtitle: 'Title1'
}
,{
title: 'Step2: Metadata',url: '/download/attachments/101.flv',subtitle: 'Title2'
}

	,{
title: 'Step 3: Transfer',url: '/download/attachments/1016145.flv',subtitle: 'Title3'
}
    ],
// show playlist buttons in controlbar
plugins:  {
    controls: {
      playlist:true,
      progressColor: '#da700b',
      bufferGradient: 'none',
      sliderColor: '#a57c55',
      timeColor: '#eeb987',
      buttonColor: '#000000',
      sliderGradient: 'none',
      backgroundColor: '#000000',
      durationColor: '#ffffff',
      buttonOverColor: '#728B94',
      borderRadius: '0px',
      bufferColor: '#b19e8b',
      backgroundGradient: [0.6,0.3,0,0,0],
      progressGradient: 'medium',
      opacity:1.0
     } 
}
}).playlist("div.clips", {loop:true});	
});
</script><br clear="all" />


Posts:

Registered:

» got the first one...

Posted: Feb 1, 2009

also fixed the second one (just to keep you posted ^^).
I missed the

$(function() {

});

But, guess what:
Now i dont experience javascript errors, but the playlist shows the variables and the player does not work at all...

Posts:

Registered:

got the first one...

Posted: Feb 1, 2009

Label, String or Number Expected Error fixed. It was a... comma

The second javascript error: "object expected" remains and points to this line in my code:

$f("flowplayer", "/download/attachments/1016145/flowplayer-3.0.3.swf", {

Posts:

Registered:

same with me...

Posted: Feb 1, 2009

Flowplayer with Playlist Plugin works well with firefox on OSX, but IE throws two Errors

First: Label, String or Number expected

Second: Object expected.

Any Idea?

Both happens witin and after my flowplayer function:
(can't save my post with the example code in it, no clue why... perhaps to much characters...)