VideoHelp Forum




+ Reply to Thread
Page 15 of 16
FirstFirst ... 5 13 14 15 16 LastLast
Results 421 to 450 of 465
  1. Ambassador Of Atmosphere
    Join Date
    Nov 2024
    Location
    Brooklyn, NY
    Search Comp PM
    Originally Posted by IriMV57 View Post
    Please, can somebody help me and get the mpd links and the keys for this video.
    They are geoblocked outside of Italy.

    https://mediasetinfinity.mediaset.it/video/pavarottiluomocheemozionoilmondo/il-concert...14067101000101

    Disponibile fino al 04/12/2025
    https://vod06.msf.cdn.mediaset.net/farmunica/2025/11/2368214_19a542f973c645/dashrcenc/hr_wv_mpl.mpd I tried grabbing this with StreamFab, but it wouldn't play because of DRM issues. For now I managed to grab the MPD link using Video Download Helper.
    Last edited by Lupine Assassin; 11th Nov 2025 at 23:30.
    We all bleed blue from the inside....
    Quote Quote  
  2. Code:
    https://vod06.msf.cdn.mediaset.net/farmunica/2025/11/2368214_19a542f973c645/dashrcenc/hd_wv_mpl.mpd
    
    a33293465d26bdfb5061e1c799af1704:acfce1ea548c1a1124a0635fb9e2f16c
    Goku73, grazie mille per la tua risposta.
    Quote Quote  
  3. I did it with https://greasyfork.org/en/scripts/373903-eme-logger, https://cdrm-project.com/, yt-dlp_linux, mp4decrypt and finally with MKVTolkit.

    Thanks anyway
    Quote Quote  
  4. This video has expired
    Code:
    https://mediasetinfinity.mediaset.it/video/csiscenadelcrimine/ep-6-contro-ogni-evidenza_F011086801000603
    Pssh of the video
    HTML Code:
    AAAAWnBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAADoIARIQbYFXC0R4FvF1xoSxnlA+fxoUYW1hem9uZm9jdXNzZWxlY3Rpb24iCHRhbV90ZXN0KgJTRDIA
    Kid of the video
    Code:
    6d81570b447816f175c684b19e503e7f
    Has anyone saved the key (before it expired)?
    Quote Quote  
  5. Member
    Join Date
    Oct 2025
    Location
    Canda
    Search PM
    Originally Posted by marione25 View Post
    I did it with https://greasyfork.org/en/scripts/373903-eme-logger, https://cdrm-project.com/, yt-dlp_linux, mp4decrypt and finally with MKVTolkit.

    Thanks anyway
    You can try: https://github.com/Arrowar/StreamingCommunity
    Quote Quote  
  6. To simplify things for replacing EME logger to detect pssh code, I simplified the code to detect URLs with MPD extensions and PSSH code with colors.

    Here's a visual preview:
    Image
    [Attachment 90431 - Click to enlarge]


    the TamperMonkey code:
    Code:
    // ==UserScript==
    // @name         Detect PSSH & MPD
    // @namespace    http://tampermonkey.net/
    // @version      1.0
    // @description  Affiche la MPD et tous les PSSH une seule fois
    // @match        *://*/*
    // @grant        none
    // ==/UserScript==
    
    (function () {
        'use strict';
    
        let mpdUrl = null;
        const psshSet = new Set();
        let printed = false;
    
        function tryPrintOnce() {
            if (printed) return;
            if (!mpdUrl) return;
            if (psshSet.size === 0) return;
    
            printed = true;
    
            // Affichage coloré
            console.log("%c=============== MPD + PSSH ===============", "color: blue; font-weight: bold;");
            console.log("%cMPD : %c" + mpdUrl, "color: red; font-weight: bold;", "color: yellow; font-weight: bold;");
            const allPssh = Array.from(psshSet).join(" | ");
            console.log("%cPSSH : %c" + allPssh, "color: orange; font-weight: bold;", "color: yellow; font-weight: bold;");
        }
    
        // Interception PSSH
        const originalGenerateRequest = MediaKeySession.prototype.generateRequest;
        MediaKeySession.prototype.generateRequest = function (type, data) {
            if (type === "cenc") {
                try {
                    const pssh = btoa(String.fromCharCode(...new Uint8Array(data)));
                    psshSet.add(pssh);
                    tryPrintOnce();
                } catch (e) {
                    console.error("Erreur PSSH:", e);
                }
            }
            return originalGenerateRequest.call(this, type, data);
        };
    
        // Interception MPD via fetch
        const originalFetch = window.fetch;
        window.fetch = function (...args) {
            const url = args[0];
            if (!mpdUrl && typeof url === "string" && url.includes(".mpd")) {
                mpdUrl = url;
                tryPrintOnce();
            }
            return originalFetch.apply(this, args);
        };
    
    })();
    Quote Quote  
  7. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    a bit pushy. you post same thing earlier
    all you need addon widevineproxy2
    Quote Quote  
  8. yes sorry I made a mistake, I can't download it can you provide me the links directly
    Quote Quote  
  9. Can someone help me? Can you send me the download link directly?
    Quote Quote  
  10. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    direct manifest link... ok
    Code:
    https://vod06.msf.cdn.mediaset.net/farmunica/2025/11/2376558_19aa60b3581645/dashrcenc/hr_wv_mpl.mpd
    https://vod06.msf.cdn.mediaset.net/farmunica/2025/11/2380837_19acf9ae7e0d01/dashrcenc/hr_wv_mpl.mpd
    https://vod06.msf.cdn.mediaset.net/farmunica/2025/12/2393316_19b2820d3d6d01/dashrcenc/hr_wv_mpl.mpd
    https://vod06.msf.cdn.mediaset.net/farmunica/2025/12/2389398_19b12c6d1dbf89/dashrcenc/hr_wv_mpl.mpd
    https://vod06.msf.cdn.mediaset.net/farmunica/2025/12/2392486_19b35b983dad01/dashrcenc/hr_wv_mpl.mpd
    Quote Quote  
  11. Image
    [Attachment 90467 - Click to enlarge]
    THANK YOU, WHY DNS server not authoritative for the zone.? IT TELLS ME THIS
    Last edited by luca12; 27th Dec 2025 at 17:07.
    Quote Quote  
  12. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    what is this? you cant do this way...

    go to sticky threads and read all of them, there is every thing you need learn how to do it by yourself
    Quote Quote  
  13. I've done this before and i did it this way
    Quote Quote  
  14. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    nope. you cant open cmd and paste just mpd link. it doesnt work that way
    look at mine cmd...
    Image
    [Attachment 90475 - Click to enlarge]
    Quote Quote  
  15. Image
    [Attachment 90474 - Click to enlarge]
    i already tried it but it doesn't work
    Quote Quote  
  16. Does not combine video and audio
    Quote Quote  
  17. Code:
    N_m3u8DL-RE --sub-format srt --check-segments-count false --save-name "ZeligON.S01E01" -sv best -sa all -ss all "https://vod06.msf.cdn.mediaset.net/farmunica/2025/11/2376558_19aa60b3581645/dashrcenc/hd_wv_mpl.mpd" -H "Accept: */*" -H "DNT: 1" -H "Origin: https://mediasetinfinity.mediaset.it" -H "Referer: https://mediasetinfinity.mediaset.it/" -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" --key a1347793005192744069eeb62c118fba:cbb3c97a70453698b6bb74649cff7207 --use-shaka-packager -M format=mkv
    Code:
    N_m3u8DL-RE --sub-format srt --check-segments-count false --save-name "ZeligON.S01E02" -sv best -sa all -ss all "https://vod06.msf.cdn.mediaset.net/farmunica/2025/11/2380837_19acf9ae7e0d01/dashrcenc/hd_wv_mpl.mpd" -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" -H "DNT: 1" -H "Accept: */*" -H "Origin: https://mediasetinfinity.mediaset.it" -H "Referer: https://mediasetinfinity.mediaset.it/" --key d2a2920cc84b0d8d7f9e262acac0ac67:ffb6093439b37237967204ccd8817d59 --use-shaka-packager -M format=mkv
    Code:
    N_m3u8DL-RE --sub-format srt --check-segments-count false --save-name "ZeligON.S01E03" -sv best -sa all -ss all "https://vod06.msf.cdn.mediaset.net/farmunica/2025/12/2393316_19b2820d3d6d01/dashrcenc/hd_wv_mpl.mpd" -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" -H "DNT: 1" -H "Accept: */*" -H "Origin: https://mediasetinfinity.mediaset.it" -H "Referer: https://mediasetinfinity.mediaset.it/" --key b83c72fc55311fab4a842ebdadcc6e99:cdcdaf5aabed28f47e7eee2ac82975fd --use-shaka-packager -M format=mkv
    Code:
    N_m3u8DL-RE --sub-format srt --check-segments-count false --save-name "ZeligON.S01E04" -sv best -sa all -ss all "https://vod06.msf.cdn.mediaset.net/farmunica/2025/12/2389398_19b12c6d1dbf89/dashrcenc/hd_wv_mpl.mpd" -H "Accept: */*" -H "DNT: 1" -H "Origin: https://mediasetinfinity.mediaset.it" -H "Referer: https://mediasetinfinity.mediaset.it/" -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" --key d4f2d1a0e8be8e067d4c1b581b645888:d62d830cf1bd117d04f19e795726eca1 --use-shaka-packager -M format=mkv
    Code:
    N_m3u8DL-RE --sub-format srt --check-segments-count false --save-name "ZeligON.S01E05" -sv best -sa all -ss all "https://vod06.msf.cdn.mediaset.net/farmunica/2025/12/2392486_19b35b983dad01/dashrcenc/hd_wv_mpl.mpd" -H "Accept: */*" -H "DNT: 1" -H "Origin: https://mediasetinfinity.mediaset.it" -H "Referer: https://mediasetinfinity.mediaset.it/" -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" --key d8f4b69a16270ed8a86531bff2c7de29:1ff61a072e54f12b62822557c58e13ad --use-shaka-packager -M format=mkv
    Quote Quote  
  18. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Originally Posted by luca12 View Post
    Image
    [Attachment 90474 - Click to enlarge]
    i already tried it but it doesn't work
    you have all binaries there.
    it easy to install widevineproxy2 or vineless addon with your browser, wvd and prd cdm already in sticky thread
    all you can download by yourself without posting many request
    Quote Quote  
  19. does not combine video with audio . this is the problem. I don't understand
    Quote Quote  
  20. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    because of not reading through this forum....
    -M format=mp4 or mkv

    do you know i just give you encrypted video .mpd
    you will need add decrypted keys to decrypt the video. otherwise you will not see or hear video
    Quote Quote  
  21. HOW DO I enter the decryption key? I've always done it this way in the past, but now I can't download it anymore
    Quote Quote  
  22. I don't need it widevineproxy2, I have N_m3u8DL-RE --sub-format srt --check-segments-count false --save-name "ZeligON.S01E01" ........
    I don't combine video with audio . this is the problem. I don't understand
    Quote Quote  
  23. can anyone help me?
    Quote Quote  



Similar Threads

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