VideoHelp Forum
+ Reply to Thread
Page 3 of 4
FirstFirst 1 2 3 4 LastLast
Results 61 to 90 of 116
Thread
  1. Originally Posted by lomero View Post
    Originally Posted by kajeneelik View Post
    and default license, it gives me 3 keys
    Code:
    697afa63f0e15d53b576f8210797130f:5b5b2aea8651b5be907827ca9fe58a48
    4572324042235a0dbf5766a4e4cbd84e:ac1c883190ceb41a0b5c0061d80e17f7
    9a782162b3c455269651d9c3c006ebf5:4395771465dc5ab1336a93739749549d
    but when i decryp mp4 its just green screen? and immidiately stops. something wrong
    wrong keys. try this one
    Code:
    0a89acd3908912c4735d510a77b364bc:5606b43ce3b9ed8be62088c2c1ad17ce
    Image
    [Attachment 64817 - Click to enlarge]


    and about how to download, read your other thread ...
    Code:
    https://forum.videohelp.com/threads/394709-How-can-I-download-videos-from-play-rtl-hr#post2656600
    I managed to download it, but i cannot seem to decrypt it successfully.
    Edited my main post, as i have posted a wrong link (mpd)
    Quote Quote  
  2. the key work fine. i've personally tested.
    if does not work for you, try again
    Quote Quote  
  3. I just wanted all of you to know, that I managed to do it, tried with multiple shows.

    I want to thank everyone, for fast and helpful comments. I really appreciate it. Hope I will be able to help someone!
    Quote Quote  
  4. Hello

    The video link is not working, cannot be played. Do we have any other link for the video or someone who can help me?
    Quote Quote  
  5. Member
    Join Date
    Jun 2022
    Location
    Canada
    Search Comp PM
    Originally Posted by [ss]vegeta View Post
    http://getwvkeys.cc/ you need this site for getting the keys so you can decrypt the encrypted content that you will download.

    Download these and put them in some folder (these are used for downloading, decrypting, merging video and audio)
    https://drive.google.com/file/d/1DxCKtao8EUoH3hWPOzlESWNJC2BSd-wt/view?usp=sharing

    Download this add on
    https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en

    Copy the contents of this code:
    Code:
    // ==UserScript==
    // @name         EME2
    // @version      0.6
    // @match        *://*/*
    // @match        http://ss-cdn1.blim.com/
    // @run-at       document-start
    // @grant        none
    // ==/UserScript==
    
    (async () => {
        const indent = (s,n=4) => s.split('\n').map(l=>Array(n).fill(' ').join('')+l).join('\n');
    
        const b64 = {
            decode: s => Uint8Array.from(atob(s), c => c.charCodeAt(0)),
            encode: b => btoa(String.fromCharCode(...new Uint8Array(b)))
        };
    
        const fnproxy = (object, func) => new Proxy(object, { apply: func });
    
        const proxy = (object, key, func) => Object.defineProperty(object, key, {
            value: fnproxy(object[key], func)
        });
    
            proxy(MediaKeySession.prototype, 'generateRequest', async (_target, _this, _args) => {
            const [initDataType, initData] = _args;
            console.groupCollapsed(
                `[EME] MediaKeySession::generateRequest\n` +
                `    Session ID: ${_this.sessionId || '(not available)'}\n` +
                `    Init Data Type: ${initDataType}\n` +
                `    Init Data: ${b64.encode(initData)}`
            );
            console.trace();
            console.groupEnd();
            return _target.apply(_this, _args);
        });
        })();
    and go to the add-on, click "Create New Script", paste the code there and click file -> save
    You need to do this so you can get the PSSH from console of browser, otherwise you won't have those codes in the console.

    The whole process is shown in the following video.
    Watch it closely, I might do some things that seem "fast" to you, so rewind, stop, watch, try, think, etc.
    https://streamable.com/umoszy - Removed by Streamable because it violated their stupid Terms of service.
    https://web.archive.org/web/20220301190239/https://streamable.com/umoszy

    Do let us now if you need help with anything.
    Anyway you could upload that video again? the web.archive doesn't seem to play

    Much appreciated
    Quote Quote  
  6. Originally Posted by trowa929 View Post
    the web.archive doesn't seem to play
    Use Firefox.
    Quote Quote  
  7. Member
    Join Date
    May 2022
    Location
    Germany
    Search Comp PM
    [QUOTE=trowa929;2660081]
    Originally Posted by [ss]vegeta View Post

    Anyway you could upload that video again? the web.archive doesn't seem to play

    Much appreciated
    dont know why, but the vid on web.archive donīt play on chrome, but on firefox it does
    Quote Quote  
  8. I downloaded the file.

    Here is the link. Thank you [ss]vegeta


    Within a forum dedicated to "Video Streaming Downloading" and a thread titled "Help downloading some videos", you would have thought that respondents would seize the opportunity to learn how to download the tutorial video.
    Quote Quote  
  9. Member
    Join Date
    Jun 2022
    Location
    Canada
    Search Comp PM
    Originally Posted by jack_666 View Post
    I downloaded the file.

    Here is the link. Thank you [ss]vegeta


    Within a forum dedicated to "Video Streaming Downloading" and a thread titled "Help downloading some videos", you would have thought that respondents would seize the opportunity to learn how to download the tutorial video.
    Sorry for the late response - That's actually what I ended up doing.

    Thanks anyhow.
    Quote Quote  
  10. Originally Posted by [ss]vegeta View Post
    http://getwvkeys.cc/ you need this site for getting the keys so you can decrypt the encrypted content that you will download.

    Download these and put them in some folder (these are used for downloading, decrypting, merging video and audio)
    https://drive.google.com/file/d/1DxCKtao8EUoH3hWPOzlESWNJC2BSd-wt/view?usp=sharing

    Download this add on
    https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en

    Copy the contents of this code:
    Code:
    // ==UserScript==
    // @name         EME2
    // @version      0.6
    // @match        *://*/*
    // @match        http://ss-cdn1.blim.com/
    // @run-at       document-start
    // @grant        none
    // ==/UserScript==
    
    (async () => {
        const indent = (s,n=4) => s.split('\n').map(l=>Array(n).fill(' ').join('')+l).join('\n');
    
        const b64 = {
            decode: s => Uint8Array.from(atob(s), c => c.charCodeAt(0)),
            encode: b => btoa(String.fromCharCode(...new Uint8Array(b)))
        };
    
        const fnproxy = (object, func) => new Proxy(object, { apply: func });
    
        const proxy = (object, key, func) => Object.defineProperty(object, key, {
            value: fnproxy(object[key], func)
        });
    
            proxy(MediaKeySession.prototype, 'generateRequest', async (_target, _this, _args) => {
            const [initDataType, initData] = _args;
            console.groupCollapsed(
                `[EME] MediaKeySession::generateRequest\n` +
                `    Session ID: ${_this.sessionId || '(not available)'}\n` +
                `    Init Data Type: ${initDataType}\n` +
                `    Init Data: ${b64.encode(initData)}`
            );
            console.trace();
            console.groupEnd();
            return _target.apply(_this, _args);
        });
        })();
    and go to the add-on, click "Create New Script", paste the code there and click file -> save
    You need to do this so you can get the PSSH from console of browser, otherwise you won't have those codes in the console.

    The whole process is shown in the following video.
    Watch it closely, I might do some things that seem "fast" to you, so rewind, stop, watch, try, think, etc.
    https://streamable.com/umoszy - Removed by Streamable because it violated their stupid Terms of service.
    https://web.archive.org/web/20220301190239/https://streamable.com/umoszy

    Do let us now if you need help with anything.
    the script doesn't work anymore to get the PSSH ...is there an alternative way?
    Quote Quote  
  11. yes, have alternative way. read some old post on this forum
    anyway this script work fine, write here your video link to test it
    Quote Quote  
  12. Hello,
    pls help me i'm not able to download video from viki.com anymore
    this is the the error i'm getting now

    Cached Key
    KID: f15850fdbad34a188b214e8fc494957b

    No keys found
    Quote Quote  
  13. Originally Posted by luvmichelle View Post
    Hello,
    pls help me i'm not able to download video from viki.com anymore
    this is the the error i'm getting now

    Cached Key
    KID: f15850fdbad34a188b214e8fc494957b

    No keys found
    Untick cache?
    Works fine for me
    Code:
    https://www.viki.com/videos/1194980v
    Code:
    https://manifest-viki.viki.io/v1/license?app_ver=4.0.98&dt=dt3&video_id=1194980v&app=100000a&h_timestamp=1656266374&sig=474e7ed0a16ab83512dd9188fe703c2c51903691
    Code:
    AAAAV3Bzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAADcIARIQblGRGeirQnWm6EjW4glLLhoLYnV5ZHJta2V5b3MiEG5RkRnoq0J1puhI1uIJSy4qAkhE
    Code:
    SUCCESS
    KID: 6e519119e8ab4275a6e848d6e2094b2e
    
    License URL: https://manifest-viki.viki.io/v1/license?app_ver=4.0.98&dt=dt3&video_id=1194980v&app=100000a&h_timestamp=1656266374&sig=474e7ed0a16ab83512dd9188fe703c2c51903691
    
    Acquired At: 6/26/2022, 8:00:45 PM
    
    6e519119e8ab4275a6e848d6e2094b2e:1dcf2132cdb6b4844dc7c219921f38d8
    Quote Quote  
  14. Originally Posted by [ss]vegeta View Post
    Originally Posted by luvmichelle View Post
    Hello,
    pls help me i'm not able to download video from viki.com anymore
    this is the the error i'm getting now

    Cached Key
    KID: f15850fdbad34a188b214e8fc494957b

    No keys found
    Untick cache?
    Works fine for me
    Code:
    https://www.viki.com/videos/1194980v
    Code:
    https://manifest-viki.viki.io/v1/license?app_ver=4.0.98&dt=dt3&video_id=1194980v&app=100000a&h_timestamp=1656266374&sig=474e7ed0a16ab83512dd9188fe703c2c51903691
    Code:
    AAAAV3Bzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAADcIARIQblGRGeirQnWm6EjW4glLLhoLYnV5ZHJta2V5b3MiEG5RkRnoq0J1puhI1uIJSy4qAkhE
    Code:
    SUCCESS
    KID: 6e519119e8ab4275a6e848d6e2094b2e
    
    License URL: https://manifest-viki.viki.io/v1/license?app_ver=4.0.98&dt=dt3&video_id=1194980v&app=100000a&h_timestamp=1656266374&sig=474e7ed0a16ab83512dd9188fe703c2c51903691
    
    Acquired At: 6/26/2022, 8:00:45 PM
    
    6e519119e8ab4275a6e848d6e2094b2e:1dcf2132cdb6b4844dc7c219921f38d8
    it's working now
    thank you so much
    Quote Quote  
  15. Member
    Join Date
    Aug 2022
    Location
    Estonia
    Search PM
    Hiya
    Is there mp4decrypt available for a 32 bit windows? Couldn't find one via google or on bento homepage
    Quote Quote  
  16. Member
    Join Date
    Aug 2021
    Location
    Spain
    Search Comp PM
    ..
    Last edited by gufoli; 3rd Sep 2022 at 17:26.
    Quote Quote  
  17. Hello, how obtain key from player.pl videos ? i try with video help, all ok, but on wvkeys create key and this key not work on mp4decrypt. Whats wrong ?
    Quote Quote  
  18. Hi any option to download this type of m3u8 complete?

    URL
    Code:
    https://nbalpng.akamaized.net/vod-pz/a/hls-wvpr/NBA_g0022200001phi1000442bosV/index.m3u8
    When the downloader found this part of m3u8 stops

    Image
    [Attachment 67298 - Click to enlarge]
    Quote Quote  
  19. ' HLS stream is DRM protected'.
    Quote Quote  
  20. Member
    Join Date
    Oct 2022
    Location
    Germany
    Search PM
    Yallo.tv is a new free streaming service, similar to Zattoo, where programs can be recorded. The recorded programs can be watched for 14 days. The recordings are protected. The mpd contains KID and pssh.

    I can't find license servers via network analysis. I find there a URL https://o952329.ingest.sentry.io/api/5901744/envelope/?sentry_key=3be85e6760bf4459b1e7...ntry_version=7

    Attached is the mpd of a recording news broadcast

    https://zh2-13-dashenc-pvr.zahs.tv/HD_sf1/1666122299200/1666125300800/m_drm_widevine.m...EGQ3TOYZGOY6TA

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <MPD xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="urn:mpeg:dash:schema:mpd:2011"
     xmlns:scte35="urn:scte:scte35:2013:xml"
    xsi:schemaLocation="urn:mpeg:dash:schema:mpd:2011 http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-DASH_schema_files/DASH-MPD.xsd"
     minBufferTime="PT1S"
     xmlns:cenc="urn:mpeg:cenc:2013"
    profiles="urn:mpeg:dash:profile:isoff-main:2011"
     type="static"
     mediaPresentationDuration="PT3001.600S">
      <Period id="1" start="PT0S" duration="PT3001.600S">
        <AdaptationSet id="0" mimeType="video/mp4" contentType="video" segmentAlignment="true" startWithSAP="1">
          <Role schemeIdUri="urn:mpeg:dash:role:2011" value="main"/>
          <ContentProtection schemeIdUri="urn:mpeg:dash:mp4protection:2011" value="cenc" cenc:default_KID="56d2f650-f14d-1132-d707-091661b30e95"/>
          <ContentProtection schemeIdUri="urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed">
            <cenc:pssh>AAAATHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAACwIARIgNTZkMmY2NTBmMTRkMTEzMmQ3MDcwOTE2NjFiMzBlOTUaBnphdHRvbw==</cenc:pssh>
          </ContentProtection>
          <SegmentTemplate media="f_track_video_ts_$Time$_drm_widevine_nd_1600_d_1600_mbr_5000_bw_$Bandwidth$_num_0_tid_1.mp4?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU" presentationTimeOffset="0" timescale="1000" initialization="i_track_video_drm_widevine_nd_1600_d_1600_mbr_5000_bw_$Bandwidth$_num_0_tid_1.mp4?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU">
            <SegmentTimeline>
              <S d="1600" r="1875"/>
            </SegmentTimeline>
          </SegmentTemplate>
          <Representation id="0" bandwidth="4800000" width="1280" height="720" codecs="avc1.4d4020" frameRate="50"/>
          <Representation id="1" bandwidth="2800000" width="1280" height="720" codecs="avc1.4d401f" frameRate="25"/>
          <Representation id="2" bandwidth="1300000" width="768" height="432" codecs="avc1.4d401e" frameRate="25"/>
          <Representation id="3" bandwidth="700000" width="512" height="288" codecs="avc1.4d4015" frameRate="25"/>
          <Representation id="4" bandwidth="452000" width="512" height="288" codecs="avc1.4d4015" frameRate="25"/>
          <Representation id="5" bandwidth="250000" width="400" height="224" codecs="avc1.42c00c" frameRate="25/2"/>
          <Representation id="6" bandwidth="50000" width="400" height="224" codecs="avc1.42c00b" frameRate="5"/>
        </AdaptationSet>
        <AdaptationSet id="1" mimeType="audio/mp4" contentType="audio" lang="de" codecs="mp4a.40.2" segmentAlignment="true" startWithSAP="1">
          <AudioChannelConfiguration schemeIdUri="urn:mpeg:mpegB:cicp:ChannelConfiguration" value="2"/>
          <ContentProtection schemeIdUri="urn:mpeg:dash:mp4protection:2011" value="cenc" cenc:default_KID="56d2f650-f14d-1132-d707-091661b30e95"/>
          <ContentProtection schemeIdUri="urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed">
            <cenc:pssh>AAAATHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAACwIARIgOTk3MWJkYjY1NTI2OWMyMjk2ZjRkNWNlNjY1MjBjNGQaBnphdHRvbw==</cenc:pssh>
          </ContentProtection>
          <SegmentTemplate media="f_track_audio_ts_$Time$_drm_widevine_nd_1600_mbr_5000_bw_$Bandwidth$_d_1600_num_0_tid_2_p_10_l_de.m4s?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU" presentationTimeOffset="0" timescale="1000" initialization="i_track_audio_drm_widevine_nd_1600_mbr_5000_bw_$Bandwidth$_d_1600_num_0_tid_2_p_10_l_de.mp4?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU">
            <SegmentTimeline>
              <S d="1600" r="1875"/>
            </SegmentTimeline>
          </SegmentTemplate>
          <Representation id="7" bandwidth="128000"/>
        </AdaptationSet>
        <AdaptationSet id="2" mimeType="audio/mp4" contentType="audio" lang="de" codecs="ec-3" segmentAlignment="true" startWithSAP="1">
          <AudioChannelConfiguration schemeIdUri="tag:dolby.com,2014:dash:audio_channel_configuration:2011" value="F801"/>
          <ContentProtection schemeIdUri="urn:mpeg:dash:mp4protection:2011" value="cenc" cenc:default_KID="56d2f650-f14d-1132-d707-091661b30e95"/>
          <ContentProtection schemeIdUri="urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed">
            <cenc:pssh>AAAATHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAACwIARIgOTk3MWJkYjY1NTI2OWMyMjk2ZjRkNWNlNjY1MjBjNGQaBnphdHRvbw==</cenc:pssh>
          </ContentProtection>
          <SegmentTemplate media="f_track_audio_ts_$Time$_drm_widevine_nd_1600_mbr_5000_bw_$Bandwidth$_d_1600_num_1_tid_3_p_20_l_de.m4s?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU" presentationTimeOffset="0" timescale="1000" initialization="i_track_audio_drm_widevine_nd_1600_mbr_5000_bw_$Bandwidth$_d_1600_num_1_tid_3_p_20_l_de.mp4?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU">
            <SegmentTimeline>
              <S d="1600" r="1875"/>
            </SegmentTimeline>
          </SegmentTemplate>
          <Representation id="8" bandwidth="256000"/>
        </AdaptationSet>
        <AdaptationSet id="3" mimeType="audio/mp4" contentType="audio" lang="en" codecs="mp4a.40.2" segmentAlignment="true" startWithSAP="1">
          <AudioChannelConfiguration schemeIdUri="urn:mpeg:mpegB:cicp:ChannelConfiguration" value="2"/>
          <ContentProtection schemeIdUri="urn:mpeg:dash:mp4protection:2011" value="cenc" cenc:default_KID="56d2f650-f14d-1132-d707-091661b30e95"/>
          <ContentProtection schemeIdUri="urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed">
            <cenc:pssh>AAAATHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAACwIARIgOTk3MWJkYjY1NTI2OWMyMjk2ZjRkNWNlNjY1MjBjNGQaBnphdHRvbw==</cenc:pssh>
          </ContentProtection>
          <SegmentTemplate media="f_track_audio_ts_$Time$_drm_widevine_nd_1600_mbr_5000_bw_$Bandwidth$_d_1600_num_2_tid_4_p_10_l_en.m4s?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU" presentationTimeOffset="0" timescale="1000" initialization="i_track_audio_drm_widevine_nd_1600_mbr_5000_bw_$Bandwidth$_d_1600_num_2_tid_4_p_10_l_en.mp4?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU">
            <SegmentTimeline>
              <S d="1600" r="1875"/>
            </SegmentTimeline>
          </SegmentTemplate>
          <Representation id="9" bandwidth="128000"/>
        </AdaptationSet>
        <AdaptationSet id="4" mimeType="application/mp4" contentType="text" lang="de" codecs="stpp">
          <Role schemeIdUri="urn:mpeg:dash:role:2011" value="alternate"/>
          <SegmentTemplate media="f_track_subs_ts_$Time$_bw_5000000_nd_1600_d_1600_mbr_5000_num_0_tid_5_l_de.m4s?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU" presentationTimeOffset="0" timescale="1000" initialization="i_track_subs_bw_5000000_nd_1600_d_1600_mbr_5000_num_0_tid_5_l_de.mp4?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU">
            <SegmentTimeline>
              <S d="1600" r="1875"/>
            </SegmentTimeline>
          </SegmentTemplate>
          <Representation id="10" bandwidth="100"/>
        </AdaptationSet>
        <AdaptationSet id="5" mimeType="image/jpeg" contentType="image">
          <SegmentTemplate media="f_track_tile_ts_$Time$_d_40000_nd_1600_mbr_5000_bw_$Bandwidth$_num_0_tid_99_ht_5_vt_5_tr_256x144_thd_1600.jpg?z32=MNZWSZB5GE3TCRSDIZBEKN2CGBCDCM2CGAWTGNSBGAYTAMCEGYZTMOBTGM2TGJTEOJWT22DEMNYDULJRFRWHM3B2GMTHK43FOJPWSZB5PFQWY3DPHI5DMMZUMQZDIZBZHE2DIMZYMI2DKMBRGJSDINZXMMTHMPJQEZZWSZZ5GM3F6M3FG5RWGY3CGYYDKNLEHEZDAM3GHE2WMMZWGMYWCMRTHFSWGYZU" presentationTimeOffset="0" timescale="1000">
            <SegmentTimeline>
              <S d="40000" r="74"/>
              <S d="1600"/>
            </SegmentTimeline>
          </SegmentTemplate>
          <Representation id="11" bandwidth="36864" width="1280" height="720" frameRate="0">
            <EssentialProperty schemeIdUri="http://dashif.org/guidelines/thumbnail_tile" value="5x5"/>
          </Representation>
        </AdaptationSet>
      </Period>
    </MPD>
    Quote Quote  
  21. Originally Posted by blinky0110 View Post
    I can't find license servers via network analysis.
    I don't know how the recording goes, but there's license url in the response of this
    Code:
    https://api.production.k8s.y3o.tv/naboo/zattoo/streams/rtl-2?timeshift=true
    Response
    Code:
    {"stream_type": "dash_widevine", "start": "2022-10-27T04:57:12.418615", "license_url": "https://zh2-4-dashenc-live.zahs.tv/HD_rtl2_schweiz/l_drm_widevine?z32=MF2WI2LPL5RW6ZDFMNZT2YLBMMWGKYLDGMTGG43JMQ6TCNZSGFCEKMBQIU2EKRJUIZBUKLJUIFCUKNZSGE3TQQKEHBBUKNRQEZSHE3J5NBSGG4B2FUYSY3DWNQ5DGJTNMF4HEYLUMU6TKMBQGATHG2LHHUYTOX3DMYZGEYJQHE4TGODBHFRTQNZRHEZDKMJSMEYWMNJXGIZTMMBTMUTHI2LNMVZWQ2LGOQ6TCMBYGAYCM5DUHUYSM5LTMVZF62LEHV4WC3DMN45DUNRTGVQTGODGGFSDSODDGNRTIN3DGZSDKYRYGVQSM5R5GA", "provider": "zattoo", "_preflight_checks": [{"passed": true, "name": "geo", "error_code": null, "additional_info": null}, {"passed": true, "name": "adblocker", "error_code": null, "additional_info": null}, {"passed": true, "name": "channelpackage", "error_code": null, "additional_info": null}, {"passed": true, "name": "multistream", "error_code": null, "additional_info": null}], "picture_url": null, "timepoint": "2022-10-27T07:57:12.418615", "url": "https://zh2-4-dashenc-live.zahs.tv/HD_rtl2_schweiz/m_drm_widevine.mpd?z32=MF2WI2LPL5RW6ZDFMNZT2YLBMMWGKYLDGMTGG43JMQ6TCNZSGFCEKMBQIU2EKRJUIZBUKLJUIFCUKNZSGE3TQQKEHBBUKNRQEZSHE3J5NBSGG4B2FUYSY3DWNQ5DGJTNMF4HEYLUMU6TKMBQGATHG2LHHUYTOX3DMYZGEYJQHE4TGODBHFRTQNZRHEZDKMJSMEYWMNJXGIZTMMBTMUTHI2LNMVZWQ2LGOQ6TCMBYGAYCM5DUHUYSM5LTMVZF62LEHV4WC3DMN45DUNRTGVQTGODGGFSDSODDGNRTIN3DGZSDKYRYGVQSM5R5GA", "provider_channel_id": "rtl-2", "channel_name": "rtl-2"}
    So, license url
    Code:
    https://zh2-4-dashenc-live.zahs.tv/HD_rtl2_schweiz/l_drm_widevine?z32=MF2WI2LPL5RW6ZDFMNZT2YLBMMWGKYLDGMTGG43JMQ6TCNZSGFCEKMBQIU2EKRJUIZBUKLJUIFCUKNZSGE3TQQKEHBBUKNRQEZSHE3J5NBSGG4B2FUYSY3DWNQ5DGJTNMF4HEYLUMU6TKMBQGATHG2LHHUYTOX3DMYZGEYJQHE4TGODBHFRTQNZRHEZDKMJSMEYWMNJXGIZTMMBTMUTHI2LNMVZWQ2LGOQ6TCMBYGAYCM5DUHUYSM5LTMVZF62LEHV4WC3DMN45DUNRTGVQTGODGGFSDSODDGNRTIN3DGZSDKYRYGVQSM5R5G
    PSSH
    Code:
    AAAATHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAACwIARIgZGE4ZWEyZjA4NDJhMGQyMzMyMWIzMGRmNmZjMDRhNTkaBnphdHRvbw==
    Doesn't need headers.

    Keys for 7 RTL Zwei
    Code:
    62e338bc609e3263b83d7379737e7d72:34d48fe4c57e2308d7abc13335877948
    0bac33bebc94a5bcf5b9e230ce00ef64:492ba0ab64b514f292ea51e113389fd6
    Quote Quote  
  22. I try decode this found code, convert to hex, copy to wvkeys and when i try decoder video, not work. Whats wrong ?
    Quote Quote  
  23. Originally Posted by Marekx89 View Post
    Whats wrong ?
    Explain better. Did you get the keys? Is there an error that you can show us?
    I didn't understand anything. learn2english
    Quote Quote  
  24. Member
    Join Date
    Oct 2022
    Location
    Germany
    Search PM
    Keys for 7 RTL Zwei
    Code:
    62e338bc609e3263b83d7379737e7d72:34d48fe4c57e2308d7abc13335877948
    0bac33bebc94a5bcf5b9e230ce00ef64:492ba0ab64b514f292ea51e113389fd6
    [/QUOTE]

    Many Thanks. But this key does not work for recording on SRF 2
    Quote Quote  
  25. Originally Posted by blinky0110 View Post
    Many Thanks. But this key does not work for recording on SRF 2
    Well, obviously, different keys for different channels.
    Someone else will try to get you those, if they don't, I'll try tomorrow, if I remember.
    Quote Quote  
  26. Originally Posted by blinky0110 View Post
    Keys for 7 RTL Zwei
    Code:
    62e338bc609e3263b83d7379737e7d72:34d48fe4c57e2308d7abc13335877948
    0bac33bebc94a5bcf5b9e230ce00ef64:492ba0ab64b514f292ea51e113389fd6
    Many Thanks. But this key does not work for recording on SRF 2
    each channel has different keys.
    heres the keys for SRF 2
    Code:
    83834d50d1f3e4dbbfff26b8c35dd64b:49f77e360e8744254691fe14017c2d90
    6995d4c52ca0771b5a73e5c51003ad2b:2a8d9eae7f931e349c252ec0d7830267
    Quote Quote  
  27. Member
    Join Date
    Mar 2013
    Location
    Argentina
    Search Comp PM
    Hi there
    I'm trying to find a way that works to decrypt episodes I want to download from ctv.ca
    Now, I watched Vegeta's video and paid attention to all the details. I got the License URL, the PSSH code, and the headers.
    But when I copy the license URL and go to getwvkeys.herokuapp.com, I can't enter any of the information because the site no longer works.
    I understand that some of these things work for a while, then new methods appear to achieve getting the decrypting keys.
    Could someone here please head me to the current working way to get them (keys) from the point the instructions in the video are outdated (because of the website isn't working)?
    Is joining the Discord GetWVKeys Channel the only option to get them? (already joined it - I've been told I have to be patient to get an anwer).
    But since I want to download and decrypt an 8-seasons TV series, I'm not so sure I'll get all the help to decrypt all those episodes just like that lol.
    Ok, if someone can help, or guide me, please do? I seriously want to learn to do it myself but it seems I have to bother others to request for the keys. No way for someone here to teach us how to get them ourselves? Just wondering.
    I HAVE to have the "Who's the boss" series.
    Thanks a bunch !!!!

    BTW, I got this far with S01E01:

    License
    Code:
    https://license.9c9media.ca/widevine
    PSSH
    Code:
    AAAAlnBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAAHYIARIQ+vLejKSJcuIiGE2x/rGiRhoJYmVsbG1lZGlhIlVwbGF5bGlzdC8yNTMxNjgzLzMwNTUwMDA5L2Rhc2gvMjAxMzAwMDEvYmQyYTM4YTc3MzFkNTU3My9pbmRleC85MzY4ZGVlYy9ub25lL25vbmUvZHJt
    Headers
    Code:
    accept: */*
    accept-encoding: gzip, deflate, br
    accept-language: es-ES,es;q=0.9
    content-length: 4291
    origin: https://www.ctv.ca
    referer: https://www.ctv.ca/
    sec-ch-ua: "Google Chrome";v="107", "Chromium";v="107", "Not=A?Brand";v="24"
    sec-ch-ua-mobile: ?1
    sec-ch-ua-platform: "Android"
    sec-fetch-dest: empty
    sec-fetch-mode: cors
    sec-fetch-site: cross-site
    user-agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36
    V+A download code
    Code:
    ytdlp.exe --allow-u --downloader aria2c -f bv,ba "https://capi.9c9media.com/destinations/ctvthrowback_hub/platforms/desktop/bond/contents/1562874/contentpackages/2531683/manifest.mpd"
    And I'm stuck there.
    Last edited by oopargentina; 11th Nov 2022 at 19:18.
    Quote Quote  
  28. If you don't have access to Getwkkeys, you can use this one

    https://cdrm-project.com/

    your key

    Code:
    faf2de8ca48972e222184db1feb1a246:7080927e893621069a4f22f472f77a4e
    Quote Quote  
  29. Member
    Join Date
    Mar 2013
    Location
    Argentina
    Search Comp PM
    Thank you SO VERY MUCH, cedric8528!!!!
    Quote Quote  



Similar Threads

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