Greetings!
I'm newcomer here and an amateur in Video downloading.
I would like to download movie from https://plus.rtl.de/ , Does it have any method to download that? What should I do?
e.g link here: https://plus.rtl.de/video-tv/serien/medicopter-117-jedes-leben-zaehlt-62735/staffel-1-...zschluss-62741
Thank you and best wishes
+ Reply to Thread
Results 1 to 30 of 37
-
-
Code:
N_m3u8DL-RE -M format=mkv --key af948ea372874dab35506f06a80c15f9:d78a69405368b9641b6d0d035505b7e6 "https://vodnowusoawsdash.secure.footprint.net/p112/cves/sd/rtlplus/62741/2-1-1-3-2.ism/v1.mpd" --save-name video
-
There are already several threads here on this topic, e.g. https://forum.videohelp.com/threads/412209-Download-from-plus-rtl-de
If you want to learn how to do it yourself, read the oinned threads (no need to repeat here all the valuable stuff in there). -
-
If you don't have your own CDM and do want to grab one, start with "Dumping Your own L3 CDM with Android Studio".
You might skip this step, because there are working CDM's floating around in the forum here; it's still educative to at least skim the first post.
Then you might want to read the first post of "Decryption and the Temple of Doom", followed by "Decryption: The Dungeon of Despair" and last "Decryption: The Last Crusade".
These posts will instruct you how to do.
I mentioned that you might skip the first step - you'll find a working script that needs to be edited for the basic information like license headers and mpd url/PSSH here: https://forum.videohelp.com/threads/412209-Download-from-plus-rtl-de/page2#post2712294
But remember: read the first posts of the sticky threads to learn the basics first. -
I've already installed "Android Studio" and follow the thread: Dumping Your own L3 CDM with Android Studio
For some reasons, I'm unable to use that software currently since my setup process is not like the thread. Something it asked me to install Intel HAXM, I installed but it keeps saying that "Install Intel HAXM". I installed and it saying that over again and again. Can we have private message, chat or something?
Thank you again -
thats all you need this files
https://files.videohelp.com/u/301156/file.zip
open cmd from this folder copy/paste cmd line i post above -
-
I already succeed in having L3 CDM as the thread "Dumping Your own L3 CDM with Android Studio" https://forum.videohelp.com/threads/408031-Dumping-Your-own-L3-CDM-with-Android-Studio
However, when reading the thread https://forum.videohelp.com/threads/404994-Decryption-and-the-Temple-of-Doom
"Now, in theory you have a working CDM and can generate your own keys. I found an encrypted video to download, located the request headers saved as a cURL and encoded intp python here:- https://curlconverter.com/ . I put them in headers.py in the WKS-KEYS folder"
I don't know about: located the request headers...
With my link: https://plus.rtl.de/video-tv/serien/medicopter-117-jedes-leben-zaehlt-62735/staffel-1-...zschluss-62741 . How to: located the request headers saved as a cURL and encoded intp python here:- https://curlconverter.com ?
Need someone's help
Thank you -
- Prepare: Open the development tools in your browser, open the network tab, make sure "Preserve log" is checked. I use the "Brave" browser here.
- Gathering information: Open the video in your browser, wait until it begins to play. In the network tab search for the mpd url (enter "mpd" in the filter field); you'll hopefully find: https://vodnowusoawsdash.secure.footprint.net/p112/cves/sd/rtlplus/62741/2-1-1-3-2.ism/v1.mpd
- If you need the pssh, search for "cenc" in the mpd; the pssh you need is the one with the <!-- Widevine --> comment above it; if that's missing, look for the "urn:uuid:" attribute that starts with "EDE".
- Search license url: if you filter for "license" in the network requests, you'll find around 4 of these. Usually you'll need the last one:
https://widevine.tvnow.de/index/license
- Copy the license request "as curl" and put it into curl converter. From the headers only "x-auth-token" is needed; but that may be different for other sites.
Your headers.py might look like
Code:headers = { 'x-auth-token': 'eyJhbGciOiJSUzI1...' }
-
I also have something to do with Android Studio. Just like this thread: https://forum.videohelp.com/threads/408031-Dumping-Your-own-L3-CDM-with-Android-Studio
I try Pie with x86 System Image, version Android 9.0 ; Thank youLast edited by linkinp; 2nd Dec 2023 at 02:36.
-
Start your script, it should spit out the key: af948ea372874dab35506f06a80c15f9:d78a69405368b9641 b6d0d035505b7e6[/QUOTE]
I've already get the CURL converter https://curlconverter.com/, "copy as cURL (bash)" from Brave browser as your precious advice. I got the output result here:
--------------------------------------------------------------------------------------------------------------------------
headers = {'x-auth-token': [/COLOR][/B]'eyJhbGciOiJSUzI1NiIsIndmljZXNPdGhlclByb2Zp_VdMbZw',}
-----------------------------------------------------------
Start your script, it should spit out the key[/B]
Excuse me, Can you instruct me how, I don't comprehend it: what is "From the headers only "x-auth-token" is needed"? what is "headers.py"? How to Start the script?
I tried to run CMD.exe in the folder: C:\WKS-KEYS , the "headers.py" file also located in that WKS-Keys folder, after that I enter the code: headers = {'x-auth-token': 'eyJhbGciOiJSUzI1..._VdMbZw}
It reporting that: 'headers' is not recognized as an internal or external command,
operable program or batch file.Last edited by linkinp; 2nd Dec 2023 at 10:24.
-
Auf Deutsch (sorry for switch language!):
Benutzt du überhaupt wks-keys? Darin sollte eine Datei "headers.py" und eine Datei "l3.py" enthalten sein.
In die Datei headers.py gehört auch nur das headers-Dict rein, kein "import requests", erst Recht kein Aufruf "requests.post" und auch kein "data". Der Aufruf passiert im Script "l3.py", welches "headers.py" importiert. Und im headers-Dict brauchst du für plus.rtl.de nur das Feld 'x-auth-token', sonst gar nichts.
Wenn du trotzdem einen Fehler "No module name 'requests'" bekommst, musst du das Modul noch installieren: "pip3 install requests" oder "pip install requests". Dasselbe mit dem Modul "xmltodict".
Es gibt außerdem noch andere Scripten ausser wks-keys.
Back to english for now. I've posted an alternative script here: https://forum.videohelp.com/threads/412209-Download-from-plus-rtl-de/page2#post2712294Last edited by Obo; 2nd Dec 2023 at 03:45.
-
I used WKS-Keys download from the sticky thread: Decryption-and-the-Temple-of-Doom ; link here: https://files.videohelp.com/u/301890/WKS-KEYS.zip
After downloading, I extract that file into my desktop. Now I'm having a WKS-KEYS folder, I run CMD.exe from that folder using the directory path. I try to double click on the files "headers.py" (Python file) but nothing appears. I already paste the output result from Curlconverter.com with the content as the picture. It reports as picture: 'headers' is not recognized as an internal or external command, operable program or batch file.
Maybe I'm bad or wrong at some steps
Thank you again, you help me a lot to improve and widen my knowledge. -
-
Thank you.
On Brave browser, when I: right click ->license ("https://widevine.tvnow.de/index/license") -> copy as cURL (bash) -> paste into Curlconverter.com -> It gave me the output result. But I see that everytime I copy as CURL the license and paste, it always give different result of the 'x-auth-token' output. I don't know if I did something wrong?
I now know that I need to right click Headers.py -> Open with Notepad -> paste the CurlConverter.com output into that notepad: headers = {'x-auth-token': 'eyJhbGciOiJSUzI1...'}
and later then, What should I do to run the "script"?
[Attachment 75206 - Click to enlarge]Last edited by linkinp; 2nd Dec 2023 at 07:34.
-
@linkinp
then run your l3.py by open cmd.
python l3.py
input pssh
input license url.
i forget if the token expire fast or not, you should copy and paste quickly. -
Thank you everyone
I have several successes when extracting the key. Now I try to get .mpd for this episode https://plus.rtl.de/video-tv/serien/medicopter-117-jedes-leben-zaehlt-62735/staffel-1-...selnahme-62740
But Brave browser keeps saying something as: Blocked_other ; ERR_Blocked_by_client.
Something wrong?
[Attachment 75208 - Click to enlarge] -
Hi, thank you again. I tried to download this one with your Zip file, the CMD with this line works but after the download, the file is corrupt and unable to play:
Code:N_m3u8DL-RE "https://sgn-vnpt-002-livecdn-vthn-vnd.vieon.vn/a0ee0e89ba5105a562aeeccc458766c7/1711902777500/qnet_vod/storage02/hbo/gary_gulman_in_the_great_depresh_fixedbyqnetv1/dash/master.mpd" --save-name "master"
[Attachment 78034 - Click to enlarge] -
-
N_m3u8DL-RE --key a0ee0e89ba5105a562aeeccc458766c7 "https://sgn-vnpt-002-livecdn-vthn-vnd.vieon.vn/a0ee0e89ba5105a562aeeccc458766c7/1711902777500/qnet_vod/storage02/hbo/gary_gulman_in_the_great_depresh_fixedbyqnetv1/dash/master.mpd" --save-name "master"
Is this CMD line correct?
Thank you muchLast edited by linkinp; 30th Mar 2024 at 20:27.
-
Nope, try this:
Code:N_m3u8DL-RE -M format=mkv --key 6f8cddfc31eb3a299a5c4a54168eb386:4c7516ab4f77e63e0e00c48a7024626c "https://sgn-vnpt-002-livecdn-vthn-vnd.vieon.vn/a0ee0e89ba5105a562aeeccc458766c7/1711902777500/qnet_vod/storage02/hbo/gary_gulman_in_the_great_depresh_fixedbyqnetv1/dash/master.mpd"
-
Thank you. Can you instruct me more to get the key? I don't know which "key word" to search in Network tab of Developter tools in Brave browser. How to get CURL? I see in the note pad info of .mpd the key: 6f8cddfc31eb3a299a5c4a54168eb386. but about the: 4c7516ab4f77e63e0e00c48a7024626c , how to get that?
Last edited by linkinp; 30th Mar 2024 at 22:40.
-
Btw, I think it's quite dumb to paste the link from the Stream Detector, right? Everything relating to my account on streaming website would be disclosed? holy moly man,
-
From your previous screenshot I noticed the video KID was 6f8cddfc31eb3a299a5c4a54168eb386, so I just searched for it in https://getwvkeys.cc/ and there was a cached KEY. If you want to learn how to obtain keys directly from the license servers you have to read the sticky threads in this section of the forum, but generally all you need is a PSSH, a license url and headers.
If you mean pasting it here, then you might expose tokens, but as long as you paste it in your downloader you're good. -
Thank you. If I have KID, Could you please tell me more how to obtain the cached Key? I tried to find keyword with something as: lrc, license...in order to curlconverter but can't find any result with that keyword. Then I have no idea what to do what the notepad of .mpd file which I have downloaded from the Steam Detector
-
If you have the KID, you can search for a cached KEY here: https://cdrm-project.com/findpssh
If you don't find it there and need help, please post the video page url. -
http://tv360.vn/movie/bi-kip-luyen-rong-2-how-to-train-your-dragon-2?m=21106&e=1082536
Please help and instruct me to download this
Thank you
Similar Threads
-
Can someone help me to download a video from plus.rtl.de
By frankio in forum Video Streaming DownloadingReplies: 121Last Post: 28th Feb 2025, 14:39 -
Download from plus.rtl.de
By Data2006 in forum Video Streaming DownloadingReplies: 80Last Post: 8th Oct 2024, 16:00 -
Downloading videos from RTL
By Data2006 in forum Video Streaming DownloadingReplies: 17Last Post: 30th Jul 2024, 00:32 -
First try with RTL+/TVNow
By resonator79 in forum Video Streaming DownloadingReplies: 3Last Post: 23rd Feb 2023, 06:41 -
How can I download videos from play.rtl.hr?
By Nintendo Custom in forum Video Streaming DownloadingReplies: 23Last Post: 24th May 2022, 12:51