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

Your preferred username that is used when logging in.

Forum user: Anssi Flowplayer Flash & video streaming developer

Basic information

Registered Jul 24, 2007
Last login on monday
Forum posts 1194
Direct URL http://www.flowplayer.org/forum/users/3

Latest forum posts

Posts:

Registered:

» Forum posting enabled again

Posted: 3 weeks ago

Oops. Looks like i need to disable posting again.

Posts:

Registered:

Forum posting enabled again

Posted: 3 weeks ago

We have just enabled forum posting again. It was disabled for one day due to automatic spamming that we are receiving.

We also had to delete forum messages for the past three weeks, these were 99% spam but some real messages got deleted also in the process. Apologies for that!

Posts:

Registered:

» Android 2.3.5 Samsung Galaxy S doesn

Posted: Dec 12, 2011

Can you please check if this demo works.http://flowplayer.org/demos/installation/alternate/object-w3c.htm

I am suspecting that this is an issue in query tools / flashembed.

Posts:

Registered:

» Flowplayer extermly slow with Tremor Video Acudeo plugin

Posted: Dec 8, 2011

What is the event that the Acudeo plugin is waiting for here? I can find out if there is a way to send this event earlier.

Posts:

Registered:

» Flowplayer Makes Unnecessary Connections

Posted: Aug 20, 2011

This is now in our issue tracker, and will be fixed for our next release.

http://code.google.com/p/flowplayer-core/issues/detail?id=364

Posts:

Registered:

» Change coverimage dynamically in audio player

Posted: Aug 8, 2011

The coverImage feature does not support changing the image dynamically. However you could use the canvas for images. See the example below. With this you can change the image dynamically with code like this, you can try this in your browser's developer console:


$f().getPlugin("canvas").css({ background: 'url(/img/demos/thumb2.jpg) no-repeat 50pct 50pct' })

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",{
clip: {
  url: 'http://releases.flowplayer.org/data/fake_empire.mp3'
},
canvas: {
   // a canvas image centered 50% vertically and horizontally
   background: 'url(/img/demos/thumb1.jpg) no-repeat 50pct 50pct'
}
});
</script>


Posts:

Registered:

» Commercial licence

Posted: Aug 3, 2011

1. The commercial license is enough for this usage.
2. The player will work without internet access. The player works without a license key when the play swf is loaded from 'localhost' or from the disk using the 'file:' protocol.

Internet access is not required as the player does not 'phone home' to validate the license. The license key verification happens completely inside the player as it knows the domain where it is embedded in. And in this case the domain can be the local domain.

Hope this helps.

Posts:

Registered:

» » » » » Embedding Flowplayer in Flash

Posted: Jul 28, 2011

The org.flowplayer.ui package stuff is here:

http://code.google.com/p/flowplayer-plugins/source/browse/#svn%2Fflash%2Fcommon%2Ftrunk

Posts:

Registered:

» When will scrub be released

Posted: Jul 19, 2011

We are going to release the next version together with a new website (this site redesigned). We still have a few weeks before everything is ready.

The current development version athttp://flowplayer-releases.s3.amazonaws.com/info/dist.html should be quite stable: I would recommend that you test with the plugins that you use and with your configuration and if you don't see any problems you can go ahead and use it in production.

Posts:

Registered:

» Same issue

Posted: Jul 12, 2011

The code where the error happens is generated by the Flash Player (and does not come from Flowplayer):


try { document.getElementById("VideoPlayer_api").SetReturnValue(__flash__toXML(window.location.href.toString()) ); } catch (e) { document.getElementById("VideoPlayer_api").SetReturnValue("<undefined></undefined>"); }

Posts:

Registered:

» » Content plugin not ready yet

Posted: Jul 8, 2011

Should be fixed in this:

http://flowplayer-releases.s3.amazonaws.com/info/dist.html

Let me know if it works for you now. Also see my comment here:

http://code.google.com/p/flowplayer-core/issues/detail?id=331

Posts:

Registered:

» Pseudostreaming scrubber remaining stationary

Posted: Jun 16, 2011

This is now fixed and you can test with our current development version: http://flowplayer-releases.s3.amazonaws.com/info/dist.html

Posts:

Registered:

» » » » » » » » » » » » » onStop broken in some browsers

Posted: May 30, 2011

yes i have been testing with the 2nd player. And it unloads back to the image (player disappears) when hitting stop in fullscreen.

Posts:

Registered:

» » » » » » » » » » » onStop broken in some browsers

Posted: May 30, 2011

I have Safari 5.0.5 on my Mac.

Also tested on Windows 7 and Safari 5.0.5. Unloading works without problems, both from fullsreen and from "normal mode".

Posts:

Registered:

» » » » » » » » onStop broken in some browsers

Posted: May 29, 2011

Ok. I am testing this on a Mac and for me unloading from fullscreen works OK and does not crash. But i guess i need to leave the webkit specific condition in place :-)