VideoHelp Forum


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


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


+ Reply to Thread
Page 1 of 7
1 2 3 ... LastLast
Results 1 to 30 of 206
Thread
  1. Good morning everyone, I read some posts on how to download DRM protected videos on Mediaset Infinity, but the video I try to download doesn't give me the possibility to see the m3u8 link. I tried with yt-dlp, but the result says impossible to download the video protected by DRM.WARNING: [Mediaset] Failed to download m3u8 information: HTTP Error 404: Not Found.Can you help me?I would like to understand what I'm doing wrong.Thanks

    https://mediasetinfinity.mediaset.it/video/escandalostoriadiunossessione/episodio-7_F312560601000704
    Quote Quote  
  2. In this case it's not an .m3u8 playlist, but .mpd:

    Code:
    https://vod06.msf.cdn.mediaset.net/farmunica/2023/09/1395433_18a74487d3ef89/dashrcenc/sd_wv_mpl.mpd
    Also you need the key to decrypt the video, once downloaded, which is:

    Code:
    886091ea34fc38622ed6ca7217d4e755:ac7bc77de1c6dafc2b8b7a614c8f73ee
    So, to download the whole thing and decrypt it in one step you're better off using N_m3u8dl-re and simply run:

    Code:
    N_m3u8dl-re --key 886091ea34fc38622ed6ca7217d4e755:ac7bc77de1c6dafc2b8b7a614c8f73ee https://vod06.msf.cdn.mediaset.net/farmunica/2023/09/1395433_18a74487d3ef89/dashrcenc/sd_wv_mpl.mpd
    Last edited by white_snake; 11th Feb 2024 at 07:35.
    Quote Quote  
  3. thanks, but could you explain to me how you got it all so that I can do it with other videos too?

    can you explain to me how you got the link.mpd and the key?
    Last edited by supergirl73; 4th Jan 2024 at 09:48.
    Quote Quote  
  4. Originally Posted by supergirl73 View Post
    thanks, but could you explain to me how you got it all so that I can do it with other videos too?
    To get the playlist URL you can use The Stream Detector browser extension or just look inside the Network tab in the developer options.

    To get the decryption keys you should read the sticky threads in this forum section, starting from https://forum.videohelp.com/threads/407216-Decryption-The-Dungeon-of-Despair

    You can skip setting up your CDM if you use a service like https://keysdb.net/

    Basically what you need to do is:
    • Find the PSSH of the video you're trying to decrypt. This is easy: you can either look inside the mpd or you can get it with the EME Logger extension. In this case it is:
      Code:
      AAAAU3Bzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAADMIARIQiGCR6jT8OGIu1spyF9TnVRoNYW1hem9udHZjcmltZSIIdGFtX3Rlc3QqAlNEMgA=
    • Find the license URL. In this case it is (it was a longer string, but I cut out the parameters):
      Code:
      https://widevine.entitlement.theplatform.eu/wv/web/ModularDrm/getRawWidevineLicense?otherparameters...
    • No headers needed for this one.

    P.S.: If you're lucky and the key is already stored in keysdb's database, you can retrieve it from https://keysdb.net/search using just the PSSH.
    Last edited by white_snake; 17th May 2024 at 22:23. Reason: update
    Quote Quote  
  5. To get the playlist URL you can use The Stream Detector browser extension or just look inside the Network tab in the developer options.

    I tried searching for URLs in the developer network table, but I can't find the link you gave me

    I also installed the stream detector extension, but honestly I can't use it, forgive me, but I'm a beginner, but if you have a little patience I'll get there
    Quote Quote  
  6. Originally Posted by supergirl73 View Post
    I tried searching for URLs in the developer network table, but I can't find the link you gave me

    I also installed the stream detector extension, but honestly I can't use it, forgive me, but I'm a beginner, but if you have a little patience I'll get there
    You have to open the developer options (F12) before you load the page/video (or simply refresh). This is what it looks like in Firefox (as you can see I filtered for "mpd").

    Image
    [Attachment 75972 - Click to enlarge]
    Quote Quote  
  7. this link isn't free to watch. need infinity+ account

    Image
    [Attachment 76032 - Click to enlarge]
    Quote Quote  
  8. Originally Posted by lomero View Post
    this link isn't free to watch. need infinity+ account

    Image
    [Attachment 76032 - Click to enlarge]
    ok...sorry
    Quote Quote  
  9. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Originally Posted by supergirl73 View Post
    Code:
    N_m3u8DL-RE -M format=mkv --key a5b95d3aeee201be5175abdaf2b188c6:7697abc69b57a429c7895c6ca7e1e86c "https://vod06.msf.cdn.mediaset.net/farmunica/2022/05/1104378_180d657ffd1708/dashrcenc/hd_wv_mpl.mpd" --save-name video
    Quote Quote  
  10. Originally Posted by iamghost View Post
    Originally Posted by supergirl73 View Post
    Code:
    N_m3u8DL-RE -M format=mkv --key a5b95d3aeee201be5175abdaf2b188c6:7697abc69b57a429c7895c6ca7e1e86c "https://vod06.msf.cdn.mediaset.net/farmunica/2022/05/1104378_180d657ffd1708/dashrcenc/hd_wv_mpl.mpd" --save-name video
    I managed to download the mp4 and m4a files with ytdlp, to decrypt them now I have to use your string? Can you explain to me how you obtained the key?
    Quote Quote  
  11. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    just add pssh and license URL,
    https://cdrm-project.com/

    i see mpd link give SD video so i changed from sd to hd to get 1080p
    Quote Quote  
  12. Originally Posted by supergirl73 View Post
    I managed to download the mp4 and m4a files with ytdlp, to decrypt them now I have to use your string? Can you explain to me how you obtained the key?
    god ... iamghost code is to download, decrypt and merge to final video all-in-one with N_m3u8DL-RE

    why have you used yt-dlp ?? now you need to decrypt manually, then merge with ffmpeg ...

    download N_m3u8DL-RE, copy and paste into cmd window the iamghost code. done
    Quote Quote  
  13. Thanks everyone, I finally succeeded. Is the procedure the same with this link?

    https://www.primevideo.com/
    Quote Quote  
  14. ahah, no, fully different. If all sites were the same, this forum wouldn't have existed !
    Quote Quote  
  15. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Use Streamfab if your lazy
    Quote Quote  
  16. Originally Posted by iamghost View Post
    Use Streamfab if your lazy
    streamfab can't find the 1920x1080 resolution for me
    Quote Quote  
  17. Code:
    N_m3u8DL-RE -M format=mkv --key f84a731ef4d6fc8c8c7159ea7cc618c4:6611c4169905db5876ac5e5b3f03b05f https://vod06.msf.cdn.mediaset.net/farmunica/2022/03/1057758_17f4f2539d365b/dashrcenc/hd_wv_mpl.mpd
    Quote Quote  
  18. Originally Posted by white_snake View Post
    Code:
    N_m3u8DL-RE -M format=mkv --key f84a731ef4d6fc8c8c7159ea7cc618c4:6611c4169905db5876ac5e5b3f03b05f https://vod06.msf.cdn.mediaset.net/farmunica/2022/03/1057758_17f4f2539d365b/dashrcenc/hd_wv_mpl.mpd

    Thank you, but I just can't figure out how to find all the necessary information
    Quote Quote  
  19. Originally Posted by supergirl73 View Post
    Originally Posted by white_snake View Post
    Code:
    N_m3u8DL-RE -M format=mkv --key f84a731ef4d6fc8c8c7159ea7cc618c4:6611c4169905db5876ac5e5b3f03b05f https://vod06.msf.cdn.mediaset.net/farmunica/2022/03/1057758_17f4f2539d365b/dashrcenc/hd_wv_mpl.mpd
    Thank you, but I just can't figure out how to find all the necessary information
    I can't explain it better than I already did here.
    Quote Quote  
  20. pssh how is it?
    How do you find the license URL?
    Quote Quote  
  21. key

    Code:
    f84a731ef4d6fc8c8c7159ea7cc618c4:6611c4169905db5876ac5e5b3f03b05f
    Command

    Code:
    N_m3u8DL-RE --key f84a731ef4d6fc8c8c7159ea7cc618c4:6611c4169905db5876ac5e5b3f03b05f "https://vod06.msf.cdn.mediaset.net/farmunica/2022/03/1057758_17f4f2539d365b/dashrcenc/sd_wv_mpl.mpd" -M format=mp4
    file

    https://www.transfernow.net/dl/20240120572VTM85
    Quote Quote  
  22. Originally Posted by supergirl73 View Post
    pssh how is it?
    I already told you. You need to find it with EME Logger, there's a Chrome extension for it: https://chromewebstore.google.com/detail/eme-call-and-event-logger/cniohcjecdcdhgmlofniddfoeokbpbpb

    It always starts with "AAAA" (at least in the case of WideVine).

    How do you find the license URL?
    I already told you, in this case just filter for "widevine" in your network tab.
    Quote Quote  
  23. Where can I see the various downloadable resolutions of the video?
    Quote Quote  
  24. Originally Posted by supergirl73 View Post
    Where can I see the various downloadable resolutions of the video?
    N_m3u8DL-RE displays them:

    Image
    [Attachment 76323 - Click to enlarge]


    Notice how I changed sd_wv_mpl.mpd (which is what you get from the browser) to hd_wv_mpl.mpd to get the high definition streams.
    Quote Quote  
  25. However, in this link even if I change SD to HD there are no high definition streams

    https://mediasetinfinity.mediaset.it/video/escandalostoriadiunossessione/episodio-7_F312560601000704
    Quote Quote  
  26. Originally Posted by supergirl73 View Post
    However, in this link even if I change SD to HD there are no high definition streams

    https://mediasetinfinity.mediaset.it/video/escandalostoriadiunossessione/episodio-7_F312560601000704
    They show up for me. I simply ran:
    Code:
    N_m3u8DL-RE https://vod06.msf.cdn.mediaset.net/farmunica/2023/09/1395433_18a74487d3ef89/dashrcenc/hd_wv_mpl.mpd
    Quote Quote  



Similar Threads

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