Use JWPlayer as flash fallback because it can actually synch

This commit is contained in:
calzoneman 2014-08-18 12:00:26 -05:00
parent 6452ea4ab4
commit aff20c3012
5 changed files with 7 additions and 147 deletions

View file

@ -867,10 +867,6 @@ Callbacks = {
}
if (data.type === "fi") {
if (USEROPTS.no_h264 && data.meta.codec === "mov/h264") {
data.forceFlash = true;
}
data.url = data.id;
}
@ -885,13 +881,6 @@ Callbacks = {
data = googlePlusSimulator2014(data);
}
/* RTMP player has been replaced with the general flash player */
if (data.type === "rt") {
data.url = data.id;
data.type = "fi";
data.forceFlash = true;
}
if (data.type != PLAYER.type) {
loadMediaPlayer(data);
}