|
31
|
1 |
/* site.js - all our site-dependent config : player chrome, cdn locations, etc...*/ |
|
|
2 |
|
|
|
3 |
IriSP.lib = { |
|
|
4 |
jQuery:"http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js", |
|
|
5 |
jQueryUI:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js", |
|
|
6 |
jQueryToolTip:"http://cdn.jquerytools.org/1.2.4/all/jquery.tools.min.js", |
|
|
7 |
swfObject:"http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js", |
|
|
8 |
cssjQueryUI:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/base/jquery-ui.css" |
|
|
9 |
}; |
|
|
10 |
|
|
|
11 |
//Player Configuration |
|
|
12 |
IriSP.config = undefined; |
|
|
13 |
IriSP.configDefault = { |
|
|
14 |
metadata:{ |
|
|
15 |
format:'cinelab', |
|
|
16 |
src:'', |
|
|
17 |
load:'jsonp' |
|
|
18 |
}, |
|
|
19 |
gui:{ |
|
|
20 |
width:650, |
|
|
21 |
height:0, |
|
|
22 |
mode:'radio', |
|
|
23 |
container:'LdtPlayer', |
|
|
24 |
debug:false, |
|
|
25 |
css:'../src/css/LdtPlayer.css' |
|
|
26 |
}, |
|
|
27 |
player:{ |
|
|
28 |
type:'jwplayer', |
|
|
29 |
src:'../res/swf/player.swf', |
|
|
30 |
params:{ |
|
|
31 |
allowfullscreen:"true", |
|
|
32 |
allowscriptaccess:"always", |
|
|
33 |
wmode:"transparent" |
|
|
34 |
}, |
|
|
35 |
flashvars:{ |
|
|
36 |
streamer:"streamer", |
|
|
37 |
file:"file", |
|
|
38 |
live:"true", |
|
|
39 |
autostart:"false", |
|
|
40 |
controlbar:"none", |
|
|
41 |
playerready:"IriSP.playerReady" |
|
|
42 |
}, |
|
|
43 |
attributes:{ |
|
|
44 |
id:"Ldtplayer1", |
|
|
45 |
name:"Ldtplayer1" |
|
|
46 |
} |
|
|
47 |
}, |
|
|
48 |
module:null |
|
|
49 |
}; |
|
|
50 |
|