some post changes on the can't play fix.

This commit is contained in:
Christian Schabesberger 2015-12-20 13:33:39 +01:00
parent 18bc937958
commit b11778ec55
1 changed files with 2 additions and 3 deletions

View File

@ -552,8 +552,7 @@ public class YoutubeVideoExtractor extends VideoExtractor {
decryptionFuncName = matchGroup1("\\.sig\\|\\|([a-zA-Z0-9$]+)\\(", playerCode);
String functionPattern = "(" + decryptionFuncName.replace("$", "\\$") +"=function\\([a-zA-Z0-9_]*\\)\\{.+?\\})";
decryptionFunc = matchGroup1(functionPattern, playerCode);
decryptionFunc += ";";
decryptionFunc = "var " + matchGroup1(functionPattern, playerCode) + ";";
helperObjectName = matchGroup1(";([A-Za-z0-9_\\$]{2})\\...\\(", decryptionFunc);
@ -565,7 +564,7 @@ public class YoutubeVideoExtractor extends VideoExtractor {
}
callerFunc = callerFunc.replace("%%", decryptionFuncName);
decryptionCode = helperObject + "var " + decryptionFunc + callerFunc;
decryptionCode = helperObject + decryptionFunc + callerFunc;
return decryptionCode;
}