hello, i get this info from VideoDownload Helper (ext for chrome)
from this urlCode:url: https://b42564.2.cdn.telefonica.com/_42564/_-_d3v6nuLm9K-a6ta4oia6CTC1FfpExGx1pv-SUFGdcugM-bJpbVeODB2NWNz3lKNZ_-_/live/disk1/DiscoveryTurbo/_shared_047be05ff7246ecca89a94b4e2da1cb1/DiscoveryTurbo-avc1_500000=5-scale=30000-6919718003801.mp4 urlFilename: DiscoveryTurbo-avc1_500000=5-scale=30000-6919718003801
, i can't fin how to get the m3u8, the url is extra-large and im complete ignorant how to do.Code:https://iterltaniciate.blog/embed/mplay/discovery_turbo-pe.html
+ Reply to Thread
Results 1 to 10 of 10
-
-
The browser does not apply to the license server. Apparently the 'key' is recorded in 'JS'.
-
i get this from cheking with opera console
blob:https://iterltaniciate.blog/7df8731a-427d-4667-ad4e-9e34e88430b1 -
mpd not m3u8
download
Code:yt-dlp --allow-u https://b42564.2.cdn.telefonica.com/_42564/_-_d3v6nuLm9K-a6ta4oia6CTC1FfpExGx1pv-SUFGdcugM-bJpbVeODB2NWNz3lKNZ_-_/live/disk1/DiscoveryTurbo/DISCOVERYTURBO_CN_DASH_HD/DiscoveryTurbo.mpd
Code:1d33f61c1654494e9cf6aa28217f0949:f22ef6012573a0a2db42854bd79495e3
-
-
with emelogger installed you should see this in the console tab
[Attachment 64518 - Click to enlarge]
base64 decode this value to text
Code:eyJrZXlzIjpbeyJrdHkiOiJvY3QiLCJraWQiOiJIVFAySEJaVVNVNmM5cW9vSVg4SlNRIiwiayI6IjhpNzJBU1Z6b0tMYlFvVkwxNVNWNHcifV19
Code:{"keys":[{"kty":"oct","kid":"HTP2HBZUSU6c9qooIX8JSQ","k":"8i72ASVzoKLbQoVL15SV4w"}]}
convert the k(ey) from base64 to hex -
Made a script based on the above posts to automate things..
Code:import base64 import json clearkey_b64 = input('\nEnter the clearkey in base64 format : ') b64_to_text = base64.b64decode(clearkey_b64).decode() jsn = json.loads(b64_to_text) kid_str = jsn['keys'][0]['kid'] key_str = jsn['keys'][0]['k'] kid_str_sanitized = kid_str.replace('-','+').replace('_','/') key_str_sanitized = key_str.replace('-','+').replace('_','/') kid = base64.b64decode(kid_str_sanitized + '==').hex() key = base64.b64decode(key_str_sanitized + '==').hex() print(f'--key {kid}:{key}')
Similar Threads
-
How to extract the m3u8 or iptv link from this website ?
By icebreaker101010 in forum Video Streaming DownloadingReplies: 4Last Post: 15th Apr 2022, 23:42 -
How to extract and use an m3u8 URL to download from a 24/7 stream?
By BosseB in forum Video Streaming DownloadingReplies: 28Last Post: 1st Feb 2022, 07:57 -
How to properly capture/extract video from a DVD-RAM disk?
By Cyber Akuma in forum Video ConversionReplies: 5Last Post: 10th Mar 2021, 10:09 -
Extract WebVTT subtitles from m3u8 playlist.
By averageuser12 in forum Video Streaming DownloadingReplies: 3Last Post: 13th Oct 2020, 17:28 -
Help extract NBA video stream from m3u8
By Jisspecial in forum Video Streaming DownloadingReplies: 1Last Post: 28th Jul 2017, 14:53