Tried implementing Vimeo flash player, didn't fix problem

This commit is contained in:
calzoneman 2013-07-28 10:49:12 -04:00
parent ab671917f7
commit 3932014ed0
2 changed files with 103 additions and 5 deletions

View File

@ -1,14 +1,16 @@
/* /*
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2013 Calvin Montgomery Copyright (c) 2013 Calvin Montgomery
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
var VIMEO_FLASH = false;
var Player = function(data) { var Player = function(data) {
if(!data) { if(!data) {
data = { data = {
@ -22,12 +24,20 @@ var Player = function(data) {
this.currentTime = data.currentTime || 0; this.currentTime = data.currentTime || 0;
this.diff = 0; this.diff = 0;
function postInit() {
this.load(data);
}
postInit.bind(this);
switch(this.type) { switch(this.type) {
case "yt": case "yt":
this.initYouTube(); this.initYouTube();
break; break;
case "vi": case "vi":
this.initVimeo(); if(VIMEO_FLASH)
this.initVimeoFlash();
else
this.initVimeo();
break; break;
case "dm": case "dm":
this.initDailymotion(); this.initDailymotion();
@ -60,7 +70,6 @@ var Player = function(data) {
this.nullPlayer(); this.nullPlayer();
break; break;
} }
this.load(data);
} }
Player.prototype.nullPlayer = function() { Player.prototype.nullPlayer = function() {
@ -205,6 +214,85 @@ Player.prototype.initVimeo = function() {
} }
} }
Player.prototype.initVimeoFlash = function() {
this.removeOld();
var url = "http://vimeo.com/moogaloop.swf?clip_id="+this.id;
url += "&" + [
"server=vimeo.com",
"api=2",
"show_title=0",
"show_byline=0",
"show_portrait=0",
"fullscreen=1",
"loop=0"
].join("&");
var flashvars = {
api: 2,
player_id: "ytapiplayer"
};
var params = {
allowfullscreen: true,
allowScriptAccess: "always"
};
swfobject.embedSWF(url
, "ytapiplayer"
, VWIDTH
, VHEIGHT
, "9.0.0"
, "expressInstall.swf"
, flashvars
, params);
this.player = $("#ytapiplayer")[0];
waitUntilDefined(this.player, "api_addEventListener", function () {
this.player.api_addEventListener("ready", function () {
socket.emit("playerReady");
this.player.api_play();
this.player.api_addEvent("finish", function () {
if(CLIENT.leader)
socket.emit("playNext");
});
this.player.api_addEvent("pause", function() {
PLAYER.paused = true;
sendVideoUpdate();
});
this.player.api_addEvent("play", function() {
PLAYER.paused = false;
sendVideoUpdate();
});
}.bind(this));
});
this.load = function(data) {
this.id = data.id;
this.initVimeoFlash();
}
this.pause = function() {
this.player.api_pause();
}
this.play = function() {
this.player.api_play();
}
this.isPaused = function(callback) {
callback(this.paused);
}
this.getTime = function(callback) {
var t = parseFloat(this.player.api_getCurrentTime());
callback(t);
}
this.seek = function(time) {
this.player.api_seekTo(time);
}
}
Player.prototype.initDailymotion = function() { Player.prototype.initDailymotion = function() {
this.removeOld(); this.removeOld();
this.player = DM.player("ytapiplayer", { this.player = DM.player("ytapiplayer", {

View File

@ -1473,3 +1473,13 @@ function loadChannelRanksPage(page) {
$($("#channelranks_pagination").find("li")[page]).addClass("active"); $($("#channelranks_pagination").find("li")[page]).addClass("active");
} }
} }
function waitUntilDefined(obj, key, fn) {
if(typeof obj[key] === "undefined") {
setTimeout(function () {
waitUntilDefined(obj, key, fn);
}, 100);
return;
}
fn();
}