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

Your preferred username that is used when logging in.

Full commercial configuration Commercial version - Demo 2 / 6

Introduction

This page shows you the additional feature set that can be found in the commercial licenses: the customization of the logo, play button and context menu. In a word, branding. All other features are available in the the Free version too. Please right-click the player and you'll see the menu. This time we are using the "tube" skin.

You can see the logo disappears after 10 seconds.

Logo configuration

Here is how the logo is configured:

// the logo, shown 10 seconds from the start
	logo: {
		url: '/img/player/acme.png',
		fullscreenOnly: false,
		displayTime: 10
	},

Play button

Here is how play button is configured:

// play button
	play: {
		url: '/img/player/btn/play_large_red.png',
		width: 83,
		height: 83
	},

Context menu

Here is how menu is configured:

// context menu
	contextMenu: [

		'Acme Video player 1.0.0',

		{'Proceed to next demo': function() {
			location.href = 'large-logo.html';
		}}
	],

You can see full list of configuration possibilities available in the commercial version configuration.

Show this demo as a standalone page. Feel free to copy/paste its source code.