Page History: XSPF Player Stand Alone - Integration :: FlashObject v1.0
Compare Page Revisions
Page Revision: 2008/10/03 20:33
Application Overview –The Stand Alone Player (XSPF Player) is an online application that consumes a dynamic web service provided by UnityWorks! Media to display a flowing video content experience.
Integration – SWFObject v2.0The segment below will demonstrate a typical integration email sent from UnityWorks! Media as a SWFObject v2.0.
<object width="###" height="###">
<param name="movie" value="http://www.dealervideos.com/xspfPlayer/xspfPlayer.swf?ctx=###&vid=###">
<param name="wmode" value="transparent">
<param name="allowFullScreen" value="true">
<param name="allowScriptAccess" value="always">
<param name="swfLiveconnect" value="true">
<embed src="http://www.dealervideos.com/xspfPlayer/xspfPlayer.swf?ctx=###&vid=###"
type="application/x-shockwave-flash" allowscriptaccess="sameDomain"
wmode="transparent" swfLiveconnect="true" allowFullScreen="true" width="###" height="###">
</object>
<script type="text/javascript" src="http://www.dealervideos.com/scripts/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {
ctx: "###",
vid: "###",
};
swfobject.embedSWF("http://www.dealervideos.com/xspfPlayer/xspfPlayer.swf",
"xspfPlayer", "###", "###", "9.0.0",null, flashvars,
[{'wmode':'transparent'},{'allowFullScreen':'true'},{'swfLiveconnect':'true'}], "xspfPlayer");
</script>
<div id="xspfPlayer"></div>
Video content is determined by the values generated by UnityWorks! Media. These values are assigned to the
CTX and
VID variable locations. Other values such as
HEIGHT and
WIDTH will be adjusted by the predetermined content.
Integration will vary upon the specific request. However, attributes can be altered at the HTML level of the script. See
"Stand Alone Client Preferences” below for options. (Inserting cid pid vid data is supported if the complete xspf path is added. Please contact UnityWorks! Media for additional details).
Stand Alone Client Preferences – These options must to be inserted within the flashvars variable within the javascript code as noted below:
var flashvars = { ctx: "###", vid: "###", Option: "Attribute"};
or as an addition to the location string...
"http://www.dealervideos.com/xspfPlayer/xspfPlayer.swf?Option=Attribute"
Options and Attributes–
| Options |
Attributes |
Default |
Description |
| AutoStart |
true / false |
true |
Auto plays the video content. |
| DisplayUWMLogo |
true / false |
true |
Display of the UnityWorks! Media Logo. |
| Debug |
true / false |
false |
Debug mode. |
| ScrubbingEnabled |
true / false |
true |
Scrub video ability. |
| ControlBehavior |
Static / Rollover |
Rollover |
User controls. (Static requires an additional 30 pixels in height). |
| IsMuted |
true / false |
false |
Mute video. |
| FullScreen |
true / false |
false |
Fullscreen ability. |
| autoCarfax |
true / false |
true |
Automatically launches carfax information. |
| exeFunction |
none |
none |
Executes a simgle command once XSPF tracks are completed. |
| exeTarget |
none |
none |
Specifies the target of the exeFunction. |
| playerResize |
true / false |
false |
Controls aspect ratio and resize capability. |
Client Sizing– The player size can be determined by the content delivered. These values need to be hardcoded to prevent any integration issues. Please use the following table to determine sizing.
| Video Content |
Control Behavior* |
Pixel Change |
Correct Player Size |
| Schema: 5.1 , 5.2 |
Rollover |
N/A |
384 x 288 |
| Schema: 5.3 , 4.4 , 4.2 |
Rollover |
N/A |
320 x 240 |
| Schema: 9.0 |
Rollover |
N/A |
480 x 360 |
| Schema: 5.1 , 5.2 |
Static |
+30 pixels |
384 x 318 |
| Schema: 5.3 , 4.4, 4.2 |
Static |
+30 pixels |
320 x 270 |
| Schema: 9.0 |
Static |
+30 pixels |
480 x 390 |
(*) Please refer to the “Stand Alone Preferences”.