-
-
Save putuoka/57ad8354f899c3a43a6a001bd888de3b to your computer and use it in GitHub Desktop.
Openload: extract download URL using PhantomJS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Usage: phantomjs openload.js <video_url> | |
// if that doesn't work try: phantomjs --ssl-protocol=any openload.js <video_url> | |
var separator = ' | '; | |
var page = require('webpage').create(), | |
system = require('system'), | |
id, match; | |
if(system.args.length < 2) { | |
console.error('No URL provided'); | |
phantom.exit(1); | |
} | |
match = system.args[1].match( | |
/https?:\/\/(?:openload\.(?:co|io)|oload\.tv)\/(?:f|embed)\/([\w\-]+)/); | |
if(match === null) { | |
console.error('Could not find video ID in provided URL'); | |
phantom.exit(2); | |
} | |
id = match[1]; | |
// thanks @Mello-Yello :) | |
page.onInitialized = function() { | |
page.evaluate(function() { | |
delete window._phantom; | |
delete window.callPhantom; | |
}); | |
}; | |
page.settings.userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36"; | |
page.open('https://openload.co/embed/' + id + '/', function(status) { | |
var info = page.evaluate(function() { | |
return { | |
decoded_id: document.getElementById('streamuri').innerHTML, | |
title: document.querySelector('meta[name="og:title"],' | |
+ 'meta[name=description]').content | |
}; | |
}); | |
var url = 'https://openload.co/stream/' + info.decoded_id + '?mime=true'; | |
console.log(url + separator + info.title); | |
phantom.exit(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment