VideoHelp Forum


Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays! or rip iTunes movies!


Try StreamFab Downloader and download streaming video from Youtube, Netflix, Amazon! Download free trial.


+ Reply to Thread
Results 1 to 8 of 8
Thread
  1. 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.
    Quote Quote  
  2. use yt-dlp --allow-u "https://mpd_link"
    Last edited by lomero; 2nd Oct 2022 at 16:09.
    Quote Quote  
  3. I wouldn't watch RTE even if they paid me to, it's far-left propaganda.
    Quote Quote  
  4. Originally Posted by lomero View Post
    use yt-dlp --allow-u "https://mpd_link"
    Image
    [Attachment 67050 - Click to enlarge]


    What's happened?
    Quote Quote  
  5. What's happened? the first part of your code is totally wrong .... what goes through your mind?

    Image
    [Attachment 67051 - Click to enlarge]
    Quote Quote  
  6. 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
    here is what it looks like:
    Image
    [Attachment 67053 - Click to enlarge]
    Quote Quote  
  7. Originally Posted by tuskacz View Post
    I wouldn't watch RTE even if they paid me to, it's far-left propaganda.
    Don't talk utter shite , far left
    Quote Quote  
  8. Originally Posted by thedebutent59 View Post
    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
    here is what it looks like:
    Image
    [Attachment 67053 - Click to enlarge]
    This script is very useful for simplifying process, thank you for sharing.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!