mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 16:44:32 +01:00
[cda] Improve extraction and keep old method for legacy
It is unknown whether CDA keeps using the old ROT13 decode method, as the original player.js code still contains the old method. Signed-off-by: David Sn <divad.nnamtdeis@gmail.com>
This commit is contained in:
parent
3574d22de9
commit
fd76f28c6c
@ -133,10 +133,6 @@ class CDAIE(InfoExtractor):
|
||||
|
||||
return "".join(b)
|
||||
|
||||
def decode(file):
|
||||
decoded = codecs.decode(codecs.decode(file, "rot_13"), "rot_13")
|
||||
return "https://" + decrypt_file(compat_urllib_parse_unquote(decoded)) + ".mp4"
|
||||
|
||||
def extract_format(page, version):
|
||||
json_str = self._html_search_regex(
|
||||
r'player_data=(\\?["\'])(?P<player_data>.+?)\1', page,
|
||||
@ -151,7 +147,12 @@ class CDAIE(InfoExtractor):
|
||||
if not video or 'file' not in video:
|
||||
self.report_warning('Unable to extract %s version information' % version)
|
||||
return
|
||||
video['file'] = decode(video['file'])
|
||||
if "http" not in video['file'] and ".mp4" not in video['file'] and "uggcf://" not in video['file']:
|
||||
video['file'] = decrypt_file(compat_urllib_parse_unquote(video['file']))
|
||||
if not video['file'].startswith("http"):
|
||||
video['file'] = "https://" + video['file'] + ".mp4"
|
||||
elif video['file'].startswith('uggc'):
|
||||
video['file'] = codecs.decode(video['file'], 'rot_13')
|
||||
if video['file'].endswith('adc.mp4'):
|
||||
video['file'] = video['file'].replace('adc.mp4', '.mp4')
|
||||
f = {
|
||||
|
Loading…
Reference in New Issue
Block a user