hello , everyone. does anyone know how to download from youku.tv
i am having trouble with youku since Last Chrome CDM revoked.
https://www.youku.tv/v/v_show/id_XNjM5Nzc3MjI0OA==.html?s=becaa797a511432ea731&scm=201...97a511432ea731
it would be greatful if anyone want to help me.
+ Reply to Thread
Results 1 to 4 of 4
-
-
720p key
Code:03f45b0347daf7212c80e196e8382db8:2cb1f2f0b517c1a99bab7338904c2b3c
--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*] -
Last edited by lukhitt1992; 23rd May 2024 at 10:07.
-
You have to use a custom python script :
Code:from pywidevine.cdm import Cdm from pywidevine.device import Device from pywidevine.pssh import PSSH import requests import base64 pssh = input("PSSH? ") pssh = PSSH(pssh) lic_url = 'https://drm-license.youku.tv/ups/drm.json' device = Device.load("YOURDEVICE.wvd") cdm = Cdm.from_device(device) session_id = cdm.open() challenge = cdm.get_license_challenge(session_id, pssh) challenge = { 'drmType': 'widevine', 'token': 'iDXgRxGRGK-52KbtmNtsqYOdue59vSFN160CrGp77hYXFDRrolNhoy1osovusutU5NxbUnNAtXVAQGXBlkkKdUsI6H43xFXz', 'vid': 'XNjM5Nzc3MjI0OA==', 'psid': 'f98363ee809709dd2112d76c8836551341346', 'ccode': '0597', 'licenseRequest': base64.b64encode(challenge).decode() } licence = requests.post(lic_url, data=challenge) cdm.parse_license(session_id, licence.json()['data']) for key in cdm.get_keys(session_id): if key.type=='CONTENT': print(f"\n--key {key.kid.hex}:{key.key.hex()}") cdm.close(session_id)
Your file : https://buzzheavier.com/f/GOC0ZG-0YAA=
Similar Threads
-
Download subtitles from youku
By TetianaBFM in forum Video Streaming DownloadingReplies: 3Last Post: 14th Jan 2024, 05:42 -
help with youku.tv
By andertjf in forum Video Streaming DownloadingReplies: 24Last Post: 25th Jun 2023, 14:47 -
Download full-videos from YOUKU.COM
By minegroasprilla in forum Video Streaming DownloadingReplies: 22Last Post: 25th May 2023, 20:47 -
Help me with youku.com videos
By luvmichelle in forum Video Streaming DownloadingReplies: 8Last Post: 19th Sep 2022, 06:14 -
not able to download video from youku
By luvmichelle in forum Video Streaming DownloadingReplies: 3Last Post: 8th Jun 2022, 02:34