flexPartyPlayer 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +6 -0
- data/README +45 -0
- data/lib/corelib-08.30.2007.swc +0 -0
- data/lib/flexPartyPlayer.rb +42 -0
- data/lib/flexunit-08.30.2007.swc +0 -0
- data/sample.json +1 -0
- data/script/destroy +14 -0
- data/script/flex_compile +2 -0
- data/script/generate +14 -0
- data/src/FlexPlayer.mxml +34 -0
- data/src/assets/app_icons/icon_128.png +0 -0
- data/src/cc/varga/mvc/ApplicationContext.as +120 -0
- data/src/cc/varga/mvc/commands/data/LoadArtistDataCommand.as +61 -0
- data/src/cc/varga/mvc/commands/playlist/AddItemToPlaylist.as +13 -0
- data/src/cc/varga/mvc/commands/playlist/LoadPlaylistCommand.as +109 -0
- data/src/cc/varga/mvc/commands/system/DrawPlaylist.as +40 -0
- data/src/cc/varga/mvc/commands/system/Shutdown.as +51 -0
- data/src/cc/varga/mvc/commands/system/Startup.as +57 -0
- data/src/cc/varga/mvc/commands/video/AddVideoCommand.as +55 -0
- data/src/cc/varga/mvc/events/appBar/AppBarEvent.as +16 -0
- data/src/cc/varga/mvc/events/blipfm/feedloader/FeedLoaderEvent.as +17 -0
- data/src/cc/varga/mvc/events/controllers/ControllersEvent.as +59 -0
- data/src/cc/varga/mvc/events/menu/MenuEvent.as +13 -0
- data/src/cc/varga/mvc/events/player/PlayerEvent.as +29 -0
- data/src/cc/varga/mvc/events/playlist/PlaylistEvent.as +16 -0
- data/src/cc/varga/mvc/events/playlist/PlaylistURLEvent.as +57 -0
- data/src/cc/varga/mvc/events/playlist/controller/PlaylistControllerEvent.as +59 -0
- data/src/cc/varga/mvc/events/search/SearchEvent.as +17 -0
- data/src/cc/varga/mvc/events/serveradmin/ServerAdminEvent.as +15 -0
- data/src/cc/varga/mvc/events/sound/SoundEvent.as +16 -0
- data/src/cc/varga/mvc/events/system/SystemEvent.as +24 -0
- data/src/cc/varga/mvc/models/data/AppDataModel.as +17 -0
- data/src/cc/varga/mvc/models/player/PlayerModel.as +76 -0
- data/src/cc/varga/mvc/models/playlist/PlaylistModel.as +118 -0
- data/src/cc/varga/mvc/models/sound/ISound.as +12 -0
- data/src/cc/varga/mvc/models/sound/SoundModel.as +284 -0
- data/src/cc/varga/mvc/models/sound/SoundModelPlayer.as +8 -0
- data/src/cc/varga/mvc/services/KeyboardControl.as +60 -0
- data/src/cc/varga/mvc/views/blipfm/feedloader/FeedLoader.mxml +34 -0
- data/src/cc/varga/mvc/views/blipfm/feedloader/FeedLoaderMediator.as +68 -0
- data/src/cc/varga/mvc/views/controllers/Controllers.mxml +36 -0
- data/src/cc/varga/mvc/views/controllers/ControllersMediator.as +107 -0
- data/src/cc/varga/mvc/views/infoDisplay/InfoDisplay.mxml +20 -0
- data/src/cc/varga/mvc/views/infoDisplay/InfoDisplayMediator.as +51 -0
- data/src/cc/varga/mvc/views/menu/Menu.mxml +28 -0
- data/src/cc/varga/mvc/views/menu/MenuMediator.as +30 -0
- data/src/cc/varga/mvc/views/player/PlayerItem.mxml +11 -0
- data/src/cc/varga/mvc/views/player/PlayerWindow.mxml +73 -0
- data/src/cc/varga/mvc/views/player/PlayerWindowMediator.as +136 -0
- data/src/cc/varga/mvc/views/playlist/Playlist.mxml +22 -0
- data/src/cc/varga/mvc/views/playlist/PlaylistMediator.as +117 -0
- data/src/cc/varga/mvc/views/playlist/PlaylistStates.as +10 -0
- data/src/cc/varga/mvc/views/playlistItem/PlaylistItem.mxml +94 -0
- data/src/cc/varga/mvc/views/playlistItem/PlaylistItemMediator.as +87 -0
- data/src/cc/varga/mvc/views/playlistManager/PlaylistManager.mxml +7 -0
- data/src/cc/varga/mvc/views/playlistManager/PlaylistManagerMediator.as +15 -0
- data/src/cc/varga/mvc/views/playlisturl/PlaylistURL.mxml +41 -0
- data/src/cc/varga/mvc/views/playlisturl/PlaylistURLMediator.as +87 -0
- data/src/cc/varga/mvc/views/playlisturl/controller/PlaylistController.mxml +37 -0
- data/src/cc/varga/mvc/views/playlisturl/controller/PlaylistControllerMediator.as +79 -0
- data/src/cc/varga/mvc/views/search/Search.mxml +26 -0
- data/src/cc/varga/mvc/views/search/SearchMediator.as +31 -0
- data/src/cc/varga/mvc/views/server/administration/ServerAdmin.mxml +26 -0
- data/src/cc/varga/mvc/views/server/administration/ServerAdminMediator.as +51 -0
- data/src/cc/varga/mvc/views/visualisation/Visualisation.mxml +8 -0
- data/src/cc/varga/mvc/views/visualisation/VisualisationMediator.as +51 -0
- data/src/cc/varga/utils/URLHelper.as +52 -0
- data/src/cc/varga/utils/logging/Logger.as +94 -0
- data/src/com/automatastudios/audio/audiodecoder/AudioDecoder.as +84 -0
- data/src/com/automatastudios/audio/audiodecoder/decoders/AudioInfo.as +52 -0
- data/src/com/automatastudios/audio/audiodecoder/decoders/IDecoder.as +13 -0
- data/src/com/automatastudios/audio/audiodecoder/decoders/OggVorbisDecoder.as +221 -0
- data/src/com/automatastudios/audio/audiodecoder/decoders/WAVDecoder.as +325 -0
- data/src/com/automatastudios/audio/audiodecoder/events/AudioDecoderEvent.as +13 -0
- data/src/com/automatastudios/data/riff/RIFFChunkInfo.as +6 -0
- data/src/com/automatastudios/data/riff/RIFFParser.as +175 -0
- data/src/libs/appinf/appinf.json +0 -0
- data/src/libs/appinf/config.json +0 -0
- data/src/libs/appinf/sample.json +1 -0
- data/src/libs/appinf/server.json +0 -0
- data/src/nl/flexcoders/controls/YouTubePlayer.as +317 -0
- data/test/Test-app.xml +40 -0
- data/test/Test.mxml +35 -0
- data/views/jukebox.haml +30 -0
- metadata +157 -0
@@ -0,0 +1 @@
|
|
1
|
+
[{"embed_url":"http://www.youtube.com/v/AW94AEmzFhQ&feature=youtube_gdata","blip_id":"30862949","written_by":["fafb366bfa7942f20e1fd77c42f213ec"],"created_at":"2009/12/29 00:38:15 +0000","_rev":"11-6b37925c2d81a41a12fa4bc21bc69886","video_id":"AW94AEmzFhQ","title":"Official Video","updated_at":"2009/12/30 17:45:55 +0000","_id":"169f83ef2c796f65473e63f51a82818b","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v23.lscache1.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900161&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=9A763D04C0F6873BDA6D609BF08F3EB77CF838D7.31BB3FC230AA3E84C87ECAB5B4F89A535693BFAD&factor=1.25&id=016f780049b31614","5":"http://v24.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900161&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=9531D87356C8F80BCF00432E664BDE688DAC8483.CF89C77ECBC1953F4A2D49B4D4DD3FCF5E4CB2C3&factor=1.25&id=016f780049b31614"},"blip_user":"659032","blip_time":"2009/12/27 21:54:45 +0000","source":"YouTube","_attachments":{"video/169f83ef2c796f65473e63f51a82818b.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":7687543},"audio/169f83ef2c796f65473e63f51a82818b.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":2210684}}},{"embed_url":"http://www.youtube.com/v/sYJhhKSXOBo&feature=youtube_gdata","blip_id":"29612223","written_by":["a22dd207942ba55d24598fca1c847855"],"_rev":"11-d7186d2967f8517661dfc5e926a020e2","video_id":"sYJhhKSXOBo","title":"Along Comes Mary","updated_at":"2009/12/30 17:45:55 +0000","_id":"17c0fffee8acc753071a87ead807a0db","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"sudden influx of machines","available_streams":{"34":"http://v24.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=9A1197F0B5F17688A74511EBFEB233E23BC72B14.04038EDA50434C0E492D537113182C6CCCA01ADD&factor=1.25&id=b1826184a497381a","5":"http://v14.lscache3.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=68368803CC73733F32FD66A129655CCB38E7E241.9DEA1CB4E5AF4B6EF2FF66D88CAFDEBA6609FFC4&factor=1.25&id=b1826184a497381a"},"blip_user":"407605","blip_time":"2009/12/11 13:39:03 +0000","source":"YouTube","_attachments":{"video/17c0fffee8acc753071a87ead807a0db.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":13970579},"audio/17c0fffee8acc753071a87ead807a0db.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":1345209}}},{"embed_url":"http://www.youtube.com/v/FeMKM-eQPB4&feature=youtube_gdata","blip_id":"30624703","written_by":["7f2fbb8fa38636927d492a30a10cc32a"],"_rev":"11-af3dc6b5f489aba5217ce03d383c78f7","video_id":"FeMKM-eQPB4","title":"changes (Original Version)","updated_at":"2009/12/30 17:45:55 +0000","_id":"18cf9046b522cd26a21a1b983b07461f","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v23.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=43622F2FA2EC02ECD933746BF3E2316C6CA62900.4ED3EA220F86A6AA043C69A07D1BC7C4F11F7CE7&factor=1.25&id=15e30a33e7903c1e","18":"http://v7.lscache3.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=8771786F2A12759BCADDB6508842316C5D59B4FF.6D6852E22C8D784CCC02C1224162912B14737065&factor=1.25&id=15e30a33e7903c1e","5":"http://v21.lscache1.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=C1594572E791518864A90BF455C89D2477D83FCB.B880AAF913FD0D96A0C7E96FCF5AEBB281F722B8&factor=1.25&id=15e30a33e7903c1e"},"blip_user":"383807","blip_time":"2009/12/23 21:19:02 +0000","source":"YouTube","_attachments":{"audio/18cf9046b522cd26a21a1b983b07461f.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":4526813},"video/18cf9046b522cd26a21a1b983b07461f.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":9284614}}},{"reblip_id":"30859594","blip_id":"30902377","written_by":["4bcdfde98686bc60cb8cccc6dce5b7d0"],"created_at":"2009/12/29 14:15:17 +0000","_rev":"5-ea45e8aa594bad431442a2407345ed34","title":"Stepping Razor","updated_at":"2009/12/30 17:45:55 +0000","_id":"2495fa292142c7c2b7e11c2cb1574725","url":"http://www.northerncomfort.co.uk/wp-content/uploads/2007/05/peter-tosh-04-stepping-razor.mp3","tags":[],"bitrate":"192000","blip_user":"383807","blip_time":"2009/12/28 13:38:41 +0000","source":"HTTP","_attachments":{"audio/2495fa292142c7c2b7e11c2cb1574725.mp3":{"content_type":"audio/mpeg","stub":true,"revpos":3,"length":8374419}}},{"embed_url":"http://www.youtube.com/v/2cZfzch8vDo&feature=youtube_gdata","blip_id":"30859735","written_by":["95d81e8f48b503f7b86e78b4e2e36729"],"created_at":"2009/12/29 00:38:16 +0000","_rev":"11-3477fcaa1fb619ed41a086f6626a6cd7","video_id":"2cZfzch8vDo","title":"Grizzly Bear","updated_at":"2009/12/30 17:45:55 +0000","_id":"292372194c1507a255afd4b4ce156683","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v5.lscache2.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=903104&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=806EB154102DAF6DCCE85EE4E6BEC8F550542C85.6CFF0D6E38230F39ACDC6231A894F1BBDAC465DA&factor=1.25&id=d9c65fcdc87cbc3a","5":"http://v17.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=903104&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=6916222D40998B1D81460EC9B2B87F6F18FB26F9.25FADE9C3228C06133E74F538DC25549912DF76F&factor=1.25&id=d9c65fcdc87cbc3a"},"blip_user":"659032","blip_time":"2009/12/27 20:59:00 +0000","source":"YouTube","_attachments":{"video/292372194c1507a255afd4b4ce156683.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":24086475},"audio/292372194c1507a255afd4b4ce156683.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":3294902}}},{"duration":567,"embed_url":"http://www.youtube.com/v/8L64BcCRDAE&feature=youtube_gdata","written_by":["30961b3796de5c2df539720ee2e7b2fd"],"created_at":"2009/12/29 00:58:52 +0000","_rev":"10-659fb438f63a7f7c73d199eea9a975a5","video_id":"8L64BcCRDAE","title":"englar","updated_at":"2009/12/29 18:04:23 +0000","_id":"2dae6bf217b8d6f050d8d9fd8026a643","tags":["sigur","ros","new","album","studio","takk","hvarf","heim","heima","iceland","music","dot","d\u00f3t"],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v4.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=906501&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=3DD764E5437FB43CB9A53AD322839616AB08C9EB.AD764C934DFF5B58205398D758B5382260A0AA18&factor=1.25&id=f0beb805c0910c01","18":"http://v8.lscache1.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=906501&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=A570FBEFBD48C710FEC13C4A6541754034A15461.5A7B3D65567EE222637D33B059F95E8CEDECFCC5&factor=1.25&id=f0beb805c0910c01","5":"http://v1.lscache6.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=906501&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=AFD6B894601C3507DEE2092E3A8EC9593C49CBFE.0C522F506541A2FAF3195C27FE7A2CF2516D4EC7&factor=1.25&id=f0beb805c0910c01"},"source":"YouTube","_attachments":{"video/2dae6bf217b8d6f050d8d9fd8026a643.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":38543052},"audio/2dae6bf217b8d6f050d8d9fd8026a643.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":8167775}}},{"duration":370,"embed_url":"http://www.youtube.com/v/1yB52v_DgBo&feature=youtube_gdata","written_by":["2903e11df2d1d6e640eb659fd2d8f092"],"created_at":"2009/12/30 11:54:09 +0000","_rev":"6-d079020ff286725f90dd9221cad67305","video_id":"1yB52v_DgBo","title":"Mikie Dread Tv","updated_at":"2009/12/30 11:59:07 +0000","_id":"41c747036bbabbcdb308cf24e9dd2d87","tags":["maytones","money","worries","credit","crunch","reggae","vynil","45rpm","mikiedread"],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v22.lscache2.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=906501%2C903105&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262196000&key=yt1&signature=23032E0C5038CF99694716629E5438CB7A546255.ABF831EB2A38A81B46EDCC318DEB7E3F0F2BAFF0&factor=1.25&id=d72079daffc3801a","5":"http://v5.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=906501%2C903105&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262196000&key=yt1&signature=8AB08C556739BDB190A133014878401E4DA37E60.B62B523EE7019FBB58BC794EB7FE9DD9A4F259BB&factor=1.25&id=d72079daffc3801a"},"source":"YouTube","_attachments":{"audio/41c747036bbabbcdb308cf24e9dd2d87.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":6,"length":4911728},"video/41c747036bbabbcdb308cf24e9dd2d87.flv":{"content_type":"video/mp4","stub":true,"revpos":4,"length":16233863}}},{"embed_url":"http://www.youtube.com/v/aAxFc1k-2wA&feature=youtube_gdata","blip_id":"30294130","written_by":["47ccd066a10297a49dc4d0fade9e511a"],"_rev":"11-96e8a26cc033f80b6425a9d562a5893d","video_id":"aAxFc1k-2wA","title":"How Bizarre","updated_at":"2009/12/30 17:45:55 +0000","_id":"4310a83e50f2cf7028281b538f3ce67c","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"How Bizarre...","available_streams":{"34":"http://v19.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=902300%2C900650&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=2AD9EE6B9A7F2C6930C724701CEEFED14E2F04DF.6C94A6F0B52213CD5261351AEC785827CC9C6CE2&factor=1.25&id=680c4573593edb00","5":"http://v6.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=902300%2C900650&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=A35C71E9B499B4D53738EAA7C4323069011B7DF5.7702B845D06BFCC3944DF52B6D3B66B6FAF7E083&factor=1.25&id=680c4573593edb00"},"blip_user":"395829","blip_time":"2009/12/19 17:24:58 +0000","source":"YouTube","_attachments":{"video/4310a83e50f2cf7028281b538f3ce67c.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":2643970},"audio/4310a83e50f2cf7028281b538f3ce67c.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":1896870}}},{"embed_url":"http://www.youtube.com/v/d4v6kTgMaCI&feature=youtube_gdata","blip_id":"30128931","written_by":["80d57133b6cfa298dec01af2393c21fb"],"_rev":"11-0d97a1e2a0250899f7e5de6ab2ac2321","video_id":"d4v6kTgMaCI","title":"Icke und er richtig geil","updated_at":"2009/12/30 17:45:55 +0000","_id":"48d47a30987d701b076a52edc46bc901","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"richtich geil","available_streams":{"34":"http://v16.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=905207&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=43345A745D76BA412A501C7BBE035B5006FF67A4.1C2972E4DA6516AFB30835D4A1870549F0FFC696&factor=1.25&id=778bfa91380c6822","18":"http://v5.lscache3.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=905207&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=37C613510FEA74CBCBF5D9589B3E4FEBF54ADEAB.4AB48610DF88FEAD3D3AA292E21FADAE4372CFAE&factor=1.25&id=778bfa91380c6822","5":"http://v3.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=905207&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=C23326D2573727C2418F227A52094610D4A7A46E.96408F7CBFBB8620BFDFA9D696487B4BE8AE0E67&factor=1.25&id=778bfa91380c6822"},"blip_user":"407605","blip_time":"2009/12/17 16:23:32 +0000","source":"YouTube","_attachments":{"video/48d47a30987d701b076a52edc46bc901.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":15370670},"audio/48d47a30987d701b076a52edc46bc901.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":3003944}}},{"duration":293,"embed_url":"http://www.youtube.com/v/QgG3-gq3Be0&feature=youtube_gdata","written_by":["ce4e00c17113ee2e57fbeac0540ef7a1"],"created_at":"2009/12/30 13:57:29 +0000","_rev":"6-f182ecddf3c0f9dd6abb68f8ec888da4","video_id":"QgG3-gq3Be0","title":"Hold Up","updated_at":"2009/12/30 14:12:22 +0000","_id":"4ac02f45f6c68a3b1eb79cb516cf67ed","tags":["exjxsxn","saian","supa","crew","les","hip","hop","headz","rap","francais","Live"],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v3.lscache6.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900064&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262203200&key=yt1&signature=D627613469596A37D0F2D78026A0171441D914E5.6F0D9545D57F786FA33137A4B52738DC1AAA474A&factor=1.25&id=4201b7fa0ab705ed","5":"http://v9.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900064&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262203200&key=yt1&signature=98F880164C706C8686C0200A4905282F6AD43112.B8EEA3A382BDDB0DDC50511C46DB382EC8B7D95C&factor=1.25&id=4201b7fa0ab705ed"},"source":"YouTube","_attachments":{"audio/4ac02f45f6c68a3b1eb79cb516cf67ed.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":6,"length":2478780},"video/4ac02f45f6c68a3b1eb79cb516cf67ed.flv":{"content_type":"video/mp4","stub":true,"revpos":4,"length":10004405}}},{"embed_url":"http://www.youtube.com/v/jI3FB7XQ1_4&feature=youtube_gdata","blip_id":"30729813","written_by":["ec870d6c932e3c0dc58ae9f51306c015"],"_rev":"11-33cdfcfaf1a1fd78ac0c9417cb4c592d","video_id":"jI3FB7XQ1_4","title":"Saft","updated_at":"2009/12/30 17:45:55 +0000","_id":"555a9997c6295e05329cdd6904c9e1eb","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"oh ja...","available_streams":{"34":"http://v22.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=55BD5499AD01D5EF00E88B534B7F9EED12509CEA.AFA77CAC1BFF21337D49098EEE66E132FC0A3B6B&factor=1.25&id=8c8dc507b5d0d7fe","18":"http://v19.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=208DA1B08CE965D2A488E5EEDE2B662F0756ECF9.09536177D017F31C677F17F9AEDD243487BC2E62&factor=1.25&id=8c8dc507b5d0d7fe","5":"http://v24.lscache2.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=717AD1918FEC5AE0B39444E2DB0055B645230DB2.CD2DB51E559DD9C13A7DE1155B603B20D00E848C&factor=1.25&id=8c8dc507b5d0d7fe"},"blip_user":"656599","blip_time":"2009/12/25 14:36:19 +0000","source":"YouTube","_attachments":{"audio/555a9997c6295e05329cdd6904c9e1eb.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":2317398},"video/555a9997c6295e05329cdd6904c9e1eb.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":12568876}}},{"embed_url":"http://www.youtube.com/v/4mwqY0ymbDk&feature=youtube_gdata","blip_id":"30844500","written_by":["3926f0d14a4565d27baa533ba0e6bbcd"],"created_at":"2009/12/27 19:56:35 +0000","_rev":"11-7b157ac380a773a7e79b234e6609fc59","video_id":"4mwqY0ymbDk","title":"The Kills","updated_at":"2009/12/30 17:45:56 +0000","_id":"5e10cd6cb4f684268941f74e46250315","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"gerade in dieser version ein echter favorit [reply]lmaa[/reply] klasse, dieses blip.fm","available_streams":{"34":"http://v20.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261969200&key=yt1&signature=7555115FBACBEBD77E0D19C41630E0E97EA02C02.07678AC983F24C8E28FFD5428BD8F5A4F07E64F2&factor=1.25&id=e26c2a634ca66c39","18":"http://v18.lscache2.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1261969200&key=yt1&signature=8A7EB2CF19E05E7D6736E4BD1D20ED13B6147A7C.64408EF830CB4B578827970D548239838712E71D&factor=1.25&id=e26c2a634ca66c39","5":"http://v11.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261969200&key=yt1&signature=46B2E580CE85D6097ECF679353B424E4B4970D61.17326EE17092EDE6309F9810431207A52DC3F47A&factor=1.25&id=e26c2a634ca66c39"},"blip_user":"659032","blip_time":"2009/12/27 15:58:24 +0000","source":"YouTube","_attachments":{"video/5e10cd6cb4f684268941f74e46250315.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":12371908},"audio/5e10cd6cb4f684268941f74e46250315.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":2137599}}},{"blip_id":"30751057","embed_url":"http://www.youtube.com/v/AI1NgFYJCN4&feature=youtube_gdata","written_by":["a06351938edc1ff75808a153180b5454"],"created_at":"2009/12/26 22:27:26 +0000","_rev":"5-1efc482d48c2d10f68ebf948f750ddf6","video_id":"AI1NgFYJCN4","title":"Bullets","updated_at":"2009/12/30 17:45:58 +0000","_id":"70e692c2e9e69983639cf6c66b5daa1b","tags":[],"bitrate":"","blip":"nice song","blip_user":"540583","blip_time":"2009/12/25 23:58:45 +0000","source":"YouTube","_attachments":{"audio/70e692c2e9e69983639cf6c66b5daa1b.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":3,"length":3472167}}},{"embed_url":"http://www.youtube.com/v/SqVqPZ47seg&feature=youtube_gdata","blip_id":"30669009","written_by":["0fb0cad6abb24d6dfab64c8a1e5c7a5c"],"_rev":"11-84cd17d5907ae3fdce19d4c9e1ac3228","video_id":"SqVqPZ47seg","title":"The Dresden Dolls","updated_at":"2009/12/30 17:45:58 +0000","_id":"712f85c64217826d8a4bd5426097256f","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v16.lscache2.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900017%2C906501&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=2FDC780C6882E285AB50B515177AF27CAD593487.A8FE99F9EB7158DC8E29EF8FA0F5546A5CD80A26&factor=1.25&id=4aa56a3d9e3bb1e8","18":"http://v5.lscache3.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900017%2C906501&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=6D4F98F731C3740C228AA46D588640E0DAD995A0.99DCCEB0BE5DC3198A165D158E3F1BDEADBE16E5&factor=1.25&id=4aa56a3d9e3bb1e8","5":"http://v14.lscache3.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900017%2C906501&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=5BE73B75BB9DAC68C1865D60EF8E897409F4FC83.9F05AEAA1BA52356AC28CF1035E42B91F34A7559&factor=1.25&id=4aa56a3d9e3bb1e8"},"blip_user":"656599","blip_time":"2009/12/24 12:49:55 +0000","source":"YouTube","_attachments":{"video/712f85c64217826d8a4bd5426097256f.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":27516686},"audio/712f85c64217826d8a4bd5426097256f.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":6244483}}},{"embed_url":"http://www.youtube.com/v/ZO7ZWfvCjBE&feature=youtube_gdata","blip_id":"17571980","written_by":["a9c47c65fa7a85afbb4af3a5b84c0f27"],"created_at":"2009/12/29 00:48:23 +0000","_rev":"11-fa6fd08c45d85583431e720edee921ed","video_id":"ZO7ZWfvCjBE","title":"Intervention","updated_at":"2009/12/30 17:45:58 +0000","_id":"74fae4107f1ef8bcde318e071e926314","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"[reply]lmaa[/reply][reply]Mitja[/reply][reply]sk8y_kati[/reply][reply]stenno[/reply]","available_streams":{"34":"http://v20.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=903707&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=58ED1E255E9D0ED74BDC2B5523A3375F11546DC9.5FBF8523E743F3FCD299DE52BF9CB0B99E0083D2&factor=1.25&id=64eed959fbc28c11","5":"http://v2.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=903707&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=D591AC818B044EE6563B36F823B118F5C3E31B18.CB01612BA08CA7BAC4C21D54EA3D5B5AA1AAA409&factor=1.25&id=64eed959fbc28c11"},"blip_user":"416045","blip_time":"2009/07/23 13:04:46 +0000","source":"YouTube","_attachments":{"audio/74fae4107f1ef8bcde318e071e926314.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":2276492},"video/74fae4107f1ef8bcde318e071e926314.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":8586000}}},{"embed_url":"http://www.youtube.com/v/6OsTUnkqSi4&feature=youtube_gdata","blip_id":"30861979","written_by":["8cbf168973da1f5a20d065b497af9cb0"],"created_at":"2009/12/29 00:38:16 +0000","_rev":"11-34e3ab776cfa588baec2dc5f46ebddbb","video_id":"6OsTUnkqSi4","title":"\"Let's Go Surfing\" Music Video","updated_at":"2009/12/30 17:45:58 +0000","_id":"77b5fe19020619ddc256c8736603d14d","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"like this one *whistle","available_streams":{"22":"http://v3.lscache2.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Cratebypass&fexp=905901&itag=22&ipbits=0&sver=3&ratebypass=yes&expire=1262070000&key=yt1&signature=B9A478A0CD1200CC4DCDA5050DF03D5B5CAC77A6.191A988CA33F14514A610496C711CB9A25F966CF&id=e8eb1352792a4a2e","34":"http://v16.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=905901&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=195C255898BEF97B40A78F729CC3B2B4E57891E1.63B658BF8291F76AA50DC554D7A738CAC0874282&factor=1.25&id=e8eb1352792a4a2e","35":"http://v21.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=905901&algorithm=throttle-factor&itag=35&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=BB723A8996430E6C56E711017ED468ABF5DF03E5.7D477D631637E713560814FA4B7AEEF424C2C307&factor=1.25&id=e8eb1352792a4a2e","5":"http://v19.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=905901&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=414679B8E1A2BF643BF9C4107011BD2FF86C7A0B.D5EDEA31DA6ED0C1329FB6983997BD9824AA8E54&factor=1.25&id=e8eb1352792a4a2e"},"blip_user":"659032","blip_time":"2009/12/27 21:38:01 +0000","source":"YouTube","_attachments":{"video/77b5fe19020619ddc256c8736603d14d@720p.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":48919547},"audio/77b5fe19020619ddc256c8736603d14d.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":2861237}}},{"duration":171,"embed_url":"http://www.youtube.com/v/jTLV5-igH8A&feature=youtube_gdata","written_by":["22e211743b413a5a2d9baa5adceea0e2"],"_rev":"10-8269d1304d21d0cc3d8e54d5657ad936","video_id":"jTLV5-igH8A","title":"Silk Suits","updated_at":"2009/12/29 18:04:23 +0000","_id":"86db6152390521d5ac70d710ac1db198","tags":["Rock","KRAM","Tennis","Australian","Open","Alicia","Mollik","Spiderbait"],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v19.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900033%2C900650&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261591200&key=yt1&signature=033DA904BBB4AFA2E79DFC5247E71F39F36C9F87.5975B478611C92ABE2DAAA0DEF2054D16FFC5E9D&factor=1.25&id=8d32d5e7e8a01fc0","5":"http://v5.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900033%2C900650&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261591200&key=yt1&signature=4FA8890B8075DA85A82A9B40EC35EDC8C8B76796.3F714F444656C5038B47FE9EBC98EE37877C6910&factor=1.25&id=8d32d5e7e8a01fc0"},"source":"YouTube","appears_on_album":[],"_attachments":{"audio/86db6152390521d5ac70d710ac1db198.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":1419779},"video/86db6152390521d5ac70d710ac1db198.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":5817011}}},{"embed_url":"http://www.youtube.com/v/ly_kB85TqEU&feature=youtube_gdata","duration":283,"written_by":["011797c3a3b73c2bbb9cadd8a0113136"],"created_at":"2009/12/21 09:06:39 +0000","_rev":"11-bb33377f0aee7e6b3f9ee901b88e6832","video_id":"ly_kB85TqEU","title":"I'm Your Pusher (HQ High Quality Uncensored)","updated_at":"2009/12/29 18:04:23 +0000","_id":"87d38d8100a6e7f9ccd2eefb45a2c6bf","tags":["Ice-T","I'm","Your","Pusher","Power","Body","Count","Westcoast","Los","Angeles","Rap","Old","School","Real","Hip","Hop"],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v20.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261411200&key=yt1&signature=1AD37A0F4B4C39880A79CD0E6DFD42DA986C2179.9B4BC201703DD7ED5F25AEB52A3E5BDE156CDA2A&factor=1.25&id=972fe407ce53a845","35":"http://v18.lscache2.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=35&ipbits=0&burst=40&sver=3&expire=1261411200&key=yt1&signature=0F93DE46B3423212F7050FC7B5B95CB9F3CB9003.4B128CC556380EE837B315B9DEDCF65DFD469E30&factor=1.25&id=972fe407ce53a845","5":"http://v9.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261411200&key=yt1&signature=58B2D58111FD8D79F1E639CF42C5CCD39C09262C.58E9B8768611B9D8F171EEC59F259A1CF59C341A&factor=1.25&id=972fe407ce53a845"},"source":"YouTube","_attachments":{"video/87d38d8100a6e7f9ccd2eefb45a2c6bf@480p.flv":{"content_type":"video/x-flv","stub":true,"revpos":9,"length":46963474},"audio/87d38d8100a6e7f9ccd2eefb45a2c6bf.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":8,"length":4888956}}},{"blip_id":"31045875","embed_url":"http://www.youtube.com/v/XFZGzuP07Fg&feature=youtube_gdata","written_by":["ac4e8cdd16ec9d59d00db1f17c1b33fb"],"created_at":"2009/12/30 10:41:39 +0000","_rev":"12-89b98cee86bd80a8e57802ebfc87d968","video_id":"XFZGzuP07Fg","title":"Clueso - Gewinner (Official Video) HD","updated_at":"2009/12/30 17:45:58 +0000","_id":"9e2cf88478a396a609db3eadc9586fc8","tags":[],"deep_links_expire_at":"2009/12/30 17:00:00 +0000","blip":"einmal f\u00fcr [reply]lmaa[/reply]","available_streams":{"22":"http://v3.lscache1.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Cratebypass&fexp=904901&itag=22&ipbits=0&sver=3&ratebypass=yes&expire=1262192400&key=yt1&signature=CF3034464E19B9FEF2597D4E85A60A48FE1054E1.A7A7153A8946BBCE41E3CD321DB5B86DE58A9276&id=5c5646cee3f4ec58","34":"http://v21.lscache6.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=904901&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262192400&key=yt1&signature=9E4862B47F51C0583676DE99B71D39A59BE73718.C411F135211336E439E3861D6D434DB25B3172D5&factor=1.25&id=5c5646cee3f4ec58","35":"http://v21.lscache1.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=904901&algorithm=throttle-factor&itag=35&ipbits=0&burst=40&sver=3&expire=1262192400&key=yt1&signature=43C52EF6A7CECA36F845C86582DDAD6447AA213B.D3CBF078DAD32734323D5B2ED20BFE221EBBDFAF&factor=1.25&id=5c5646cee3f4ec58","5":"http://v7.lscache6.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=904901&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262192400&key=yt1&signature=107000821CBAD9E71F749363C104D4F0123C3389.53C73B8334958A633D91796D4E784A0A3A45C57F&factor=1.25&id=5c5646cee3f4ec58"},"blip_time":"2009/12/30 10:39:55 +0000","blip_user":"395829","source":"YouTube","_attachments":{"video/9e2cf88478a396a609db3eadc9586fc8.mp4@720p":{"content_type":"video/mp4","stub":true,"revpos":10,"length":57958977},"audio/9e2cf88478a396a609db3eadc9586fc8.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":11,"length":2723157}}},{"embed_url":"http://www.youtube.com/v/EBOv7dL3GN4&feature=youtube_gdata","blip_id":"29610413","written_by":["80d57133b6cfa298dec01af2393c21fb"],"_rev":"11-8f5f4999ddfd60d447cedab18da9f7c7","video_id":"EBOv7dL3GN4","title":"Dub FX 10/10/2008 'Step on my Trip'","updated_at":"2009/12/30 17:45:58 +0000","_id":"a7e366805581aaca15d1e9698a1afefe","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"dub fx","available_streams":{"18":"http://v11.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=903204%2C906501&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=1FBE3570D2A1EAF1B0AFDEE18E7BEA8A33406B92.17D94C0ECCAF9C0F6F2220CDD54A434E16BE6F26&factor=1.25&id=1013afedd2f718de","5":"http://v15.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=903204%2C906501&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=4E7E107E9FBE7F55A4230341C68C6C0A78E65DA6.24CA83C1BAC3B2C46690B22952A87D4A3AC691D2&factor=1.25&id=1013afedd2f718de"},"blip_user":"407605","blip_time":"2009/12/11 13:02:37 +0000","source":"YouTube","_attachments":{"video/a7e366805581aaca15d1e9698a1afefe.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":27643453},"audio/a7e366805581aaca15d1e9698a1afefe.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":4580181}}},{"embed_url":"http://www.youtube.com/v/RDUzHBDAcOo&feature=youtube_gdata","blip_id":"30680178","written_by":["41031acfe07d7f5a599f98bf5462dad8"],"_rev":"11-1639c0a812deea33d5b5a124bbdde541","video_id":"RDUzHBDAcOo","title":"I Feel It All","updated_at":"2009/12/30 17:45:58 +0000","_id":"add96e92fdd55366a6e866584aa82fe0","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"[reply]lmaa[/reply] I feel it all... love you...","available_streams":{"5":"http://v4.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=BB56F20266F082A30DAFB68B4CFFBC2F9E73D476.455F4EE6480E615D3D664B0BC5443E83798C0A71&factor=1.25&id=4435331c10c070ea"},"blip_user":"395829","blip_time":"2009/12/24 16:49:28 +0000","source":"YouTube","_attachments":{"audio/add96e92fdd55366a6e866584aa82fe0.mp3":{"content_type":"audio/mpeg","stub":true,"revpos":7,"length":1780539},"video/add96e92fdd55366a6e866584aa82fe0#22.05Khz.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":8378723}}},{"written_by":["8fce733bed5e72484efd9c42e0d1a74d"],"_rev":"4-70978f91deb235949a3d4bc85968253f","title":"Walzer F\u00fcr Niemand","updated_at":"2009/12/29 18:04:23 +0000","_id":"b56d0a22170000036c544e965feeade9","tags":["Indie"],"appears_on_album":{"a5c791947a0c67aef5d9b79c03ff5b9a":4},"_attachments":{"audio/b56d0a22170000036c544e965feeade9.mp3":{"content_type":"audio/mpeg","stub":true,"revpos":3,"length":2988868}}},{"written_by":["ac9e2d02c2d41592bb888ad471d0ab0e"],"created_at":"2010/01/01 19:29:19 +0000","_rev":"2-c98e8b3daeec793ff7e36b03e4a14936","title":"evil_baby","updated_at":"2010/01/01 19:29:19 +0000","_id":"c73a51a6d1fc245f7de6247cb00dd583","tags":[],"_attachments":{"audio/c73a51a6d1fc245f7de6247cb00dd583.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":2,"length":180251}}},{"embed_url":"http://www.youtube.com/v/r8ErPSZKJ5k&feature=youtube_gdata","blip_id":"30732736","written_by":["12cc0a8e63fc2c531ea59b949b3cd033"],"_rev":"11-1c31586a9df80968f7e5a6500628e042","video_id":"r8ErPSZKJ5k","title":"Sex on Fire[top quality][Jools Holland Show]","updated_at":"2009/12/30 17:45:58 +0000","_id":"cbf18be2c0fe0b99d6f7b22f36ec324f","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"merz, yeah!","available_streams":{"34":"http://v1.lscache3.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=B8C55C20859628DB5084496CAC9C89BCE884D6DE.9D935663DA91BE434AFD20FAFB15C7BA1AA009&factor=1.25&id=afc12b3d264a2799","18":"http://v19.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=7764E3FC7264F060BF527EF41D93404B1546A6AB.AE2CEF5B692BE55D49D7A786D4CDCB4BF9090097&factor=1.25&id=afc12b3d264a2799","5":"http://v22.lscache8.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261857600&key=yt1&signature=89446D8171357FECD335F7F3E7419D11BEA73746.7D7D41CADC777574C1B842E7EB8A843BD5458A88&factor=1.25&id=afc12b3d264a2799"},"blip_user":"374032","blip_time":"2009/12/25 16:16:31 +0000","source":"YouTube","_attachments":{"audio/cbf18be2c0fe0b99d6f7b22f36ec324f.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":2602906},"video/cbf18be2c0fe0b99d6f7b22f36ec324f.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":16841517}}},{"embed_url":"http://www.youtube.com/v/__HQGvSqZ5I&feature=youtube_gdata","blip_id":"29816671","written_by":["eb9d585d3e6a5552732f15b0a07a7083"],"_rev":"11-65e179ef2d5f11af233fe05f404eaa5d","video_id":"__HQGvSqZ5I","title":"Paper Planes (\"Slumdog Millionaire\" Movie Music Video)","updated_at":"2009/12/30 17:45:58 +0000","_id":"d0bc3296555c1fb6d4ebdfbaa8a25b3e","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"[reply]DrLeckmuschel[/reply] [reply]lmaa[/reply] [reply]SelektaKingJah[/reply] [reply]LittleBuddha87[/reply] [reply]alex_rockt[/reply] remember the summer","available_streams":{"34":"http://v1.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=902898%2C903707&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=9534B6719F2C3AA30661AB7A9CCD4E9FBEA4B21A.58E1E19055575EA44C3FE968E4F5F31635606D25&factor=1.25&id=fff1d01af4aa6792","5":"http://v12.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=902898%2C903707&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=4E1A24900E4CE58319C33006F03D1467B96C067D.8EFAD4388496EF5741A9D27CCA60C698450D17E0&factor=1.25&id=fff1d01af4aa6792"},"blip_user":"395829","blip_time":"2009/12/13 21:56:27 +0000","source":"YouTube","_attachments":{"video/d0bc3296555c1fb6d4ebdfbaa8a25b3e.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":6271318},"audio/d0bc3296555c1fb6d4ebdfbaa8a25b3e.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":1529994}}},{"embed_url":"http://www.youtube.com/v/TOvZ8ln1riQ&feature=youtube_gdata","blip_id":"30748318","written_by":["becb26cbaa26893d925904cc0bf7e453"],"_rev":"11-2c9f6201bf9df9aacab04af103c76927","video_id":"TOvZ8ln1riQ","title":"Pioneers","updated_at":"2009/12/30 17:45:58 +0000","_id":"dbf93d1e2d2cd9bb96b4742111d0a912","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"Love this song!!! but the Tunng one is also great. [reply]ChrisdaTrue[/reply] [reply]a0n[/reply]","available_streams":{"34":"http://v13.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=10D50CC7C3FB967DA4ADB87AD5FEFA3819909042.99BED9A9CA613E293393EAA90B737B574C3A8F12&factor=1.25&id=4cebd9f259f5ae24","5":"http://v16.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=9D2B8AA31CD659B2EEBE550CB4CD046154561B7A.2BCC6DD122059671D9401EC1288065EAF3DD42E2&factor=1.25&id=4cebd9f259f5ae24"},"blip_user":"374032","blip_time":"2009/12/25 22:58:42 +0000","source":"YouTube","_attachments":{"video/dbf93d1e2d2cd9bb96b4742111d0a912.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":7838234},"audio/dbf93d1e2d2cd9bb96b4742111d0a912.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":1577346}}},{"blip_id":"30265152","embed_url":"http://www.youtube.com/v/baDncBFyCDU&feature=youtube_gdata","written_by":["afe308f2b8872ebbac4faa4930d36cce"],"created_at":"2009/12/29 00:46:16 +0000","_rev":"5-a4a65d8f01d68fc6aa6e30303ccbe0d2","video_id":"baDncBFyCDU","title":"Pogo (Shinichi Osawa Remix)","updated_at":"2009/12/30 17:45:58 +0000","_id":"de68ed5268a95bf00ec5f76a9148d0f6","tags":[],"bitrate":"","blip":"Ich liebe liebe liebe es <3","blip_user":"395946","blip_time":"2009/12/19 05:28:58 +0000","source":"YouTube","_attachments":{"audio/de68ed5268a95bf00ec5f76a9148d0f6.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":3,"length":6436806}}},{"embed_url":"http://www.youtube.com/v/fFNTiPGrYf4&feature=youtube_gdata","blip_id":"29605562","written_by":["ad7a0ef9139a555df0eb3349aa73b067"],"_rev":"11-97e9815f49c71b81afe3e457f85a0d23","video_id":"fFNTiPGrYf4","title":"modest mouse","updated_at":"2009/12/30 17:45:59 +0000","_id":"e0d25b763b92a8475df875e5910f266e","tags":["original","music","video"],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"great album","available_streams":{"34":"http://v7.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900148&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=5F5E9C48F04B5A289B4F433712A5B339B6FCE8E0.8392504227FEC376D52626A61D21B8A4D4BBCF7A&factor=1.25&id=7c535388f1ab61fe","5":"http://v6.lscache1.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900148&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261861200&key=yt1&signature=7F7BE273131F5F8A44AE5A1045C6EAE95AC44A14.81ADDCE93067943DBFCFF2B93734757D804A0FBD&factor=1.25&id=7c535388f1ab61fe"},"blip_user":"407605","blip_time":"2009/12/11 10:45:00 +0000","source":"YouTube","_attachments":{"video/e0d25b763b92a8475df875e5910f266e.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":6389570},"audio/e0d25b763b92a8475df875e5910f266e.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":1945066}}},{"embed_url":"http://www.youtube.com/v/ziX7e7dO3Qg&feature=youtube_gdata","blip_id":"31013804","written_by":["da0f4747abaa398ffe3f1633458e7949"],"created_at":"2009/12/30 10:41:40 +0000","_rev":"7-65ae5d03ffab5b1ed4f8f9f3f534d04e","video_id":"ziX7e7dO3Qg","title":"Der Moment","updated_at":"2009/12/30 17:45:59 +0000","_id":"e83f02dcb1455a0b7530df040b107dac","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v13.lscache6.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262192400&key=yt1&signature=2D4157838BCBAA252CFB88259D7692C0BBB36309.5026DC31931EC0FCB10787FC1D8764C0C2680DB9&factor=1.25&id=ce25fb7bb74edd08","5":"http://v22.lscache6.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262192400&key=yt1&signature=5BFD34EF7133F01D1775C897FB76D96D05A0663E.C154AE38BFF951E6C3A0298FF38522904418CD&factor=1.25&id=ce25fb7bb74edd08"},"blip_user":"395829","blip_time":"2009/12/29 23:32:06 +0000","source":"YouTube","_attachments":{"video/e83f02dcb1455a0b7530df040b107dac.flv":{"content_type":"video/mp4","stub":true,"revpos":4,"length":7180455},"audio/e83f02dcb1455a0b7530df040b107dac.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":6,"length":1973624}}},{"embed_url":"http://www.youtube.com/v/ZGK4NCJp8oA&feature=youtube_gdata","blip_id":"19098913","written_by":["799b3d2e4b9027c09342684410e83770"],"created_at":"2009/12/29 00:48:23 +0000","_rev":"11-91e485fcbe425c091ce0e47a568781d6","video_id":"ZGK4NCJp8oA","title":"Move on up","updated_at":"2009/12/30 17:45:59 +0000","_id":"f043e51d31070d797de3eaad68a76c23","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"18":"http://v2.lscache3.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=902300%2C900032&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=605ACFE71781536FB14D60B30093252B6799FD10.2C248266DF73A55C1D02C3DF99A24F8945CB402F&factor=1.25&id=6462b8342269f280","5":"http://v6.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=902300%2C900032&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262070000&key=yt1&signature=928B691F9A698A57F4C9406C4B5B17DCA9F1FF2C.A07FD277F86E2E3EEB0538BCC02156F62ED0BD82&factor=1.25&id=6462b8342269f280"},"blip_user":"416045","blip_time":"2009/08/08 16:38:58 +0000","source":"YouTube","_attachments":{"audio/f043e51d31070d797de3eaad68a76c23.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":2603373},"video/f043e51d31070d797de3eaad68a76c23.mp4":{"content_type":"video/mp4","stub":true,"revpos":8,"length":12616592}}},{"embed_url":"http://www.youtube.com/v/Q19nTsKF3LI&feature=youtube_gdata","blip_id":"30847486","written_by":["1594e902f1f4f8a1f7696f04c4a1e5b2"],"created_at":"2009/12/27 19:56:35 +0000","_rev":"13-afc3b3d78089a37dce60cad238c6b02b","video_id":"Q19nTsKF3LI","title":"Wasted State of Mind [lyrics]","updated_at":"2009/12/30 17:45:59 +0000","_id":"f0c9a89a51ab3fd4d466bebbba05e496","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"liebe dieses akkordeon","available_streams":{"34":"http://v23.lscache2.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900650&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261965600&key=yt1&signature=2AD878A10BE8AF2CAB1FF159C92F982CAE7FBD1F.A8C8C4941679ECC7B053134D57D8F960D230093D&factor=1.25&id=435f674ec285dcb2","35":"http://v8.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900650&algorithm=throttle-factor&itag=35&ipbits=0&burst=40&sver=3&expire=1261965600&key=yt1&signature=2D9773EB78CB7B38FD39020D61CA0D01CC561D5A.7854E5B261B7709E32B4208CC2E29FF3DADE97BF&factor=1.25&id=435f674ec285dcb2","5":"http://v24.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=900650&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261965600&key=yt1&signature=DE48B857DF2F999E01D65CA19E8E3300741D88.C1AB00C90C14C1C686D9517321C6254BC9256CBB&factor=1.25&id=435f674ec285dcb2"},"blip_user":"659032","blip_time":"2009/12/27 17:04:44 +0000","source":"YouTube","_attachments":{"video/f0c9a89a51ab3fd4d466bebbba05e496@480p.flv":{"content_type":"video/x-flv","stub":true,"revpos":10,"length":38030153},"audio/f0c9a89a51ab3fd4d466bebbba05e496.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":9,"length":5865782}}},{"embed_url":"http://www.youtube.com/v/lz7OFW3p1C8&feature=youtube_gdata","reblip_id":"30629469","blip_id":"30901610","written_by":["80d57133b6cfa298dec01af2393c21fb"],"created_at":"2009/12/29 14:15:18 +0000","_rev":"11-4c081d54b5d765d8605c273a82d561ae","video_id":"lz7OFW3p1C8","title":"Time by Easy Dub All Stars","updated_at":"2009/12/30 17:46:01 +0000","_id":"f5c6ffc1c9ae22b940e026e867bfbae7","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"[reply]usin420[/reply]: \"24/7 8) [reply]pinkgodzilla[/reply]: \"red eyed [reply]SelektaKingJah[/reply] [reply]wetrust[/reply] [reply]usin420[/reply] [reply]hoopedup[/reply] [reply]Djenius[/reply] [reply]zeroweek[/reply] [reply]mairsplaylist[/reply]\"\"","available_streams":{"34":"http://v19.lscache1.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=901421%2C900037&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262120400&key=yt1&signature=126DF4878D284BFC9EE80D121FF66474E36C961B.03CAAC526D76517FB9EA51A7E435BE4085DD955E&factor=1.25&id=973ece156de9d42f","5":"http://v21.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&fexp=901421%2C900037&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262120400&key=yt1&signature=33D883B8496D97448411C3D1ADE81E886F838C7E.B3A17C4DAFD794C47A5EE14095407A4DA3C93A24&factor=1.25&id=973ece156de9d42f"},"blip_user":"383807","blip_time":"2009/12/28 13:18:46 +0000","source":"YouTube","_attachments":{"video/f5c6ffc1c9ae22b940e026e867bfbae7.flv":{"content_type":"video/x-flv","stub":true,"revpos":8,"length":12746709},"audio/f5c6ffc1c9ae22b940e026e867bfbae7.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":7,"length":3612862}}},{"embed_url":"http://www.youtube.com/v/T-sdyjLh5fU&feature=youtube_gdata","blip_id":"30852034","written_by":["fce8236afef02d21ab6dce53eb5919aa"],"created_at":"2009/12/27 19:56:35 +0000","_rev":"16-0be34189f14d5755b0fd4ea2f2a408ef","video_id":"T-sdyjLh5fU","title":"Paper Thin Walls","updated_at":"2009/12/30 17:46:01 +0000","_id":"f6bf922444e8695898d6bbc5dd02ca91","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","available_streams":{"34":"http://v8.lscache7.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1261969200&key=yt1&signature=6B182E507391E026BDA27BD23184A6FDDED0D310.7EFC3AA3A83BB7A05FB4D6DCB1E6E76B33018A1A&factor=1.25&id=4feb1dca32e1e5f5","5":"http://v23.lscache3.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1261969200&key=yt1&signature=C88048BC507994F1C3A8206A6693F5586CA8A4D0.2EEA2A0EC59547768E11C2DC0CE76F725E11CD09&factor=1.25&id=4feb1dca32e1e5f5"},"blip_time":"2009/12/27 18:37:24 +0000","blip_user":"659032","source":"YouTube","_attachments":{"audio/f6bf922444e8695898d6bbc5dd02ca91.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":12,"length":1399693},"video/f6bf922444e8695898d6bbc5dd02ca91.flv":{"content_type":"video/x-flv","stub":true,"revpos":13,"length":6150929}}},{"reblip_id":"31052040","blip_id":31054612,"embed_url":"http://www.youtube.com/v/cB62SnDJ2m0&feature=youtube_gdata","written_by":["a25f1622d4f3ced486879def276b4a60"],"created_at":"2009/12/31 12:11:40 +0000","_rev":"2-04dc9b5a0ce5cfd9986a6029c4850f30","video_id":"cB62SnDJ2m0","title":"j'adore \u00e7a !!","updated_at":"2009/12/31 12:11:40 +0000","_id":"f7e3822c9d501d6c37230f359aceb0f1","tags":[],"bitrate":"","blip":"[reply]lmaa[/reply]: \"[reply]SelektaKingJah[/reply] [reply]sk8y_kati[/reply] [reply]LittleBuddha87[/reply]\"","blip_user":"383807","blip_time":"2009/12/30 14:48:34 +0000","ownerUrlName":"SelektaKingJah","source":"YouTube","_attachments":{"audio/f7e3822c9d501d6c37230f359aceb0f1.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":2,"length":2051324}}},{"blip_id":"30749420","written_by":["6f140d3528d8998d26887764bc52a21c"],"created_at":"2009/12/26 22:27:26 +0000","_rev":"5-662692cf7e810cfe7f7771e6ab7d8470","title":"Killing In The Name","updated_at":"2009/12/30 17:46:01 +0000","_id":"fa4a5b9214907c19d36f1d03ac53b8de","url":"http://netfriends.free.fr/audiovideo/audio/Rage_Against_the_Machine/Rage%20Against%20The%20Machine/Rage%20Against%20The%20Machine%20-%20Killing%20In%20The%20Name.mp3","tags":[],"bitrate":"192000","blip":"facebook","blip_user":"540583","blip_time":"2009/12/25 23:23:10 +0000","source":"HTTP","_attachments":{"audio/fa4a5b9214907c19d36f1d03ac53b8de.mp3":{"content_type":"audio/mpeg","stub":true,"revpos":3,"length":7532130}}},{"embed_url":"http://www.youtube.com/v/eIh55E3M8XY&feature=youtube_gdata","blip_id":"31024227","written_by":["f1aff95580517ee34c24a233040a5b2c"],"created_at":"2009/12/30 11:13:07 +0000","_rev":"7-3973084dce939019ea4dbcfea6768a08","video_id":"eIh55E3M8XY","title":"Opening (German version)","updated_at":"2009/12/30 17:46:01 +0000","_id":"fab69453bfe162eec8072c6784afdcc5","tags":[],"deep_links_expire_at":"1970/01/01 00:33:29 +0000","blip":"[reply]lmaa[/reply] [reply]a0n[/reply]","available_streams":{"34":"http://v15.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1262196000&key=yt1&signature=79C9BC68E1C83C00AFC7A9840070111461C9B332.9237ACF5F9E2F295204911BFF5ECE8F9A3FD1F74&factor=1.25&id=788879e44dccf176","35":"http://v10.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=35&ipbits=0&burst=40&sver=3&expire=1262196000&key=yt1&signature=2121B80D4E4BCF5AB0C9D004AFF4308D5BFE9376.13E005E790E4C7EA0A70BD61E9AE9B4939B57C25&factor=1.25&id=788879e44dccf176","18":"http://v3.lscache5.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=18&ipbits=0&burst=40&sver=3&expire=1262196000&key=yt1&signature=5A6AC6963A196B98C7F563009EC863BB6EF68E7E.1AFFD58E6F0E4FCB9A45FA0D0CF698D3C4E2B43D&factor=1.25&id=788879e44dccf176","5":"http://v22.lscache1.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor&algorithm=throttle-factor&itag=5&ipbits=0&burst=40&sver=3&expire=1262196000&key=yt1&signature=0B53CAC7F95ADB3A55A9F01AC5F1665B98088954.6135F95C1301D1D92C7BE6CF80B8B5293B154D62&factor=1.25&id=788879e44dccf176"},"blip_user":"383807","blip_time":"2009/12/30 02:26:24 +0000","source":"YouTube","_attachments":{"audio/fab69453bfe162eec8072c6784afdcc5.ogg":{"content_type":"audio/x-vorbis+ogg","stub":true,"revpos":6,"length":1382702},"video/fab69453bfe162eec8072c6784afdcc5.flv@480p":{"content_type":"video/mp4","stub":true,"revpos":4,"length":10210986}}}]
|
File without changes
|
@@ -0,0 +1,317 @@
|
|
1
|
+
/**
|
2
|
+
* YouTubePlayer!!!
|
3
|
+
*
|
4
|
+
* Do you like it? Hate it? Please leave a comment.
|
5
|
+
* And do whatever with it whatever you like.
|
6
|
+
*
|
7
|
+
*
|
8
|
+
* Just Remember My Name: MAIKEL J. SIBBALD
|
9
|
+
* LOL! I'm so Funny.
|
10
|
+
* */
|
11
|
+
package nl.flexcoders.controls{
|
12
|
+
|
13
|
+
import flash.display.Loader;
|
14
|
+
import flash.display.Stage;
|
15
|
+
import flash.display.StageDisplayState;
|
16
|
+
import flash.events.Event;
|
17
|
+
import flash.events.FullScreenEvent;
|
18
|
+
import flash.geom.Rectangle;
|
19
|
+
import flash.net.URLRequest;
|
20
|
+
import flash.utils.clearInterval;
|
21
|
+
import flash.utils.setInterval;
|
22
|
+
|
23
|
+
import mx.core.UIComponent;
|
24
|
+
|
25
|
+
public class YouTubePlayer extends UIComponent{
|
26
|
+
public static const PLAY_URL:String = "http://www.youtube.com/apiplayer?version=3";
|
27
|
+
|
28
|
+
[Bindable]public var qualityLevels:Array = ["default", "small", "medium", "large", "hd720"];
|
29
|
+
[Bindable]public var videoStates:Array = ["unstarted", "ended", "playing", "paused", "buffering", "video cued"];
|
30
|
+
|
31
|
+
public var player:Object;
|
32
|
+
|
33
|
+
private var loader:Loader = new Loader();
|
34
|
+
|
35
|
+
private var _videoID:String = "";
|
36
|
+
private var videoIDChanged:Boolean = false;
|
37
|
+
|
38
|
+
private var _videoURL:String = "";
|
39
|
+
private var videoURLChanged:Boolean = false;
|
40
|
+
|
41
|
+
private var _volume:Number = 1;
|
42
|
+
private var volumeChanged:Boolean = false;
|
43
|
+
|
44
|
+
private var _duration:Number = 0;
|
45
|
+
private var _currentTime:Number = 0;
|
46
|
+
|
47
|
+
private var _autoPlay:Boolean = false;
|
48
|
+
|
49
|
+
private var _playbackQuality:String = "default";
|
50
|
+
private var playbackQualityChanged:Boolean = false;
|
51
|
+
|
52
|
+
private var oldBounds:Rectangle;
|
53
|
+
private var oldChildIndex:Number = -1;
|
54
|
+
private var oldParent:*;
|
55
|
+
|
56
|
+
[Bindable]
|
57
|
+
public function set videoID(value:String):void{
|
58
|
+
this._videoID = value;
|
59
|
+
this.videoIDChanged = true;
|
60
|
+
this.invalidateProperties();
|
61
|
+
}
|
62
|
+
|
63
|
+
public function get videoID():String{
|
64
|
+
return this._videoID;
|
65
|
+
}
|
66
|
+
|
67
|
+
[Bindable]
|
68
|
+
public function set videoURL(value:String):void{
|
69
|
+
this._videoURL = value;
|
70
|
+
this.videoURLChanged = true;
|
71
|
+
this.invalidateProperties();
|
72
|
+
}
|
73
|
+
|
74
|
+
public function get videoURL():String{
|
75
|
+
return this._videoURL;
|
76
|
+
}
|
77
|
+
|
78
|
+
[Bindable]
|
79
|
+
public function set autoPlay(value:Boolean):void{
|
80
|
+
this._autoPlay = value;
|
81
|
+
this.invalidateProperties();
|
82
|
+
}
|
83
|
+
|
84
|
+
public function get autoPlay():Boolean{
|
85
|
+
return this._autoPlay;
|
86
|
+
}
|
87
|
+
|
88
|
+
[Bindable]
|
89
|
+
public function set playbackQuality(value:String):void{
|
90
|
+
this._playbackQuality = value;
|
91
|
+
this.playbackQualityChanged = true;
|
92
|
+
this.invalidateProperties();
|
93
|
+
}
|
94
|
+
|
95
|
+
public function get playbackQuality():String{
|
96
|
+
return this._playbackQuality;
|
97
|
+
}
|
98
|
+
|
99
|
+
[Bindable]
|
100
|
+
public function set volume(value:Number):void{
|
101
|
+
this._volume = value;
|
102
|
+
this.volumeChanged = true;
|
103
|
+
this.invalidateProperties();
|
104
|
+
}
|
105
|
+
|
106
|
+
public function get volume():Number{
|
107
|
+
return this._volume;
|
108
|
+
}
|
109
|
+
|
110
|
+
[Bindable]
|
111
|
+
public function set duration(value:Number):void{
|
112
|
+
this._duration = value;
|
113
|
+
this.invalidateProperties();
|
114
|
+
}
|
115
|
+
|
116
|
+
public function get duration():Number{
|
117
|
+
return this._duration;
|
118
|
+
}
|
119
|
+
|
120
|
+
[Bindable]
|
121
|
+
public function set currentTime(value:Number):void{
|
122
|
+
this._currentTime = value;
|
123
|
+
this.invalidateProperties();
|
124
|
+
}
|
125
|
+
|
126
|
+
public function get currentTime():Number{
|
127
|
+
return this._currentTime;
|
128
|
+
}
|
129
|
+
|
130
|
+
public function get getPlaybackQuality():String{
|
131
|
+
if(this.player){
|
132
|
+
return player.getPlaybackQuality();
|
133
|
+
}else{
|
134
|
+
return "Not avaliable";
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
public function get getAvailableQualityLevels():Array{
|
139
|
+
if(this.player){
|
140
|
+
return player.getAvailableQualityLevels();
|
141
|
+
}else{
|
142
|
+
return [];
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
public function play():void{
|
147
|
+
if(this.player){
|
148
|
+
this.player.playVideo();
|
149
|
+
}
|
150
|
+
}
|
151
|
+
public function pause():void{
|
152
|
+
if(this.player){
|
153
|
+
this.player.pauseVideo();
|
154
|
+
}
|
155
|
+
}
|
156
|
+
public function stop():void{
|
157
|
+
if(this.player){
|
158
|
+
this.player.stopVideo();
|
159
|
+
}
|
160
|
+
}
|
161
|
+
|
162
|
+
public function seekTo(seconds:Number, allowSeekAhead:Boolean = false):void{
|
163
|
+
if(this.player){
|
164
|
+
this.player.seekTo(seconds, allowSeekAhead);
|
165
|
+
}
|
166
|
+
}
|
167
|
+
|
168
|
+
public function mute():void{
|
169
|
+
if(this.player){
|
170
|
+
this.player.mute();
|
171
|
+
}
|
172
|
+
}
|
173
|
+
public function unMute():void{
|
174
|
+
if(this.player){
|
175
|
+
this.player.unMute();
|
176
|
+
}
|
177
|
+
}
|
178
|
+
public function isMuted():Boolean{
|
179
|
+
if(this.player){
|
180
|
+
return this.player.isMuted();
|
181
|
+
}
|
182
|
+
return false;
|
183
|
+
}
|
184
|
+
|
185
|
+
public function fullscreen():void{
|
186
|
+
if(this.stage && this.parent){
|
187
|
+
this.stage.removeEventListener( FullScreenEvent.FULL_SCREEN, this.fullScreenHandler );
|
188
|
+
this.stage.addEventListener( FullScreenEvent.FULL_SCREEN, this.fullScreenHandler );
|
189
|
+
|
190
|
+
var stageInstance:Stage = this.stage;
|
191
|
+
this.oldParent = this.parent;
|
192
|
+
this.oldChildIndex = this.parent.getChildIndex( this );
|
193
|
+
|
194
|
+
var playerInstance:YouTubePlayer = this.parent.removeChild( this ) as YouTubePlayer;
|
195
|
+
stageInstance.addChild( playerInstance );
|
196
|
+
|
197
|
+
this.oldBounds = this.getBounds(this.stage);
|
198
|
+
this.stage.displayState = StageDisplayState.FULL_SCREEN;
|
199
|
+
this.width = this.stage.width;
|
200
|
+
this.height = this.stage.height;
|
201
|
+
this.x = 0;
|
202
|
+
this.y = 0;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
|
206
|
+
protected function fullScreenHandler(event:FullScreenEvent):void{
|
207
|
+
if(!event.fullScreen){
|
208
|
+
this.width = this.oldBounds.width;
|
209
|
+
this.height = this.oldBounds.height;
|
210
|
+
this.x = this.oldBounds.x;
|
211
|
+
this.y = this.oldBounds.y;
|
212
|
+
this.oldParent.addChildAt(this, this.oldChildIndex);
|
213
|
+
this.stage.removeEventListener( FullScreenEvent.FULL_SCREEN, this.fullScreenHandler );
|
214
|
+
}
|
215
|
+
}
|
216
|
+
|
217
|
+
override protected function createChildren():void{
|
218
|
+
super.createChildren();
|
219
|
+
this.loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);
|
220
|
+
this.loader.load(new URLRequest(PLAY_URL));
|
221
|
+
}
|
222
|
+
|
223
|
+
override public function invalidateProperties():void{
|
224
|
+
super.invalidateProperties();
|
225
|
+
if(this.player){
|
226
|
+
var reset:Boolean = false;
|
227
|
+
if(this.videoIDChanged){
|
228
|
+
this.stop();
|
229
|
+
this.player.loadVideoById(this.videoID);
|
230
|
+
reset = true;
|
231
|
+
this.videoIDChanged = false;
|
232
|
+
}
|
233
|
+
|
234
|
+
/*
|
235
|
+
Doesn't seem to work
|
236
|
+
TypeError: Error #1006: loadVideoByUrl is not a function.
|
237
|
+
if(this.videoURLChanged){
|
238
|
+
this.stop();
|
239
|
+
this.player.loadVideoByUrl(this.videoURL);
|
240
|
+
reset = true;
|
241
|
+
this.videoURLChanged = false;
|
242
|
+
}
|
243
|
+
*/
|
244
|
+
|
245
|
+
if(reset){
|
246
|
+
if(!this.autoPlay){
|
247
|
+
this.pause();
|
248
|
+
}
|
249
|
+
this.volumeChanged = true;
|
250
|
+
}
|
251
|
+
|
252
|
+
|
253
|
+
if(this.playbackQualityChanged){
|
254
|
+
this.player.setPlaybackQuality(this._playbackQuality);
|
255
|
+
this.playbackQualityChanged = false;
|
256
|
+
}
|
257
|
+
|
258
|
+
if(this.volumeChanged){
|
259
|
+
player.setVolume(this.volume * 100)
|
260
|
+
this.volumeChanged = false;
|
261
|
+
}
|
262
|
+
}
|
263
|
+
}
|
264
|
+
|
265
|
+
override public function invalidateSize():void{
|
266
|
+
super.invalidateSize();
|
267
|
+
}
|
268
|
+
|
269
|
+
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void{
|
270
|
+
super.updateDisplayList(unscaledWidth, unscaledHeight);
|
271
|
+
if(this.player){
|
272
|
+
this.player.setSize(this.width, this.height);
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
private function onLoaderInit(event:Event):void {
|
277
|
+
this.addChild(this.loader);
|
278
|
+
|
279
|
+
this.loader.content.addEventListener("onReady", onPlayerReady);
|
280
|
+
this.loader.content.addEventListener("onError", onPlayerError);
|
281
|
+
this.loader.content.addEventListener("onStateChange", onPlayerStateChange);
|
282
|
+
this.loader.content.addEventListener("onPlaybackQualityChange", onVideoPlaybackQualityChange);
|
283
|
+
}
|
284
|
+
|
285
|
+
private function onPlayerReady(event:Event):void {
|
286
|
+
this.player = loader.content;
|
287
|
+
this.invalidateProperties();
|
288
|
+
this.invalidateDisplayList();
|
289
|
+
}
|
290
|
+
|
291
|
+
private function onPlayerError(event:Event):void {
|
292
|
+
// Event.data contains the event parameter, which is the error code
|
293
|
+
this.dispatchEvent(event);
|
294
|
+
}
|
295
|
+
|
296
|
+
private var updateInterval:Number = 0;
|
297
|
+
private function onPlayerStateChange(event:Event):void {
|
298
|
+
// Event.data contains the event parameter, which is the new player state
|
299
|
+
var stateIndex:Number = event["data"];
|
300
|
+
|
301
|
+
switch(stateIndex){
|
302
|
+
case 0: clearInterval(this.updateInterval);break;
|
303
|
+
case 1: updateInterval = setInterval(function():void{
|
304
|
+
currentTime = player.getCurrentTime()*1000;
|
305
|
+
}, 500); break;
|
306
|
+
case 3: this.duration = this.player.getDuration()*1000; break;
|
307
|
+
}
|
308
|
+
|
309
|
+
this.dispatchEvent(event);
|
310
|
+
}
|
311
|
+
|
312
|
+
private function onVideoPlaybackQualityChange(event:Event):void {
|
313
|
+
// Event.data contains the event parameter, which is the new video quality
|
314
|
+
this.dispatchEvent(event);
|
315
|
+
}
|
316
|
+
}
|
317
|
+
}
|
data/test/Test-app.xml
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<application
|
3
|
+
xmlns="http://ns.adobe.com/air/application/1.0"
|
4
|
+
minimumPatchLevel="0">
|
5
|
+
<!-- AIR Application Descriptor File. See http://www.adobe.com/go/air_1.0_application_descriptor. -->
|
6
|
+
<id>com.Test</id>
|
7
|
+
<name>Test</name>
|
8
|
+
<version>1.0</version>
|
9
|
+
<filename>Test</filename>
|
10
|
+
<description>Test</description>
|
11
|
+
<copyright>(c) 2007</copyright>
|
12
|
+
<initialWindow>
|
13
|
+
<content>bin/Test.swf</content>
|
14
|
+
<title>Test</title>
|
15
|
+
<systemChrome>standard</systemChrome>
|
16
|
+
<transparent>false</transparent>
|
17
|
+
<visible>true</visible>
|
18
|
+
<minimizable>true</minimizable>
|
19
|
+
<maximizable>true</maximizable>
|
20
|
+
<resizable>true</resizable>
|
21
|
+
<width>1024</width>
|
22
|
+
<height>768</height>
|
23
|
+
<x>100</x>
|
24
|
+
<y>50</y>
|
25
|
+
<minSize>300 300</minSize>
|
26
|
+
<maxSize>800 800</maxSize>
|
27
|
+
</initialWindow>
|
28
|
+
<installFolder>Test</installFolder>
|
29
|
+
<programMenuFolder>Test</programMenuFolder>
|
30
|
+
<icon>
|
31
|
+
<!--
|
32
|
+
<image16x16>icons/AIRApp_16.png</image16x16>
|
33
|
+
<image32x32>icons/AIRApp_32.png</image32x32>
|
34
|
+
<image48x48>icons/AIRApp_48.png</image48x48>
|
35
|
+
<image128x128>icons/AIRApp_128.png</image128x128>
|
36
|
+
-->
|
37
|
+
</icon>
|
38
|
+
<customUpdateUI>false</customUpdateUI>
|
39
|
+
<allowBrowserInvocation>false</allowBrowserInvocation>
|
40
|
+
</application>
|
data/test/Test.mxml
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*"
|
3
|
+
xmlns:flexunit="flexunit.flexui.*"
|
4
|
+
creationComplete="onCreationComplete()">
|
5
|
+
|
6
|
+
<mx:Script>
|
7
|
+
<![CDATA[
|
8
|
+
import flexunit.framework.TestSuite;
|
9
|
+
import suite.*;
|
10
|
+
|
11
|
+
// After everything is built, configure the test
|
12
|
+
// runner to use the appropriate test suite and
|
13
|
+
// kick off the unit tests
|
14
|
+
private function onCreationComplete():void {
|
15
|
+
testRunner.test = createSuite();
|
16
|
+
testRunner.startTest();
|
17
|
+
}
|
18
|
+
|
19
|
+
// Creates the test suite to run
|
20
|
+
private function createSuite():TestSuite {
|
21
|
+
var ts:TestSuite = new TestSuite();
|
22
|
+
|
23
|
+
// TODO: Add more tests here to test more classes
|
24
|
+
// by calling addTest as often as necessary
|
25
|
+
ts.addTest(new AllTests());
|
26
|
+
|
27
|
+
return ts;
|
28
|
+
}
|
29
|
+
|
30
|
+
]]>
|
31
|
+
</mx:Script>
|
32
|
+
|
33
|
+
<!-- flexunit provides a very handy default test runner GUI -->
|
34
|
+
<flexunit:TestRunnerBase id="testRunner" width="100%" height="100%" />
|
35
|
+
</mx:Application>
|
data/views/jukebox.haml
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
/%script{ :type => "text/javascript", :src => url_for("/history/history.js") }
|
2
|
+
%script{ :src => url_for("/swfobject.js"), :type => "text/javascript" }
|
3
|
+
%script{ :type => "text/javascript" }
|
4
|
+
=code
|
5
|
+
#flashContent
|
6
|
+
%p
|
7
|
+
%script{ :type => "text/javascript" }
|
8
|
+
:javascript
|
9
|
+
var pageHost = ((document.location.protocol == "https:") ? "https://" : "http://");
|
10
|
+
document.write("<a href='http://www.adobe.com/go/getflashplayer'><img src='"
|
11
|
+
+ pageHost + "www.adobe.com/images/shared/download_buttons/get_flash_player.gif' alt='Get Adobe Flash player' /></a>" );
|
12
|
+
%noscript
|
13
|
+
%object{ :id => application, :height => height, :classid => "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", :width => width }
|
14
|
+
%param{ :name => "movie", :value => "#{swf}.swf" }
|
15
|
+
%param{ :name => "quality", :value => "high" }
|
16
|
+
%param{ :name => "bgcolor", :value => bgcolor }
|
17
|
+
%param{ :name => "allowScriptAccess", :value => "sameDomain" }
|
18
|
+
%param{ :name => "allowFullScreen", :value => "true" }
|
19
|
+
/[if !IE]
|
20
|
+
%object{ :data => "#{swf}.swf", :type => "application/x-shockwave-flash", :height => height, :width => width }
|
21
|
+
%param{ :name => "quality", :value => "high" }
|
22
|
+
%param{ :name => "bgcolor", :value => bgcolor }
|
23
|
+
%param{ :name => "allowScriptAccess", :value => "sameDomain" }
|
24
|
+
%param{ :name => "allowFullScreen", :value => "true" }
|
25
|
+
/[if gte IE 6]
|
26
|
+
%p
|
27
|
+
Either scripts and active content are not permitted to run or Adobe Flash Player version
|
28
|
+
${version_major}.${version_minor}.${version_revision} or greater is not installed.
|
29
|
+
%a{ :href => "http://www.adobe.com/go/getflashplayer" }
|
30
|
+
%img{ :src => "http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif", :alt => "Get Adobe Flash Player" }
|