Changes between Version 73 and Version 74 of OvaRCNotes-011211-3


Ignore:
Timestamp:
03/09/11 09:15:31 (2 years ago)
Author:
paul
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OvaRCNotes-011211-3

    v73 v74  
    535535== 6. Simplified Configuration == 
    536536 
    537 In the case of a straight forward pre-roll setup, the OVA configuration approach has been simplified in this release. 
    538  
    539 When configuring OVA, all that is required now for the minimal pre-roll setup is the ad tag itself. 
     537In the case of a straight forward pre-roll setup, the OVA configuration approach has been simplified to the point where only a single "shortcut" variable "ova.tag" is required. 
     538 
     539That variable specifies the static ad tag to be used to obtain the pre-roll media to play. 
     540 
     541=== 6.1. Minimum OVA for JW Setup === 
    540542 
    541543To declare a pre-roll setup for OVA for JW Player 4/5, use the following flashvars: 
     
    544546flashvars="plugins=ova&ova.tag=put-your-ad-tag-here" 
    545547}}} 
     548 
     549If you are using the Javascript Embed code for JW5, you can use the variables as follows: 
     550 
     551{{{ 
     552<script type="text/javascript">jwplayer("container").setup({ 
     553       flashplayer: "player.swf",  
     554       file: "http://streaming.openvideoads.org:81/shows/the-black-hole.mp4", 
     555       plugins: { 
     556           "ova":  
     557                {  
     558                   tag: "your-tag-goes-here" 
     559                } 
     560       }, 
     561       height: 300, 
     562       width: 450 
     563}); 
     564</script> 
     565}}} 
     566 
     567You can find some examples of the minimum OVA for JW setup [http://static.openvideoads.org/qa/rc3-8/ova.jwplayer.5x/examples/pages/minimal/index.html here]. 
     568 
     569=== 6.2 Minimum OVA for Flowplayer Setup === 
    546570 
    547571To declare a pre-roll setup for OVA for Flowplayer, use the following Flowplayer configuration: 
     
    553577   } 
    554578}}} 
     579 
     580=== 6.2 Other Shortcut Setup Variables === 
     581 
     582To support the "ova.tag" variable, several other "shortcut" variables have been defined. These can be used with the same minimum configuration approach above: 
     583 
     584   * ova.debug - maps to the "levels" debug setting - so "ova.debug": "fatal, config, vast_template" sets the debug levels to "fatal, config, vast_template" 
     585   * ova.autoplay - maps to the "autoPlay" config option 
     586   * ova.delayadrequestuntilplay - maps to the standard "delayAdRequestUntilPlay" config option 
     587   * ova.clearplaylist - OVA for JW5 only - allows OVA to be instructed as to whether or not the playlist should be cleared from the player as it initialises 
     588   * ova.allowplaylistcontrol - OVA for JW5 only - maps to the "allowPlaylistControl" option 
    555589 
    556590== 7. Deferred Loading ==