mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[comedycentral] Fix youtube-dl :thedailyshow
We'll let the generic IE follow the redirect and call back to us with the episode URL
This commit is contained in:
parent
8a64969404
commit
c596ce91cd
@ -151,12 +151,7 @@ def _real_extract(self, url):
|
|||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
|
|
||||||
if mobj.group('shortname'):
|
if mobj.group('shortname'):
|
||||||
if mobj.group('shortname') in ('tds', 'thedailyshow'):
|
return self.url_result('http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes')
|
||||||
url = 'http://thedailyshow.cc.com/full-episodes/'
|
|
||||||
else:
|
|
||||||
url = 'http://thecolbertreport.cc.com/full-episodes/'
|
|
||||||
mobj = re.match(self._VALID_URL, url, re.VERBOSE)
|
|
||||||
assert mobj is not None
|
|
||||||
|
|
||||||
if mobj.group('clip'):
|
if mobj.group('clip'):
|
||||||
if mobj.group('videotitle'):
|
if mobj.group('videotitle'):
|
||||||
|
Loading…
Reference in New Issue
Block a user