1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-13 07:27:15 +08:00

[cda] Move code to _real_extract

This commit is contained in:
Alex Seiler 2017-02-26 14:59:18 +01:00
parent b032095695
commit 0be5a6a894

View File

@ -48,12 +48,6 @@ class CDAIE(InfoExtractor):
'only_matching': True, 'only_matching': True,
}] }]
def _decode_url(self, url):
decoded_url = codecs.decode(url, 'rot_13')
if decoded_url.endswith('adc.mp4'):
decoded_url = decoded_url.replace('adc.mp4', '.mp4')
return decoded_url
def _real_extract(self, url): def _real_extract(self, url):
video_id = self._match_id(url) video_id = self._match_id(url)
self._set_cookie('cda.pl', 'cda.player', 'html5') self._set_cookie('cda.pl', 'cda.player', 'html5')
@ -104,7 +98,9 @@ class CDAIE(InfoExtractor):
self.report_warning('Unable to extract %s version information' % version) self.report_warning('Unable to extract %s version information' % version)
return return
if video['file'].startswith('uggc'): if video['file'].startswith('uggc'):
video['file'] = self._decode_url(video['file']) video['file'] = codecs.decode(video['file'], 'rot_13')
if video['file'].endswith('adc.mp4'):
video['file'] = video['file'].replace('adc.mp4', '.mp4')
f = { f = {
'url': video['file'], 'url': video['file'],
} }