Closed Thread
Results 1,771 to 1,800 of 1969
-
I did the same,
but getting errors.
[Attachment 63317 - Click to enlarge]
-
from your link
first from mpd get pssh from KID value
lic URLCode:Please input KID in hex string: be08ccad-74b9-4346-bf61-0a9052a49693 PSSH AAAAMnBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAABISEL4IzK10uUNGv2EKkFKklpM=
search for secure url it look like thisCode:https://spapi.zee5.com/widevine/getLicense
get those datas from payloadCode:https://spapi.zee5.com/singlePlayback/getDetails/secure?......
i use windows so i save both datas in data.json file where i am runing cmdCode:Authorization: "bearer eyJhbGciO........." x-access-token: "eyJ0eX......"
file look like
replace secure url and run cmdCode:{"x-access-token":"eyJ0eXAi...","Authorization":"bearer eyJhbGc...."}
from the generated data get header.pyCode:curl -X POST -H "content-type: application/json" "SECURE_URL" -d @data.json
edit headers.pyCode:nl = 'nl': 'acb7f3c.....' customdata= 'sdrm': 'eyJ2IjoiW....'
now u get the keys from above pssh and lic url using wksCode:headers = { "nl": "XXXXX", "customdata": "XXXXXXXX" }
NOTE: after json request token expires in 30 secs so u have to do all the process in 30 secs to get the keys else u will get error mean after run curl cmd
good luck
credits:ElCapLast edited by demon; 12th Feb 2022 at 22:16.
-
Thanks for ur time.
But I am not getting key.
[Attachment 63331 - Click to enlarge]
-
yeh its same only but header h1 and sdrm token expires in 30 sec after generates from curl u have to be fast
to get keys
i use this code to get header valuesCode:import requests import re url = input("url : ") payload = {"x-access-token":"XXXXXXXX","Authorization":"XXXXXXX"} r = requests.post(url, json=payload) value = r.json() print(value)
if u know python make a custom script to get headers from this values so that u can make it faster with in 30 sec before token expire
Similar Threads
-
Strip Playready and Widevine DRM
By freaknik in forum Video Streaming DownloadingReplies: 5Last Post: 22nd Jun 2024, 15:20 -
Decoding manifest.mpd (Widevine)
By WaitForIt in forum Video Streaming DownloadingReplies: 6Last Post: 7th Jun 2021, 13:44 -
getting widevine CEK key
By netbreak in forum Video Streaming DownloadingReplies: 1Last Post: 19th Feb 2018, 12:03 -
Looking for anyone with Google Widevine knowledge.
By cookeri6 in forum Newbie / General discussionsReplies: 1Last Post: 15th May 2017, 13:33 -
Looking for anyone with Google Widevine knowledge.
By cookeri6 in forum Video Streaming DownloadingReplies: 0Last Post: 15th May 2017, 12:45




