Hi, I've been trying to download a program today,
I've gotten this ISM(?) file URL:
https://vod.rte.ie/rte/vod-d/RTE_Prod_-_Prod/913/56/IH000413684/IH000413684-1663502902...927e80d9c4a4dd
How can I download the video?
It's originally this video.
https://www.rte.ie/player/series/the-week-in-politics/SI0000001936?epguid=IH000413684
Thanks.
+ Reply to Thread
Results 1 to 8 of 8
-
-
use yt-dlp --allow-u "https://mpd_link"
Last edited by lomero; 2nd Oct 2022 at 16:09.
-
[Attachment 67050 - Click to enlarge]
What's happened? -
What's happened? the first part of your code is totally wrong .... what goes through your mind?
[Attachment 67051 - Click to enlarge] -
if you have the decryption key of the video, you can do this to download the video with a batch file.
Download Dash MDP.bat :
Code:@echo off if not exist yt-dlp.exe goto nothere if not exist ffmpeg.exe goto nothere if not exist mp4decrypt.exe goto nothere if not exist aria2c.exe goto nothere goto start :nothere echo Vous n'avez pas non plus, renommer ou deplacer l'executablecutable yt-dlp, mp4decrypt ou ffmpeg ou aria2c. Veuillez le laisser dans le meme dossier que ce fichier batch pause exit mode 140,25 & color 0A if not exist "Downloads" md "Downloads" :start echo Script development Widevine layer 3 Decryption echo. echo Requirements; yt-dlp.exe , mp4decrypt.exe, ffmpeg.exe, aria2c.exe dans le dossier. echo. echo Extentions tous Chrome; Widevine L3 Decryptor, MPD detector echo. :format set /p folder="Entrer un nom du dossier ( avec sens espace) : " IF "%folder%" == "" GOTO format :Start set /p Lien="Input MPD URL : " IF "%Lien%" == "" GOTO Start yt-dlp --allow-unplayable-formats -F "%lien%" echo. set /p audio=Audio Quality ID : echo. set /p video=Video Quality ID : echo. yt-dlp --external-downloader aria2c --allow-unplayable-formats --verbose -f %video%+%audio% "%Lien%" -o "Downloads\%folder%\encrypted.%%(ext)s" echo. ren "Downloads\%folder%\*.mp4" encrypted.mp4 ren "Downloads\%folder%\*.m4a" encrypted.m4a :key set /p key=Input key (KEY): IF "%key%" == "" GOTO key echo. :ID set /p id=Input id (KID): IF "%id%" == "" GOTO ID echo. echo. echo Decrypting and Merging ......... mp4decrypt.exe --key %id%:%key% Downloads\%folder%\encrypted.m4a Downloads\%folder%\decrypted.m4a mp4decrypt.exe --key %id%:%key% Downloads\%folder%\encrypted.mp4 Downloads\%folder%\decrypted.mp4 ffmpeg -hide_banner -i Downloads\%folder%\decrypted.mp4 -i Downloads\%folder%\decrypted.m4a -acodec copy -vcodec copy Downloads\%folder%.mp4 RMDIR /s /q Downloads\%folder% echo. echo Completed ......... echo. pause cls
[Attachment 67053 - Click to enlarge] -
Similar Threads
-
Get PSSH from ism manifest with ProtectionHeader
By jack_666 in forum Video Streaming DownloadingReplies: 81Last Post: 15th Nov 2024, 12:40 -
How do i download this .ism stream?
By PanMarSag in forum Video Streaming DownloadingReplies: 8Last Post: 26th Oct 2021, 02:24 -
How to download ism manifest ???
By alexiscrew in forum Video Streaming DownloadingReplies: 1Last Post: 29th Apr 2021, 03:38 -
how can i download this ism files?
By Juni745 in forum Video Streaming DownloadingReplies: 1Last Post: 20th Dec 2019, 02:40 -
How to Download .ism/dash/ Videos
By Daringbaaz in forum Video Streaming DownloadingReplies: 8Last Post: 11th Feb 2019, 11:15