Changeset 1655 for tags/mediaplayer-5.3
- Timestamp:
- 03/16/11 17:19:29 (2 years ago)
- Location:
- tags/mediaplayer-5.3
- Files:
-
- 48 deleted
- 9 edited
- 1 copied
-
. (modified) (1 prop)
-
js/bin-debug/index.html (modified) (1 diff)
-
js/test/api.html (modified) (2 diffs)
-
js/test/embed.html (modified) (2 diffs)
-
js/test/fallback.html (modified) (14 diffs)
-
js/test/files/accessibility.xml (deleted)
-
js/test/files/asx.xml (deleted)
-
js/test/files/atom.xml (deleted)
-
js/test/files/bitrates.xml (deleted)
-
js/test/files/bunny.flv (deleted)
-
js/test/files/bunny.jpg (deleted)
-
js/test/files/bunny.m4a (deleted)
-
js/test/files/bunny.mp3 (deleted)
-
js/test/files/bunny.mp4 (deleted)
-
js/test/files/bunny.ogg (deleted)
-
js/test/files/bunny.ogv (deleted)
-
js/test/files/bunny.png (deleted)
-
js/test/files/bunny.webm (deleted)
-
js/test/files/captions.srt (deleted)
-
js/test/files/captions.xml (deleted)
-
js/test/files/chapters.xml (deleted)
-
js/test/files/cloudfront.xml (deleted)
-
js/test/files/config.xml (deleted)
-
js/test/files/corrie.flv (deleted)
-
js/test/files/corrie.jpg (deleted)
-
js/test/files/corrie.mp3 (deleted)
-
js/test/files/corrie.mp4 (deleted)
-
js/test/files/corrie.ogv (deleted)
-
js/test/files/corrie.srt (deleted)
-
js/test/files/corrie.xml (deleted)
-
js/test/files/dynamic.smil (deleted)
-
js/test/files/dynamic.xml (deleted)
-
js/test/files/hd.xml (deleted)
-
js/test/files/highwinds.xml (deleted)
-
js/test/files/irss.xml (deleted)
-
js/test/files/jquery.js (deleted)
-
js/test/files/logo.png (deleted)
-
js/test/files/mrss.xml (deleted)
-
js/test/files/oorlogswinter.flv (deleted)
-
js/test/files/oorlogswinter.mp3 (deleted)
-
js/test/files/oorlogswinter.mp4 (deleted)
-
js/test/files/oorlogswinter.ogv (deleted)
-
js/test/files/oorlogswinter.png (deleted)
-
js/test/files/oorlogswinter.xml (deleted)
-
js/test/files/popout.html (deleted)
-
js/test/files/s3-generator.php (deleted)
-
js/test/files/smil.xml (deleted)
-
js/test/files/smooth.ismc (deleted)
-
js/test/files/snapshot.php (deleted)
-
js/test/files/style.css (deleted)
-
js/test/files/swfobject.js (deleted)
-
js/test/files/watermark.png (deleted)
-
js/test/files/xspf.xml (deleted)
-
js/test/flashvars.html (modified) (1 diff)
-
js/test/index.php (modified) (1 diff)
-
js/test/jwplayer.html5.xml (modified) (1 diff)
-
js/test/settings.js (modified) (1 diff)
-
js/test/style.css (copied) (copied from trunk/fl5/js/test/style.css)
Legend:
- Unmodified
- Added
- Removed
-
tags/mediaplayer-5.3
-
Property
svn:mergeinfo
set to
/trunk/fl5 merged eligible
-
Property
svn:mergeinfo
set to
-
tags/mediaplayer-5.3/js/bin-debug/index.html
r1169 r1655 46 46 This is <div> 2. 47 47 </div> 48 <video class="class1" id="video1" src="http:// developer.longtailvideo.com/player/testing/files/bunny.mp4" controls>48 <video class="class1" id="video1" src="http://playertest.longtailvideo.com/bunny.mp4" controls> 49 49 Alternate Video Text. 50 50 </video> -
tags/mediaplayer-5.3/js/test/api.html
r1235 r1655 30 30 players:[ 31 31 {type:'html5'}, 32 {type:'flash',src:'../ test/player-5.3.swf'},32 {type:'flash',src:'../../player.swf'}, 33 33 ], 34 34 components: { … … 51 51 <h3>API test</h3> 52 52 <script type="text/javascript"> 53 function loadSingle(id) { $jw(id).load({file:' files/bunny.mp4', image:'files/bunny.jpg'}); }53 function loadSingle(id) { $jw(id).load({file:'http://playertest.longtailvideo.com/bunny.mp4', image:'http://playertest.longtailvideo.com/bunny.jpg'}); } 54 54 function loadList(id) { 55 55 $jw(id).load([ 56 {file:' files/bunny.mp4', image:'files/bunny.jpg'},57 {file:' files/bunny.mp4', image:'files/bunny.jpg'},58 {file:' files/bunny.mp4', image:'files/bunny.jpg'}56 {file:'http://playertest.longtailvideo.com/bunny.mp4', image:'http://playertest.longtailvideo.com/bunny.jpg'}, 57 {file:'http://playertest.longtailvideo.com/bunny.mp4', image:'http://playertest.longtailvideo.com/bunny.jpg'}, 58 {file:'http://playertest.longtailvideo.com/bunny.mp4', image:'http://playertest.longtailvideo.com/bunny.jpg'} 59 59 ]); 60 60 } -
tags/mediaplayer-5.3/js/test/embed.html
r1308 r1655 5 5 <script type="text/javascript"> 6 6 var options = { 7 image: ' ../../../testing/files/bunny.jpg',7 image: 'http://playertest.longtailvideo.com/bunny.jpg', 8 8 skin: '', 9 9 levels: [ 10 {file: ' ../../../testing/files/bunny.mp4'}10 {file: 'http://playertest.longtailvideo.com/bunny.mp4'} 11 11 ] 12 12 }; 13 13 14 14 function embedPlayer(id) { 15 $jw(id).setup(options,' /trunk/fl5/player.swf').onPlay(function() {15 $jw(id).setup(options,'../../player.swf').onPlay(function() { 16 16 alert("Playing!"); 17 17 }).play(); … … 29 29 <h3>Embed a player on a video tag</h3> 30 30 <div> 31 <video id="a_video" src=" /testing/files/bunny.mp4" width="320" height="240" poster="/testing/files/bunny.png"></video>31 <video id="a_video" src="http://playertest.longtailvideo.com/bunny.mp4" width="320" height="240" poster="http://playertest.longtailvideo.com/bunny.png"></video> 32 32 </div> 33 <a href="#" onclick="console.log($jw('a_video').setup({flashplayer:' /trunk/fl5/player.swf'}).play().options); return false;">Click here to embed player</a><br />33 <a href="#" onclick="console.log($jw('a_video').setup({flashplayer:'../../player.swf'}).play().options); return false;">Click here to embed player</a><br /> 34 34 </body> 35 35 </html> -
tags/mediaplayer-5.3/js/test/fallback.html
r1401 r1655 35 35 <script type="text/javascript"> 36 36 jwplayer("vid1").setup({ 37 file: ' files/bunny.mp4',38 players: [ 39 {type:'html5'}, 40 {type:'flash', src:' player-5.3.swf'}37 file: 'http://playertest.longtailvideo.com/bunny.mp4', 38 players: [ 39 {type:'html5'}, 40 {type:'flash', src:'../../player.swf'} 41 41 ] 42 42 }); … … 51 51 <script type="text/javascript"> 52 52 jwplayer("vid2").setup({ 53 file: ' files/bunny.ogv',54 players: [ 55 {type:'html5'}, 56 {type:'flash', src:' player-5.3.swf'}53 file: 'http://playertest.longtailvideo.com/bunny.ogv', 54 players: [ 55 {type:'html5'}, 56 {type:'flash', src:'../../player.swf'} 57 57 ] 58 58 }); … … 67 67 <script type="text/javascript"> 68 68 jwplayer("vid3").setup({ 69 file: ' files/bunny.webm',70 players: [ 71 {type:'html5'}, 72 {type:'flash', src:' player-5.3.swf'}69 file: 'http://playertest.longtailvideo.com/bunny.webm', 70 players: [ 71 {type:'html5'}, 72 {type:'flash', src:'../../player.swf'} 73 73 ] 74 74 }); … … 85 85 jwplayer("vid4").setup({ 86 86 levels: [ 87 {file: ' files/bunny.mp4'},88 {file: ' files/bunny.ogv'}89 ], 90 players: [ 91 {type:'html5'}, 92 {type:'flash', src:' player-5.3.swf'}87 {file: 'http://playertest.longtailvideo.com/bunny.mp4'}, 88 {file: 'http://playertest.longtailvideo.com/bunny.ogv'} 89 ], 90 players: [ 91 {type:'html5'}, 92 {type:'flash', src:'../../player.swf'} 93 93 ] 94 94 }); … … 104 104 jwplayer("vid5").setup({ 105 105 levels: [ 106 {file: ' files/bunny.ogv'},107 {file: ' files/bunny.mp4'}108 ], 109 players: [ 110 {type:'html5'}, 111 {type:'flash', src:' player-5.3.swf'}106 {file: 'http://playertest.longtailvideo.com/bunny.ogv'}, 107 {file: 'http://playertest.longtailvideo.com/bunny.mp4'} 108 ], 109 players: [ 110 {type:'html5'}, 111 {type:'flash', src:'../../player.swf'} 112 112 ] 113 113 }); … … 123 123 jwplayer("vid6").setup({ 124 124 levels: [ 125 {file: ' files/bunny.webm'},126 {file: ' files/bunny.ogv'}127 ], 128 players: [ 129 {type:'html5'}, 130 {type:'flash', src:' player-5.3.swf'}125 {file: 'http://playertest.longtailvideo.com/bunny.webm'}, 126 {file: 'http://playertest.longtailvideo.com/bunny.ogv'} 127 ], 128 players: [ 129 {type:'html5'}, 130 {type:'flash', src:'../../player.swf'} 131 131 ] 132 132 }); … … 142 142 jwplayer("vid7").setup({ 143 143 levels: [ 144 {file: ' files/bunny.webm'},145 {file: ' files/bunny.mp4'}146 ], 147 players: [ 148 {type:'html5'}, 149 {type:'flash', src:' player-5.3.swf'}144 {file: 'http://playertest.longtailvideo.com/bunny.webm'}, 145 {file: 'http://playertest.longtailvideo.com/bunny.mp4'} 146 ], 147 players: [ 148 {type:'html5'}, 149 {type:'flash', src:'../../player.swf'} 150 150 ] 151 151 }); … … 162 162 jwplayer("pl1").setup({ 163 163 playlist: [ 164 {file: ' files/bunny.mp4'}165 ], 166 players: [ 167 {type:'html5'}, 168 {type:'flash', src:' player-5.3.swf'}164 {file: 'http://playertest.longtailvideo.com/bunny.mp4'} 165 ], 166 players: [ 167 {type:'html5'}, 168 {type:'flash', src:'../../player.swf'} 169 169 ] 170 170 }); … … 180 180 jwplayer("pl2").setup({ 181 181 playlist: [ 182 { file: ' files/bunny.ogv' }183 ], 184 players: [ 185 {type:'html5'}, 186 {type:'flash', src:' player-5.3.swf'}182 { file: 'http://playertest.longtailvideo.com/bunny.ogv' } 183 ], 184 players: [ 185 {type:'html5'}, 186 {type:'flash', src:'../../player.swf'} 187 187 ] 188 188 }); … … 198 198 jwplayer("pl3").setup({ 199 199 playlist: [ 200 { file: ' files/bunny.webm' }201 ], 202 players: [ 203 {type:'html5'}, 204 {type:'flash', src:' player-5.3.swf'}200 { file: 'http://playertest.longtailvideo.com/bunny.webm' } 201 ], 202 players: [ 203 {type:'html5'}, 204 {type:'flash', src:'../../player.swf'} 205 205 ] 206 206 }); … … 218 218 playlist: [ 219 219 {levels: [ 220 {file: ' files/bunny.mp4'},221 {file: ' files/bunny.ogv'}220 {file: 'http://playertest.longtailvideo.com/bunny.mp4'}, 221 {file: 'http://playertest.longtailvideo.com/bunny.ogv'} 222 222 ]} 223 223 ], 224 224 players: [ 225 225 {type:'html5'}, 226 {type:'flash', src:' player-5.3.swf'}226 {type:'flash', src:'../../player.swf'} 227 227 ] 228 228 }); … … 239 239 playlist: [ 240 240 {levels: [ 241 {file: ' files/bunny.ogv'},242 {file: ' files/bunny.mp4'}241 {file: 'http://playertest.longtailvideo.com/bunny.ogv'}, 242 {file: 'http://playertest.longtailvideo.com/bunny.mp4'} 243 243 ]} 244 244 ], 245 245 players: [ 246 246 {type:'html5'}, 247 {type:'flash', src:' player-5.3.swf'}247 {type:'flash', src:'../../player.swf'} 248 248 ] 249 249 }); … … 260 260 playlist: [ 261 261 {levels: [ 262 {file: ' files/bunny.webm'},263 {file: ' files/bunny.ogv'}262 {file: 'http://playertest.longtailvideo.com/bunny.webm'}, 263 {file: 'http://playertest.longtailvideo.com/bunny.ogv'} 264 264 ]} 265 265 ], 266 266 players: [ 267 267 {type:'html5'}, 268 {type:'flash', src:' player-5.3.swf'}268 {type:'flash', src:'../../player.swf'} 269 269 ] 270 270 }); … … 281 281 playlist: [ 282 282 {levels: [ 283 {file: ' files/bunny.webm'},284 {file: ' files/bunny.mp4'}283 {file: 'http://playertest.longtailvideo.com/bunny.webm'}, 284 {file: 'http://playertest.longtailvideo.com/bunny.mp4'} 285 285 ]} 286 286 ], 287 287 players: [ 288 288 {type:'html5'}, 289 {type:'flash', src:' player-5.3.swf'}289 {type:'flash', src:'../../player.swf'} 290 290 ] 291 291 }); -
tags/mediaplayer-5.3/js/test/flashvars.html
r1191 r1655 2 2 <head> 3 3 <title>Arbitrary Flashvar injection</title> 4 <script src=" files/swfobject.js"></script>5 <script src=" files/jquery.js"></script>4 <script src="http://playertest.longtailvideo.com/swfobject.js"></script> 5 <script src="http://playertest.longtailvideo.com/jquery.js"></script> 6 6 7 7 <script type="text/javascript"> -
tags/mediaplayer-5.3/js/test/index.php
r1299 r1655 2 2 <head> 3 3 <title>JW Player Testing</title> 4 <link rel="stylesheet" href=" files/style.css" type="text/css">5 <script type="text/javascript" src=" files/jquery.js"></script>6 <script type="text/javascript" src=" files/swfobject.js"></script>4 <link rel="stylesheet" href="style.css" type="text/css"> 5 <script type="text/javascript" src="http://playertest.longtailvideo.com/jquery.js"></script> 6 <script type="text/javascript" src="http://playertest.longtailvideo.com/swfobject.js"></script> 7 7 <script type="text/javascript" src="settings.js"></script> 8 8 <script type="text/javascript" src="../bin-debug/jwplayer.js"></script> 9 <script type="text/javascript" src="../../html5/bin-debug/jwplayer.html5.js"></script>10 9 <script type="text/javascript"> 11 10 -
tags/mediaplayer-5.3/js/test/jwplayer.html5.xml
r1299 r1655 93 93 <flashvar type="field"> 94 94 <name>flashplayer</name> 95 <default> /player/trunk/flash/player.swf</default>95 <default>../../player.swf</default> 96 96 <description>location of the JW Player for Flash that is used for fallback in browsers that do not support HTML5. When set to false, the flashplayer fallback is not used.</description> 97 97 </flashvar> -
tags/mediaplayer-5.3/js/test/settings.js
r1340 r1655 1 1 var settings = { 2 /** The HTML element which will be embedded over **/ 3 "html":{ 4 "default": "<div id='preview'><p>Testing is simple: choose an example, change the flashvars and see if it works.</p></div>", 5 "object": "<embed id='preview' name='preview' src='players/player-5.3.swf' width='470' height='320' bgcolor='#000000' allowscriptaccess='always' allowfullscreen='true' flashvars='file=http://content.longtailvideo.com/videos/flvplayer.flv' />", 6 "embed": "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='470' height='320' id='preview' name='preview'><param name='movie' value='players/player-5.3.swf'><param name='allowfullscreen' value='true'> <param name='allowscriptaccess' value='always'> <param name='wmode' value='transparent'> <param name='flashvars' value='file=http://content.longtailvideo.com/videos/flvplayer.flv'>", 7 "video": "<video id='preview' height='270' poster='files/bunny.jpg' width='480'><source src='files/bunny.mp4'/></video>" 8 }, 9 /** The embed script to use **/ 10 "script":{ 11 "none":"registerobjectembed", 12 "swfobject":"swfobjectembed", 13 "jwembed":"jwplayersetup" 14 }, 15 /** Player versions to test. **/ 16 "players": { 17 "flash-html5-fallback":[{"type":"flash","src":"player-5.3.swf"},{"type":"html5"}], 18 "html5-flash-fallback":[{"type":"html5"},{"type":"flash","src":"player-5.3.swf"}], 19 "flash-only":[{"type":"flash","src":"player-5.3.swf"}], 20 "html5-only":[{"type":"html5"}] 2 /** The HTML element which will be embedded over * */ 3 "html" : { 4 "default" : "<div id='preview'><p>Testing is simple: choose an example, change the flashvars and see if it works.</p></div>", 5 "object" : "<embed id='preview' name='preview' src='../../player.swf' width='470' height='320' bgcolor='#000000' allowscriptaccess='always' allowfullscreen='true' flashvars='file=http://content.longtailvideo.com/videos/flvplayer.flv' />", 6 "embed" : "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='470' height='320' id='preview' name='preview'><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='file=http://content.longtailvideo.com/videos/flvplayer.flv'>", 7 "video" : "<video id='preview' height='270' poster='http://playertest.longtailvideo.com/bunny.jpg' width='480'><source src='http://playertest.longtailvideo.com/bunny.mp4'/></video>" 21 8 }, 22 /** Available plugins to test. **/ 23 "plugins": { 9 /** The embed script to use * */ 10 "script" : { 11 "none" : "registerobjectembed", 12 "swfobject" : "swfobjectembed", 13 "jwembed" : "jwplayersetup" 24 14 }, 25 /** Avaliable skins to test. **/ 26 "skins": { 27 " ":" ", 28 "beelden":"../skins/beelden/beelden.xml", 29 "bekle":"../skins/bekle/bekle.xml", 30 "bluemetal":"../skins/bluemetal/bluemetal.xml", 31 "classic":"../skins/classic/classic.xml", 32 "five":"../skins/five/five.xml", 33 "glow":"../../../skins/glow/glow.xml", 34 "lulu":"../skins/lulu/lulu.xml", 35 "modieus":"../skins/modieus/modieus.xml", 36 "playcasso":"../skins/playcasso/playcasso.xml", 37 "snel":"../skins/snel/snel.xml", 38 "stijl":"../skins/stijl/stijl.xml", 39 "stormtrooper":"../skins/stormtrooper/stormtrooper.xml", 40 " ":" ", 41 "bekle_swf":"../skins/bekle/bekle.swf", 42 "bluemetal_swf":"../skins/bluemetal/bluemetal.swf", 43 "classic_swf":"../skins/classic/classic.swf", 44 "five_swf":"../skins/five/five.swf", 45 "icecreamsneaka_swf":"../skins/icecreamsneaka/icecreamsneaka.swf", 46 "modieus_swf":"../skins/modieus/modieus.swf", 47 "playcasso_swf":"../skins/playcasso/playcasso.swf", 48 "snel_swf":"../skins/snel/snel.swf", 49 "stijl_swf":"../skins/stijl/stijl.swf" 15 /** Player versions to test. * */ 16 "players" : { 17 "flash-html5-fallback" : [ { 18 "type" : "flash", 19 "src" : "../../player.swf" 20 }, { 21 "type" : "html5" 22 } ], 23 "html5-flash-fallback" : [ { 24 "type" : "html5" 25 }, { 26 "type" : "flash", 27 "src" : "../../player.swf" 28 } ], 29 "flash-only" : [ { 30 "type" : "flash", 31 "src" : "../../player.swf" 32 } ], 33 "html5-only" : [ { 34 "type" : "html5" 35 } ] 50 36 }, 51 /** All the setup examples with their flashvars. **/ 52 "examples": { 53 " ": {}, 54 55 "MP4 video": { 56 "file":"files/bunny.mp4", 57 "image":"files/bunny.jpg", 58 "height":240, 59 "width":400 60 }, 61 62 "Single video with event listeners": { 63 "file":"files/bunny.mp4", 64 "image":"files/bunny.jpg", 65 "height":240, 66 "width":400, 67 "onBuffer":"function() { alert('Buffering'); }", 68 "onBufferFull":"function() { alert('Buffer full'); }", 69 "onError":"function() { alert('Error'); }", 70 "onMeta":"function() { alert('Metadata received'); }", 71 "onMute":"function(evt) { alert('Player ' + (evt.mute ? 'muted' : 'unmuted')); }", 72 "onPlaylist":"function() { alert('Playlist loaded'); }", 73 "onPlaylistItem":"function() { alert('New playlist item'); }", 74 "onReady":"function() { alert('Player is ready'); }", 75 "onResize":"function() { alert('Player has been resized'); }", 76 "onPlay":"function() { alert('Playing'); }", 77 "onPause":"function() { alert('Paused'); }", 78 "onIdle":"function() { alert('Idle'); }", 79 "onComplete":"function() { alert('Complete'); }", 80 "onTime":"function(evt) { if (window.console && console.log) { console.log('Time: ' + evt.position); } }", 81 "onVolume":"function(evt) { alert('Volume changed to ' + evt.volume); }" 82 }, 83 84 "Youtube video": { 85 "file": "http://youtube.com/watch?v=IBTE-RoMsvw", 86 "height": 240, 87 "width": 400 88 }, 89 90 " ": {}, 91 "HTML5 Only": {}, 92 "----": {}, 93 94 "OGV video (FF / Chrome)": { 95 "file":"files/bunny.ogv", 96 "image":"files/bunny.jpg", 97 "height":240, 98 "width":400 99 }, 100 101 " ": {}, 102 "Flash Only": {}, 103 "---- ": {}, 104 105 "FLV video": { 106 "file":"files/bunny.flv", 107 "image":"files/bunny.jpg", 108 "height":240, 109 "width":400, 110 "onBuffer": "function(){'hi how are %20?'}" 111 }, 112 113 114 "MP3 audio": { 115 "file":"files/bunny.mp3", 116 "height":24, 117 "width":400 118 }, 119 "AAC audio":{ 120 "file":"files/bunny.m4a", 121 "image":"files/bunny.jpg", 122 "height":240, 123 "width":400 124 }, 125 "JPG image": { 126 "file":"files/bunny.jpg", 127 "height":240, 128 "width":400 129 }, 130 131 "---- ": {}, 132 "HTTP streamed FLV": { 133 "file":"http://content.bitsontherun.com/videos/Qvxp3Jnv-68183.flv", 134 "provider":"http", 135 "height":240, 136 "width":400, 137 "http.startparam":"apstart" 138 }, 139 "HTTP streamed MP4": { 140 "file":"http://content.bitsontherun.com/videos/Qvxp3Jnv-483.mp4", 141 "provider":"http", 142 "height":240, 143 "width":400, 144 "http.startparam":"starttime" 145 }, 146 "HTTP bitrate switching": { 147 "file":"files/bitrates.xml", 148 "height":240, 149 "width":400, 150 "plugins":"qualitymonitor" 151 }, 152 "RTMP streamed FLV": { 153 "file":"videos/Qvxp3Jnv-68183.flv", 154 "streamer":"rtmp://fms.12E5.edgecastcdn.net/0012E5", 155 "height":240, 156 "width":400 157 }, 158 "RTMP streamed MP4": { 159 "file":"videos/Qvxp3Jnv-483.mp4", 160 "streamer":"rtmp://fms.12E5.edgecastcdn.net/0012E5", 161 "height":240, 162 "width":400 163 }, 164 "RTMP dynamic stream": { 165 "file":"files/dynamic.xml", 166 "height":240, 167 "width":500, 168 "plugins":"qualitymonitor" 169 }, 170 "RTMP live stream (not always on)": { 171 "file":"isight", 172 "streamer":"rtmp://fml.dca.12E5.edgecastcdn.net/2012E5/", 173 "height":240, 174 "width":500, 175 "plugins":"qualitymonitor" 176 }, 177 " ":{}, 178 "ASX playlist": { 179 "file":"files/asx.xml", 180 "height":240, 181 "width":800, 182 "playlist":"right", 183 "playlistsize":400 184 }, 185 "ATOM playlist": { 186 "file":"files/atom.xml", 187 "height":240, 188 "width":800, 189 "playlist":"right", 190 "playlistsize":400 191 }, 192 "iRSS playlist": { 193 "file":"files/irss.xml", 194 "height":240, 195 "width":800, 196 "playlist":"right", 197 "playlistsize":400 198 }, 199 "mRSS playlist": { 200 "file":"files/mrss.xml", 201 "height":240, 202 "width":800, 203 "playlist":"right", 204 "playlistsize":400 205 }, 206 "SMIL playlist": { 207 "file":"files/smil.xml", 208 "height":240, 209 "width":800, 210 "playlist":"right", 211 "playlistsize":400 212 }, 213 "XSPF playlist": { 214 "file":"files/xspf.xml", 215 "height":240, 216 "width":800, 217 "playlist":"right", 218 "playlistsize":400 219 }, 220 " ": {}, 221 "Highwinds dynamic stream": { 222 "file":"files/highwinds.xml", 223 "height":240, 224 "width":500, 225 "plugins":"qualitymonitor" 226 }, 227 "CloudFront playlist": { 228 "file":"files/cloudfront.xml", 229 "height":240, 230 "width":800, 231 "playlist":"right", 232 "playlistsize":400, 233 "plugins":"qualitymonitor" 234 }, 235 " ": {}, 236 "Agegate plugin": { 237 "file":"files/corrie.flv", 238 "height":240, 239 "width":500, 240 "plugins":"agegate", 241 "agegate.minage":18 242 }, 243 "Audiodescription and captions plugins": { 244 "file":"files/corrie.flv", 245 "height":240, 246 "width":500, 247 "plugins":"audiodescription,captions", 248 "audiodescription.file":"files/corrie.mp3", 249 "captions.file":"files/corrie.xml" 250 }, 251 "Audiodescription and captions plugins (2)": { 252 "file":"files/accessibility.xml", 253 "height":325, 254 "width":800, 255 "playlist":"right", 256 "playlistsize":260, 257 "volume":90, 258 "dock":false, 259 "plugins":"audiodescription,captions", 260 "audiodescription.ducking":80, 261 "audiodescription.debug":true, 262 "captions.back":true, 263 "captions.fontsize":18 264 }, 265 "HD plugin": { 266 "file":"files/bunny.flv", 267 "height":240, 268 "width":500, 269 "plugins":"hd", 270 "dock":"true", 271 "hd.file":"files/bunny.mp4" 272 }, 273 "Searchbar plugin": { 274 "file":"http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?v=2", 275 "playlist":"over", 276 "height":260, 277 "width":460, 278 "plugins":"searchbar", 279 "searchbar.script": "http://gdata.youtube.com/feeds/api/videos?vq=QUERY&format=5" 280 }, 281 "Sharing plugin": { 282 "dock":true, 283 "file":"files/bunny.flv", 284 "height":260, 285 "width":460, 286 "plugins":"sharing", 287 "sharing.code":"%3Cembed%20src%3D%22http%3A%2F%2Fcontent.bitsontherun.com%2Fplayers%2FnPripu9l-1754.swf%22%20width%3D%22400%22%20height%3D%22250%22%20allowscriptaccess%3D%22always%22%20%2F%3E", 288 "sharing.link":"http://www.bigbuckbunny.org/" 289 }, 290 " ": {}, 291 "Default skin with different colors": { 292 "file":"files/mrss.xml", 293 "height":300, 294 "width":500, 295 "controlbar": "over", 296 "playlist":"bottom", 297 "playlistsize":"50pct", 298 "backcolor":"333333", 299 "frontcolor":"CCCCCC", 300 "lightcolor":"77AA22", 301 "screencolor":"FFFFFF" 302 }, 303 "Different skin with HD playlist": { 304 "file":"files/hd.xml", 305 "height":240, 306 "width":800, 307 "controlbar":"over", 308 "playlist":"right", 309 "playlistsize":400, 310 "skin":"beelden", 311 "plugins":"hd" 312 }, 313 "Stretched, stacked and muted": { 314 "file":"files/mrss.xml", 315 "stretching":"fill", 316 "height":240, 317 "width":600, 318 "playlist":"over", 319 "controlbar":"over", 320 "mute":"true", 321 "playlistsize":400 322 }, 323 "Loading from config xml": { 324 "config":"files/config.xml", 325 "height":240, 326 "width":500 327 }, 328 "Start and duration flashvars": { 329 "file":"files/bunny.mp3", 330 "height":24, 331 "width":400, 332 "start":5, 333 "duration":15, 334 "repeat":"always", 335 "autostart":"true" 37 /** Available plugins to test. * */ 38 "plugins" : {}, 39 /** Avaliable skins to test. * */ 40 "skins" : { 41 " " : " ", 42 "beelden" : "../skins/beelden/beelden.xml", 43 "bekle" : "../skins/bekle/bekle.xml", 44 "bluemetal" : "../skins/bluemetal/bluemetal.xml", 45 "classic" : "../skins/classic/classic.xml", 46 "five" : "../skins/five/five.xml", 47 "glow" : "../../../skins/glow/glow.xml", 48 "lulu" : "../skins/lulu/lulu.xml", 49 "modieus" : "../skins/modieus/modieus.xml", 50 "playcasso" : "../skins/playcasso/playcasso.xml", 51 "snel" : "../skins/snel/snel.xml", 52 "stijl" : "../skins/stijl/stijl.xml", 53 "stormtrooper" : "../skins/stormtrooper/stormtrooper.xml", 54 " " : " ", 55 "bekle_swf" : "../skins/bekle/bekle.swf", 56 "bluemetal_swf" : "../skins/bluemetal/bluemetal.swf", 57 "classic_swf" : "../skins/classic/classic.swf", 58 "five_swf" : "../skins/five/five.swf", 59 "icecreamsneaka_swf" : "../skins/icecreamsneaka/icecreamsneaka.swf", 60 "modieus_swf" : "../skins/modieus/modieus.swf", 61 "playcasso_swf" : "../skins/playcasso/playcasso.swf", 62 "snel_swf" : "../skins/snel/snel.swf", 63 "stijl_swf" : "../skins/stijl/stijl.swf" 64 }, 65 /** All the setup examples with their flashvars. * */ 66 "examples" : { 67 " " : {}, 68 69 "MP4 video" : { 70 "file" : "http://playertest.longtailvideo.com/bunny.mp4", 71 "image" : "http://playertest.longtailvideo.com/bunny.jpg", 72 "height" : 240, 73 "width" : 400 74 }, 75 76 "Single video with event listeners" : { 77 "file" : "http://playertest.longtailvideo.com/bunny.mp4", 78 "image" : "http://playertest.longtailvideo.com/bunny.jpg", 79 "height" : 240, 80 "width" : 400, 81 "onBuffer" : "function() { alert('Buffering'); }", 82 "onBufferFull" : "function() { alert('Buffer full'); }", 83 "onError" : "function() { alert('Error'); }", 84 "onMeta" : "function() { alert('Metadata received'); }", 85 "onMute" : "function(evt) { alert('Player ' + (evt.mute ? 'muted' : 'unmuted')); }", 86 "onPlaylist" : "function() { alert('Playlist loaded'); }", 87 "onPlaylistItem" : "function() { alert('New playlist item'); }", 88 "onReady" : "function() { alert('Player is ready'); }", 89 "onResize" : "function() { alert('Player has been resized'); }", 90 "onPlay" : "function() { alert('Playing'); }", 91 "onPause" : "function() { alert('Paused'); }", 92 "onIdle" : "function() { alert('Idle'); }", 93 "onComplete" : "function() { alert('Complete'); }", 94 "onTime" : "function(evt) { if (window.console && console.log) { console.log('Time: ' + evt.position); } }", 95 "onVolume" : "function(evt) { alert('Volume changed to ' + evt.volume); }" 96 }, 97 98 "Youtube video" : { 99 "file" : "http://youtube.com/watch?v=IBTE-RoMsvw", 100 "height" : 240, 101 "width" : 400 102 }, 103 104 " " : {}, 105 "HTML5 Only" : {}, 106 "----" : {}, 107 108 "OGV video (FF / Chrome)" : { 109 "file" : "http://playertest.longtailvideo.com/bunny.ogv", 110 "image" : "http://playertest.longtailvideo.com/bunny.jpg", 111 "height" : 240, 112 "width" : 400 113 }, 114 115 " " : {}, 116 "Flash Only" : {}, 117 "---- " : {}, 118 119 "FLV video" : { 120 "file" : "http://playertest.longtailvideo.com/bunny.flv", 121 "image" : "http://playertest.longtailvideo.com/bunny.jpg", 122 "height" : 240, 123 "width" : 400, 124 "onBuffer" : "function(){'hi how are %20?'}" 125 }, 126 127 "MP3 audio" : { 128 "file" : "http://playertest.longtailvideo.com/bunny.mp3", 129 "height" : 24, 130 "width" : 400 131 }, 132 "AAC audio" : { 133 "file" : "http://playertest.longtailvideo.com/bunny.m4a", 134 "image" : "http://playertest.longtailvideo.com/bunny.jpg", 135 "height" : 240, 136 "width" : 400 137 }, 138 "JPG image" : { 139 "file" : "http://playertest.longtailvideo.com/bunny.jpg", 140 "height" : 240, 141 "width" : 400 142 }, 143 144 "---- " : {}, 145 "HTTP streamed FLV" : { 146 "file" : "http://content.bitsontherun.com/videos/Qvxp3Jnv-68183.flv", 147 "provider" : "http", 148 "height" : 240, 149 "width" : 400, 150 "http.startparam" : "apstart" 151 }, 152 "HTTP streamed MP4" : { 153 "file" : "http://content.bitsontherun.com/videos/Qvxp3Jnv-483.mp4", 154 "provider" : "http", 155 "height" : 240, 156 "width" : 400, 157 "http.startparam" : "starttime" 158 }, 159 "HTTP bitrate switching" : { 160 "file" : "http://playertest.longtailvideo.com/bitrates.xml", 161 "height" : 240, 162 "width" : 400, 163 "plugins" : "qualitymonitor" 164 }, 165 "RTMP streamed FLV" : { 166 "file" : "videos/Qvxp3Jnv-68183.flv", 167 "streamer" : "rtmp://fms.12E5.edgecastcdn.net/0012E5", 168 "height" : 240, 169 "width" : 400 170 }, 171 "RTMP streamed MP4" : { 172 "file" : "videos/Qvxp3Jnv-483.mp4", 173 "streamer" : "rtmp://fms.12E5.edgecastcdn.net/0012E5", 174 "height" : 240, 175 "width" : 400 176 }, 177 "RTMP dynamic stream" : { 178 "file" : "http://playertest.longtailvideo.com/dynamic.xml", 179 "height" : 240, 180 "width" : 500, 181 "plugins" : "qualitymonitor" 182 }, 183 "RTMP live stream (not always on)" : { 184 "file" : "isight", 185 "streamer" : "rtmp://fml.dca.12E5.edgecastcdn.net/2012E5/", 186 "height" : 240, 187 "width" : 500, 188 "plugins" : "qualitymonitor" 189 }, 190 " " : {}, 191 "ASX playlist" : { 192 "file" : "http://playertest.longtailvideo.com/asx.xml", 193 "height" : 240, 194 "width" : 800, 195 "playlist" : "right", 196 "playlistsize" : 400 197 }, 198 "ATOM playlist" : { 199 "file" : "http://playertest.longtailvideo.com/atom.xml", 200 "height" : 240, 201 "width" : 800, 202 "playlist" : "right", 203 "playlistsize" : 400 204 }, 205 "iRSS playlist" : { 206 "file" : "http://playertest.longtailvideo.com/irss.xml", 207 "height" : 240, 208 "width" : 800, 209 "playlist" : "right", 210 "playlistsize" : 400 211 }, 212 "mRSS playlist" : { 213 "file" : "http://playertest.longtailvideo.com/mrss.xml", 214 "height" : 240, 215 "width" : 800, 216 "playlist" : "right", 217 "playlistsize" : 400 218 }, 219 "SMIL playlist" : { 220 "file" : "http://playertest.longtailvideo.com/smil.xml", 221 "height" : 240, 222 "width" : 800, 223 "playlist" : "right", 224 "playlistsize" : 400 225 }, 226 "XSPF playlist" : { 227 "file" : "http://playertest.longtailvideo.com/xspf.xml", 228 "height" : 240, 229 "width" : 800, 230 "playlist" : "right", 231 "playlistsize" : 400 232 }, 233 " " : {}, 234 "Highwinds dynamic stream" : { 235 "file" : "http://playertest.longtailvideo.com/highwinds.xml", 236 "height" : 240, 237 "width" : 500, 238 "plugins" : "qualitymonitor" 239 }, 240 "CloudFront playlist" : { 241 "file" : "http://playertest.longtailvideo.com/cloudfront.xml", 242 "height" : 240, 243 "width" : 800, 244 "playlist" : "right", 245 "playlistsize" : 400, 246 "plugins" : "qualitymonitor" 247 }, 248 " " : {}, 249 "Agegate plugin" : { 250 "file" : "http://playertest.longtailvideo.com/corrie.flv", 251 "height" : 240, 252 "width" : 500, 253 "plugins" : "agegate", 254 "agegate.minage" : 18 255 }, 256 "Audiodescription and captions plugins" : { 257 "file" : "http://playertest.longtailvideo.com/corrie.flv", 258 "height" : 240, 259 "width" : 500, 260 "plugins" : "audiodescription,captions", 261 "audiodescription.file" : "http://playertest.longtailvideo.com/corrie.mp3", 262 "captions.file" : "http://playertest.longtailvideo.com/corrie.xml" 263 }, 264 "Audiodescription and captions plugins (2)" : { 265 "file" : "http://playertest.longtailvideo.com/accessibility.xml", 266 "height" : 325, 267 "width" : 800, 268 "playlist" : "right", 269 "playlistsize" : 260, 270 "volume" : 90, 271 "dock" : false, 272 "plugins" : "audiodescription,captions", 273 "audiodescription.ducking" : 80, 274 "audiodescription.debug" : true, 275 "captions.back" : true, 276 "captions.fontsize" : 18 277 }, 278 "HD plugin" : { 279 "file" : "http://playertest.longtailvideo.com/bunny.flv", 280 "height" : 240, 281 "width" : 500, 282 "plugins" : "hd", 283 "dock" : "true", 284 "hd.file" : "http://playertest.longtailvideo.com/bunny.mp4" 285 }, 286 "Searchbar plugin" : { 287 "file" : "http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?v=2", 288 "playlist" : "over", 289 "height" : 260, 290 "width" : 460, 291 "plugins" : "searchbar", 292 "searchbar.script" : "http://gdata.youtube.com/feeds/api/videos?vq=QUERY&format=5" 293 }, 294 "Sharing plugin" : { 295 "dock" : true, 296 "file" : "http://playertest.longtailvideo.com/bunny.flv", 297 "height" : 260, 298 "width" : 460, 299 "plugins" : "sharing", 300 "sharing.code" : "%3Cembed%20src%3D%22http%3A%2F%2Fcontent.bitsontherun.com%2Fplayers%2FnPripu9l-1754.swf%22%20width%3D%22400%22%20height%3D%22250%22%20allowscriptaccess%3D%22always%22%20%2F%3E", 301 "sharing.link" : "http://www.bigbuckbunny.org/" 302 }, 303 " " : {}, 304 "Default skin with different colors" : { 305 "file" : "http://playertest.longtailvideo.com/mrss.xml", 306 "height" : 300, 307 "width" : 500, 308 "controlbar" : "over", 309 "playlist" : "bottom", 310 "playlistsize" : "50pct", 311 "backcolor" : "333333", 312 "frontcolor" : "CCCCCC", 313 "lightcolor" : "77AA22", 314 "screencolor" : "FFFFFF" 315 }, 316 "Different skin with HD playlist" : { 317 "file" : "http://playertest.longtailvideo.com/hd.xml", 318 "height" : 240, 319 "width" : 800, 320 "controlbar" : "over", 321 "playlist" : "right", 322 "playlistsize" : 400, 323 "skin" : "beelden", 324 "plugins" : "hd" 325 }, 326 "Stretched, stacked and muted" : { 327 "file" : "http://playertest.longtailvideo.com/mrss.xml", 328 "stretching" : "fill", 329 "height" : 240, 330 "width" : 600, 331 "playlist" : "over", 332 "controlbar" : "over", 333 "mute" : "true", 334 "playlistsize" : 400 335 }, 336 "Loading from config xml" : { 337 "config" : "http://playertest.longtailvideo.com/config.xml", 338 "height" : 240, 339 "width" : 500 340 }, 341 "Start and duration flashvars" : { 342 "file" : "http://playertest.longtailvideo.com/bunny.mp3", 343 "height" : 24, 344 "width" : 400, 345 "start" : 5, 346 "duration" : 15, 347 "repeat" : "always", 348 "autostart" : "true" 336 349 } 337 350 }
Note: See TracChangeset
for help on using the changeset viewer.
