We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some websites (for instance france.tv) seem to use a new widevine proxy ( https://widevine-proxy.drm.technology/proxy ) with a new format.
The json is {"token":"yyyy", "drm_info":[xxxx]} where xxx is the list of bytes of the license request.
yyy looks like this: |||<160bits hex>
This adds support for it:
responses.append(requests.post(url=lic_url, headers=headers.headers, params=params, json={ "token": headers.token, "drm_info": list(raw_request) }))
The text was updated successfully, but these errors were encountered:
Interesting, thanks for your contribution seems like an amazonaws-based proxy
Sorry, something went wrong.
No branches or pull requests
Some websites (for instance france.tv) seem to use a new widevine proxy ( https://widevine-proxy.drm.technology/proxy ) with a new format.
The json is {"token":"yyyy", "drm_info":[xxxx]} where xxx is the list of bytes of the license request.
yyy looks like this: |||<160bits hex>
This adds support for it:
The text was updated successfully, but these errors were encountered: