how to generate pssh for this kid?
Code:<KID>4f+vhItifjG16xfWNfOu1A==</KID>
Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays!
+ Reply to Thread
Results 1 to 4 of 4
Thread
-
Find the script for converting KID to PSSH. There should be available in this forum.
And this is the KID: e1ffaf848b627e31b5eb17d635f3aed4 -
Code:
import base64 def get_pssh(keyId): array_of_bytes = bytearray( b'\x00\x00\x002pssh\x00\x00\x00\x00') array_of_bytes.extend(bytes.fromhex("edef8ba979d64acea3c827dcd51d21ed")) array_of_bytes.extend(b'\x00\x00\x00\x12\x12\x10') array_of_bytes.extend(bytes.fromhex( keyId.replace("-", ""))) return base64.b64encode(bytes.fromhex(array_of_bytes.hex())) kid = input("Please input KID in hex string from C4: ") kid = kid.replace(' ', '') kid = kid.replace('-', '') assert len(kid) == 32 and not isinstance(kid, bytes), "wrong KID length" print("PSSH {}".format(get_pssh(kid).decode('utf-8')))
Similar Threads
-
help generate pssh from this mpd
By tere1579 in forum Video Streaming DownloadingReplies: 6Last Post: 12th Oct 2022, 21:16 -
Generate pssh
By tere1579 in forum Video Streaming DownloadingReplies: 2Last Post: 2nd Oct 2022, 14:08 -
Exracting PSSH from a MPD doesn't inc KID .
By chomako in forum Video Streaming DownloadingReplies: 3Last Post: 30th Jun 2022, 12:45 -
PSSH 3 Keys
By ahmedani in forum Video Streaming DownloadingReplies: 4Last Post: 6th May 2022, 12:41 -
PSSH Assistance
By Civilian in forum Video Streaming DownloadingReplies: 21Last Post: 9th Jan 2022, 14:21