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

Your preferred username that is used when logging in.

Commercial version setup failing Created Feb 17, 2009

This thread is solved

Views: 2178     Replies: 3     Last reply May 21, 2010  
You must login first before you can use this feature

SATRAmark

Posts: 11

Registered:
Jan 22, 2009

Commercial version setup failing

Posted: Feb 17, 2009

Hi

Our company has purchased the commercial version of flowplayer, but the key we have does not seem to work to remove the branding or give us access to the context menu.

We are using the # prefixed key for sub-domain support and the page is being served from a subdomain of our main site, which is the domain that we registered with flowplayer.

The key has been checked and re-checked. The playback we see is the same as the invalid or missing key example on the commercial version documentation page. Also the additional context menu item is not being shown, yet your documentation states that:

"You can work without a license key to integrate and test the commercial version in a development environment where the domain is not the same as in your final production environment. The only difference is that the player shows a logo without a valid key (or when the domain is different from the one assigned to the key)".

This seems to suggest that even if the key isn't working the context menu should.

The code we are using is as follows:

flowplayer("player",{src: 'flowplayer/flowplayer.commercial-3.0.5.swf',
key: '#$b0dbaf68757453ba66a',
contextMenu: [{'About SATRA...' : function() {location.href = 'about.php';}}],
width:316,
height:200},{
clip:{url:'video/20.flv',
onStart: function() {this.unmute();}
},plugins:{controls:{url:'flowplayer.controls-3.0.3.swf',
time:false,
backgroundColor:'#000000'
}}});

Can anyone help me figure out why this is still showing the flowplayer branding and why we are not able to add anything to the context menu?

Thanks,

Mark

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» Commercial version setup failing

Posted: Feb 17, 2009

Reply to: Commercial version setup failing, from SATRAmark
The key and the other options should go to the 3rd argument of the flowplayer call. Now you have them included inside the same curly braces where you have src: 'flowplayer/flowplayer.commercial-3.0.5.swf'

Here is an example:
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.commercial-3.2.7.swf",{
key: '$c6e9311935842bee951'
});
</script>


SATRAmark

Posts: 11

Registered:
Jan 22, 2009

» » Commercial version setup failing

Posted: Feb 17, 2009

Reply to: » Commercial version setup failing, from Anssi
Thank you. I had obviously misunderstood the way the elements nested.

streamingvideo.pro
French multimedia developper

Posts: 60

Registered:
Dec 18, 2008

» » » Commercial version setup failing

Posted: May 21, 2010

Reply to: » » Commercial version setup failing, from SATRAmark
Sorry but for me but too, the key we have does not seem to work to remove the branding or give us access to the context menu.
Thanks

<script type="text/javascript" src="flowplayer-3.2.0.min.js"></script>
    <div id="leplayer"></div>
<script type='text/javascript'>
flowplayer("leplayer", {wmode: 'transparent', src: 'flowplayer.commercial-3.2.1.swf'}, {
	key: '#@5d13a0c056bfe252d5a',
	contextMenu: [ {'http://streamingvideo.pro' : function() {window.open("http://www.streamingvideo.pro",'_blank', '');}}],
	play: {opacity: 0},
	autoPlay: true,
	scaling: 'scale',
	clip: {
		url: 'http://media.streamingvideo.pro/b7e9q2q7/fms/EXIGA-livre-00-CDF-TP.mp4.smil', 
		provider: 'rtmp'
	},
	plugins: { 
		smil: { url: 'flowplayer.smil-3.2.0.swf' },
		rtmp: { url: 'flowplayer.rtmp-3.2.0.swf' },
		controls: { autoHide: 'always'}
	}
});