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

Your preferred username that is used when logging in.

vzaar video platform CDNs and video platforms - Demo 2 / 2

Introduction

This demonstrates how to view a video from the vzaar video platform. See here for more info about vzaar.

Play this video

HTML coding

Note the still image below that we use as a splash. vzaar generates this for you when you upload your video.

<!--
	href points to the video file hosted by vzaar, using the unique video number. 
	You can get your video number from your vzaar video page.
	
	The splash image is specified in the backgound-image css tag. 
	vzaar generates this image for you.
-->
<a href="http://view.vzaar.com/105214.video"
  style="display:block;width:425px;height:260px;
    background-image:url(http://view.vzaar.com/105214.image);
    background-position:center"
  id="player">

  <!-- play button --> 
  <img src="/img/player/btn/play_large.png" alt="Play this video" 
  	style="margin-top:90px;margin-left:40%;"/>
</a>

Flowplayer configuration

vzaar requires no special configuration to setup video playback with progressive download!

flowplayer("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf");

Take a look at a standalone version of this demo. View its source code to get things going on your page.