VideoHelp Forum



Support our site by donate $5 directly to us Thanks!!!

Try StreamFab Downloader and download streaming video from Netflix, Amazon!



+ Reply to Thread
Results 1 to 10 of 10
  1. Can any expert help me? I can't get this movie to work on OTT NAVIGATOR, can you explain why? I have everything correct, correct keys etc... can you help me? thank you





    #EXTINF:-1 tvg-id="POSESION INFERNAL" tvg-name="POSESION INFERNAL" tvg-logo="https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT6jz9gqgECpLcg5EvFDT7HBiNI5JUj0 R5ueN0DZeZHdVPDmmdG" group-title="HBO", POSESION INFERNAL
    #KODIPROP:inputstreamaddon=inputstream.adaptive
    #KODIPROP:inputstream.adaptive.manifest_type=mpd
    #KODIPROP:inputstream.adaptive.license_type=cleark ey
    #KODIPROP:inputstream.adaptive.license_key={"keys" :[{"kty":"oct","kid":"AQB94tDTgDHT6PRjK1Gpjg","k":"j P4l1dTjRm7gDAYnZUHzBg"},{"kty":"oct","kid":"AQWvS3 AG1Aqkon4R8BHF/Q","k":"AAAAAAAAAAAAAAAAAAAAAA"},{"kty":"oct","kid ":"AQEDY6wz9xzC0U3aFnTnYw","k":"0wPnVWD89peza8y03p 1LYg"},{"kty":"oct","kid":"AQNWvLyzw0XZaf0FWo/C1g","k":"AAAAAAAAAAAAAAAAAAAAAA"}], "type":"temporary" }
    #EXTVLCOPT:http-user-agent=Chrome/61.0.3163.100
    https://manifests.api.hbo.com/dash.mpd?f.audioTrack=en-US%7Cdescriptive%2Cprogram&f.au...SESIONINFERNAL
    Quote Quote  
  2. your keys are probably wrong if it does not decrypt.
    Quote Quote  
  3. Originally Posted by swappyison View Post
    your keys are probably wrong if it does not decrypt.

    the keys are correct I assure you, it gets to give an image but it stays frozen in green, the audio is perfectly heard in the background.
    Quote Quote  
  4. Banned
    Join Date
    Apr 2022
    Location
    Hong Kong
    Search Comp PM
    HBO? What's the URL you are visiting? And what's the name of the video?

    Because there are two sets of AAAA...s in the keys, and when you convert them from base64 to hex you'll find that they're all zero, which means that this set of key needs L1.
    ---
    Wait, "Caleb"? Are you watching Evil Dead Rise?
    Image
    [Attachment 73590 - Click to enlarge]
    Last edited by CrymanChen; 2nd Sep 2023 at 04:41.
    Quote Quote  
  5. Member piaohua's Avatar
    Join Date
    May 2023
    Location
    中国
    Search PM
    Originally Posted by carlos3939 View Post
    Originally Posted by swappyison View Post
    your keys are probably wrong if it does not decrypt.

    the keys are correct I assure you, it gets to give an image but it stays frozen in green, the audio is perfectly heard in the background.

    I'm guessing your key decrypts audio, or decrypts low quality video, and doesn't decrypt high quality video, so there's only sound without a video screen.
    Quote Quote  
  6. Banned
    Join Date
    Apr 2022
    Location
    Hong Kong
    Search Comp PM
    Positive. You are watching the Evil Dead Rise, and here are the keys that can decrypt the 2160p UHD contents:

    Edited: decode this base64 char to text, and you'll get the keys:

    Code:
    LS1rZXkgMDEwMDdkZTJkMGQzODAzMWQzZThmNDYzMmI1MWE5OGU6OGNmZTI1ZDVkNGUzNDY2ZWUwMGMwNjI3NjU0MWYzMDYKLS1rZXkgMDEwNWFmNGI3MDA2ZDQwYWE0YTI3ZTExZjAxMWM1ZmQ6NDg3MjcxODE4NmJjNmM3ODA1NTcxZjhhYjgwZTFiMjUKLS1rZXkgMDEwMTAzNjNhYzMzZjcxY2MyZDE0ZGRhMTY3NGU3NjM6ZDMwM2U3NTU2MGZjZjY5N2IzNmJjY2I0ZGU5ZDRiNjIKLS1rZXkgMDEwMzU2YmNiY2IzYzM0NWQ5NjlmZDA1NWE4ZmMyZDY6MWFjYzE4ZWFlNjk5YzRiZGU4ZmQ3YTc1YTVmNjE5YWE=
    Last edited by CrymanChen; 2nd Sep 2023 at 05:02.
    Quote Quote  
  7. Banned
    Join Date
    Apr 2022
    Location
    Hong Kong
    Search Comp PM
    @piaohua is right.

    Based on the response of the license server, there are in total 4 sets of keys as shown above in my previous post. Let's call them 0100, 0105, 0101 and 0103 (The first four digits of the Key ID.)
    As for the keys 0100 and 0101, their HDCP required protection is "HDCP_NONE", while the two remaining keys, 0105 and 0103, their required protection, separately, are "HDCP_V1" and "HDCP_V2_2".

    And among the information you listed, only the first and the third are usable, while the rest of them are unusable 'cause the key (k) is full of A (00). So maybe the keys you got can not decrypt the high-resolution video.
    Quote Quote  
  8. Banned
    Join Date
    Apr 2022
    Location
    Hong Kong
    Search Comp PM
    So in your circumstance, you should make some changes on the "#KODIPROP:inputstream.adaptive.license_key" part.
    1. change
    Code:
    {"kty":"oct","kid":"AQWvS3AG1Aqkon4R8BHF/Q","k":"AAAAAAAAAAAAAAAAAAAAAA"}
    to
    Code:
    {"kty":"oct","kid":"AQWvS3AG1Aqkon4R8BHF/Q","k":"SHJxgYa8bHgFVx+KuA4bJQ"}
    2. change
    Code:
    {"kty":"oct","kid":"AQNWvLyzw0XZaf0FWo/C1g","k":"AAAAAAAAAAAAAAAAAAAAAA"}
    to
    Code:
    {"kty":"oct","kid":"AQNWvLyzw0XZaf0FWo/C1g","k":"GswY6uaZxL3o/Xp1pfYZqg"}
    And maybe you can try deleting the
    Code:
    "type":"temporary"
    'cause now we have already got the key.
    Quote Quote  
  9. Originally Posted by CrymanChen View Post
    So in your circumstance, you should make some changes on the "#KODIPROP:inputstream.adaptive.license_key" part.
    1. change
    Code:
    {"kty":"oct","kid":"AQWvS3AG1Aqkon4R8BHF/Q","k":"AAAAAAAAAAAAAAAAAAAAAA"}
    to
    Code:
    {"kty":"oct","kid":"AQWvS3AG1Aqkon4R8BHF/Q","k":"SHJxgYa8bHgFVx+KuA4bJQ"}
    2. change
    Code:
    {"kty":"oct","kid":"AQNWvLyzw0XZaf0FWo/C1g","k":"AAAAAAAAAAAAAAAAAAAAAA"}
    to
    Code:
    {"kty":"oct","kid":"AQNWvLyzw0XZaf0FWo/C1g","k":"GswY6uaZxL3o/Xp1pfYZqg"}
    And maybe you can try deleting the
    Code:
    "type":"temporary"
    'cause now we have already got the key.

    nothing friend, I can't do it, I have mounted the m3u, with the new keys as you say, and I am not able, I am doing something wrong, would it be possible for you to try it please? thank you.
    Quote Quote  
  10. Originally Posted by CrymanChen View Post
    Positive. You are watching the Evil Dead Rise, and here are the keys that can decrypt the 2160p UHD contents:

    Edited: decode this base64 char to text, and you'll get the keys:

    Code:
    LS1rZXkgMDEwMDdkZTJkMGQzODAzMWQzZThmNDYzMmI1MWE5OGU6OGNmZTI1ZDVkNGUzNDY2ZWUwMGMwNjI3NjU0MWYzMDYKLS1rZXkgMDEwNWFmNGI3MDA2ZDQwYWE0YTI3ZTExZjAxMWM1ZmQ6NDg3MjcxODE4NmJjNmM3ODA1NTcxZjhhYjgwZTFiMjUKLS1rZXkgMDEwMTAzNjNhYzMzZjcxY2MyZDE0ZGRhMTY3NGU3NjM6ZDMwM2U3NTU2MGZjZjY5N2IzNmJjY2I0ZGU5ZDRiNjIKLS1rZXkgMDEwMzU2YmNiY2IzYzM0NWQ5NjlmZDA1NWE4ZmMyZDY6MWFjYzE4ZWFlNjk5YzRiZGU4ZmQ3YTc1YTVmNjE5YWE=

    Evidently friend, it was mounted at the end, the keys are clear and it works correctly thanks for your help.
    Quote Quote  



Similar Threads

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