mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 00:47:08 -05:00 
			
		
		
		
	ComedyCentralIE: support the extended interviews urls (fixes #1079)
This commit is contained in:
		@@ -24,7 +24,9 @@ class ComedyCentralIE(InfoExtractor):
 | 
			
		||||
                         (full-episodes/(?P<episode>.*)|
 | 
			
		||||
                          (?P<clip>
 | 
			
		||||
                              (the-colbert-report-(videos|collections)/(?P<clipID>[0-9]+)/[^/]*/(?P<cntitle>.*?))
 | 
			
		||||
                              |(watch/(?P<date>[^/]*)/(?P<tdstitle>.*)))))
 | 
			
		||||
                              |(watch/(?P<date>[^/]*)/(?P<tdstitle>.*)))|
 | 
			
		||||
                          (?P<interview>
 | 
			
		||||
                              extended-interviews/(?P<interID>[0-9]+)/playlist_tds_extended_(?P<interview_title>.*?)/.*?)))
 | 
			
		||||
                     $"""
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        u'url': u'http://www.thedailyshow.com/watch/thu-december-13-2012/kristen-stewart',
 | 
			
		||||
@@ -87,6 +89,9 @@ class ComedyCentralIE(InfoExtractor):
 | 
			
		||||
            else:
 | 
			
		||||
                epTitle = mobj.group('cntitle')
 | 
			
		||||
            dlNewest = False
 | 
			
		||||
        elif mobj.group('interview'):
 | 
			
		||||
            epTitle = mobj.group('interview_title')
 | 
			
		||||
            dlNewest = False
 | 
			
		||||
        else:
 | 
			
		||||
            dlNewest = not mobj.group('episode')
 | 
			
		||||
            if dlNewest:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user