HTML5 Installation Guide2018-12-23T17:36:29+00:00

Airbroad Player

Installation Guide

Introduction

Simply describe how to install and set up Airbroad HTML5 player. If you have any further questions, please contact us by 1:1 Inquiry, email(admin@airbroad.com) or what else you are convenient.

1. Register and get a dashboard account from GET STARTED page.

2. Download your player file from the Airbroad Dashboard.

     Click the Download button in Subscription Menu.

3. Upload the player file on your web server.

(Your server domain should be the same as registered domain.)

4. Insert script code on your page which player will run.
(example code below.)



	...
	//Import a player file.
	<script type="text/javascript" src="http://iamkyha.net/player_ha.js" />
</head>
<body>
	...
	//Set player options(parameters) and video file paths.
	<script type="text/javascript">
		var myplayer = airbroad_player({
		"file": ["http://iamkyha.net/video/bbb_360p.mp4",
			"http://iamkyha.net/video/bbb_540p.mp4",
			"http://iamkyha.net/video/bbb_720p.mp4"],
		"poster" : "http://www.airbroad.com/bbb.jpg",
		"file_num" : 2,
		"height": 540,
		"width": 800,
		"controls" : "always",
		"autoplay" : false,
		"auto" : true,
		});
	</script>
	...