Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
feature request add support for http://you.rtl2.de/ #10257
Comments
|
i found a problem here, the site used CryptoJS To decrypt the url, but trying to do the same thing using window.youStreamDecrypt = function(b) {
var a = new window.ysd;
if (a.inArray(a.tld, ["rtl2.de", "rtl2apps.de", "umwerk.me"])) {
a = CryptoJS.enc.Base64.parse("6VfkLjwquBrStpLzQ9PvTBsDKrtiSMAD/2/C8iiqqiE=");
b = CryptoJS.enc.Utf8.stringify(CryptoJS.enc.Base64.parse(b));
streamUrlSplit = b.split(":");
b = streamUrlSplit[0];
var c = CryptoJS.enc.Base64.parse(streamUrlSplit[1]),
a = CryptoJS.AES.decrypt(b, a, {
iv: c
});
return b = CryptoJS.enc.Utf8.stringify(a)
}
console.log(a.msg)
};as an example feeding the function(after removing the part that protect the code from the use by other domains) with
|
xinto all the boxes [ ] relevant to your issue (like that [x])Make sure you are using the latest version: run
youtube-dl --versionand ensure your version is 2016.08.07. If it's not read this FAQ entry and update. Issues with outdated version will be rejected.Before submitting an issue make sure you have:
What is the purpose of your issue?
The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your issue
If the purpose of this issue is a site support request please provide all kinds of example URLs support for which should be included (replace following example URLs by yours):
Description of your issue, suggested solution and other information
Hi, hope ive done this new questionnaire correct... i wasnt sure if i should include it or just check it for my own.
I have found out how i can download videos from http://you.rtl2.de/ on which are manny full episodes. First of all i have to look for the iframe leading to a page like: http://you.rtl2.de/youplayer/index.html?vid=7980 , then i have to open that page in opera or crome and open the development tool with the network view, switch to persistant mode, disable cache (maybe works also with) and click to all given parts (Teil 1 and Teil 2 in german) for all parts in the network view under category xhr a file beginning with master.m3u8 will appere. This file can be saved (to its on directory because of youtube-dl wount download files with the same name again and they are all the same), all lines but the lines with the best quality listed can be deletet and then the content can be retrived using:
youtube-dl -a master3.m3u8
it would be grate if you could add this page to automatisate theese steps.
thanks in advacne