Skip to content

Instantly share code, notes, and snippets.

@teslamint
Created September 17, 2011 06:23
Show Gist options
  • Save teslamint/1223690 to your computer and use it in GitHub Desktop.
Save teslamint/1223690 to your computer and use it in GitHub Desktop.
ClickToFlash AniPlus(paid) Killer Script
var killer = new Object();
addKiller("AniPlus", killer);
killer.canKill = function(data) {
if(data.params.movie.indexOf("aniplustv.com/live/") !== -1) {return true;}
return false;
};
killer.process = function(data, callback) {
var flashvars = parseFlashVariables(data.params.flashvars);
if(flashvars.streamer && flashvars.file)
callback({
"playlist": [{
"sources": [{
"url": flashvars.streamer + flashvars.file +""
}]
}]
});
return;
};
@teslamint
Copy link
Author

Currently, AniPlus is served in Korea only(domestic).
BTW, RTMP protocol. :-(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment