overview • wizard • streaming • advertising • skins • integration • flashvars • javascript • Premium Plugins
PROGRESSIVELY DOWNLOADED FLV / MP4 VIDEO


Progressively downloaded FLV / MP4 video

Progressive download is a term used to describe the transfer of digital media files from a server to a client,typically using the HTTP protocol.
A media player relies on meta data located in the header of the file to be intact and a local buffer of the media file as it is downloaded from a web server.

Progressive download is default type of streaming, until the user specify other type of streaming.
In simple words the user's browser plays media file while downloading it, buffering as needed.

Such type of streaming doesn't require any additonal provider or streamer settings for Nuevoplayer.

Swfobject 1.5 code example setup.
<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
  var so = new SWFObject('player.swf','nuevoplayer','720','420','9','#000000');
  so.addParam('allowfullscreen','true');
  so.addParam('allowscriptaccess','always');
  so.addParam('wmode','opaque');
  so.addVariable('regkey','license_key');
  so.addVariable('image','http://yourdomain.com.com/images/preview_image.jpg');
  so.addVariable('file','http://yourdomain.com.com/videos/video.flv');
  so.write('mediaspace');
</script>


Swfobject 2 code example setup.
<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
  var attributes = { id: "nuevoplayer",name: "nuevoplayer" };
  var params = { bgcolor: "#000000", allowfullscreen: "true", quality: "high",allowScriptAccess: "always" };
  var flashvars = { 
     regkey: "license_key",
     file: "http://yourdomain.com.com/videos/video.flv",
     image: "http://yourdomain.com.com/images/preview_image.jpg"
  };
  swfobject.embedSWF("player.swf", "mediaspace", "720", "420", "9.0.115", false, flashvars, params, attributes);
</script>


For blogs and sites like MySpace, use the embed code
<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='720' height='480' id='nuevoplayer' name='nuevoplayer'>
<param name='movie' value='player.swf'>
<param name='allowfullscreen' value='true'>
<param name='allowscriptaccess' value='always'>
<param name='wmode' value='transparent'>
<param name='flashvars' value='regkey=license_key&file=http://yourdomain.com.com/videos/video.flv&image=http://yourdomain.com.com/images/preview_image.jpg'>
<embed
  id='nuevoplayer'
  name='nuevoplayer'
  src='player.swf'
  width='720'
  height='480'
  bgcolor='#000000'
  allowscriptaccess='always'
  allowfullscreen='true'
  flashvars='regkey=license_key&file=http://yourdomain.com.com/videos/video.flv&image=http://yourdomain.com.com/images/preview_image.jpg'
/>
</object>