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 hour ago
Forum posts 1076
Direct URL http://www.flowplayer.org/forum/users/3

Latest forum posts

Posts:

Registered:

» FP 3.2.4 - Not working on Firefox 3.5 or 3.6.8 on PC [ works on FF MAC however ]

Posted: 22 hours ago

Yes it uses global-053.js but that file also includes the flowplayer.js. So there should not be a difference when you only use flowplayer.js. What kind of a problem you encounter?

Posts:

Registered:

» Alternative for tag to install flowplayer??

Posted: yesterday 09:09

You don't need to use the anchor tag, in fact any tag goes. You can also supply the video URL in the clip object like so:


clip: {
    url: 'myvideo.mov'
}

Posts:

Registered:

» » » » » » » Problem escaping apostrophe in html section of content plugin

Posted: yesterday 08:00

This error comes from the Adobe's JSON library Flowplayer uses. You could try escaping using the JavaScript escape() function.

Posts:

Registered:

» Will iPhone Plugin Playback MP3?

Posted: yesterday 18:45

Nope. Perhaps in the next version.

Posts:

Registered:

» » » » autoBuffering -> onStart issue

Posted: yesterday 11:57

Does not crash here.

Flowplayer forum example

HTML setup for the player

<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.4.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.4.swf",{
clip:{ 
        autoPlay: false,  
        autoBuffering: true,
        onStart: function(){
			alert("started");
		}  
     }
});
</script>


Posts:

Registered:

» Licence Issues and logo installation issues

Posted: on tuesday

The latest 3.2.4 version is available for download in your account. What kind of problems you have? Can you post a link to a page that shows the problem?

Posts:

Registered:

» opening new web page when video finished playing?

Posted: on tuesday

This will do it:

Flowplayer forum example

HTML setup for the player

<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.4.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.4.swf",{
onFinish: function(clip) {
           window.location = 'http://youtube.com';
}
});
</script>


Posts:

Registered:

» many errors flashplayer

Posted: on tuesday

This error was fixed last week on Friday. You need to build a new player with the setup tool and that will work without these errors.

Posts:

Registered:

» Unlimited Licence - part of my product question

Posted: on tuesday

The Unlimited license should work for you. You will get a license key generation algorithm that you can implement in the software. When your client installs the software in it's domain the algorithm will generate a key that is specific to his domain. The algorithm will be used every time a page containing flowplayer is requested from the software.

Posts:

Registered:

» sorensonmedia plugin & ipad troubles

Posted: on tuesday

You cannot use any of the Flash plugins with the iPad. The Apple devices don't support Flash. Also the sorenson plugin is incompatible.

Posts:

Registered:

» How to buy?

Posted: on monday

PayPal accepts credit cards. Just proceed in our download page.

Posts:

Registered:

» Flowplayer logo is still there after entering commercial key

Posted: on monday

We need a sample page online that shows how the player is embedded and configured!

Posts:

Registered:

» » » » » Seeking and Byte - Range Request Issue

Posted: on monday

Check the Adobe doc page: You will need to setup a special server-side script to serve the socket policy file.

"What data is sent in the request and response?

The request for a policy file is very simple: Flash Player sends the string <policy-file-request/> followed by a NULL byte to the port where it is requesting a policy file; no more, no less. "


Posts:

Registered:

» » » Seeking and Byte - Range Request Issue

Posted: on monday

Just found out that this actually requires a script on the server. See here:http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html Because of this we are more or less back on the drawing board with our byte-range support....

This non-functional feature got out of the door because this demo is not correctly configured. It's using normal pseudostreaming instead of byte-range requests. To enable byte-range requests the rangeRequests: true goes to the pseudostreaming plugin conf instead of clip.

But if you install the policy file server things will work.

Posts:

Registered:

» lame forum

Posted: on sunday

We have received quite a lot of spam in this forum recently and because of this some domains have been flagged and therefore cannot be posted into this forum. It's possible we have made a mistake an flagged a domain that should not have been flagged. Can you please email the URL to me at info -at- flowplayer.org and I can fix the issue.