]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/comedycentral.py
a54ce3ee7c44727a9e56b1ab8359bd099b48bb35
3 from .common
import InfoExtractor
4 from .mtv
import MTVServicesInfoExtractor
14 class ComedyCentralIE(MTVServicesInfoExtractor
):
15 _VALID_URL
= r
'https?://(?:www.)?comedycentral.com/(video-clips|episodes|cc-studios)/(?P<title>.*)'
16 _FEED_URL
= u
'http://comedycentral.com/feeds/mrss/'
19 u
'url': u
'http://www.comedycentral.com/video-clips/kllhuv/stand-up-greg-fitzsimmons--uncensored---too-good-of-a-mother',
20 u
'md5': u
'4167875aae411f903b751a21f357f1ee',
22 u
'id': u
'cef0cbb3-e776-4bc9-b62e-8016deccb354',
24 u
'title': u
'Uncensored - Greg Fitzsimmons - Too Good of a Mother',
25 u
'description': u
'After a certain point, breastfeeding becomes c**kblocking.',
29 def _real_extract(self
, url
):
30 mobj
= re
.match(self
._VALID
_URL
, url
)
31 title
= mobj
.group('title')
32 webpage
= self
._download
_webpage
(url
, title
)
33 mgid
= self
._search
_regex
(r
'data-mgid="(?P<mgid>mgid:.*?)"',
35 return self
._get
_videos
_info
(mgid
)
38 class ComedyCentralShowsIE(InfoExtractor
):
39 IE_DESC
= u
'The Daily Show / Colbert Report'
40 # urls can be abbreviations like :thedailyshow or :colbert
41 # urls for episodes like:
42 # or urls for clips like: http://www.thedailyshow.com/watch/mon-december-10-2012/any-given-gun-day
43 # or: http://www.colbertnation.com/the-colbert-report-videos/421667/november-29-2012/moon-shattering-news
44 # or: http://www.colbertnation.com/the-colbert-report-collections/422008/festival-of-lights/79524
45 _VALID_URL
= r
"""^(:(?P<shortname>tds|thedailyshow|cr|colbert|colbertnation|colbertreport)
47 (?P<showname>thedailyshow|colbertnation)\.com/
48 (full-episodes/(?P<episode>.*)|
50 (the-colbert-report-(videos|collections)/(?P<clipID>[0-9]+)/[^/]*/(?P<cntitle>.*?))
51 |(watch/(?P<date>[^/]*)/(?P<tdstitle>.*)))|
53 extended-interviews/(?P<interID>[0-9]+)/playlist_tds_extended_(?P<interview_title>.*?)/.*?)))
56 u
'url': u
'http://www.thedailyshow.com/watch/thu-december-13-2012/kristen-stewart',
57 u
'file': u
'422212.mp4',
58 u
'md5': u
'4e2f5cb088a83cd8cdb7756132f9739d',
60 u
"upload_date": u
"20121214",
61 u
"description": u
"Kristen Stewart",
62 u
"uploader": u
"thedailyshow",
63 u
"title": u
"thedailyshow-kristen-stewart part 1"
67 _available_formats
= ['3500', '2200', '1700', '1200', '750', '400']
87 def suitable(cls
, url
):
88 """Receives a URL and returns True if suitable for this IE."""
89 return re
.match(cls
._VALID
_URL
, url
, re
.VERBOSE
) is not None
92 def _transform_rtmp_url(rtmp_video_url
):
93 m
= re
.match(r
'^rtmpe?://.*?/(?P<finalid>gsp.comedystor/.*)$', rtmp_video_url
)
95 raise ExtractorError(u
'Cannot transform RTMP url')
96 base
= 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=1+_pxI0=Ripod-h264+_pxL0=undefined+_pxM0=+_pxK=18639+_pxE=mp4/44620/mtvnorigin/'
97 return base
+ m
.group('finalid')
99 def _real_extract(self
, url
):
100 mobj
= re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
102 raise ExtractorError(u
'Invalid URL: %s' % url
)
104 if mobj
.group('shortname'):
105 if mobj
.group('shortname') in ('tds', 'thedailyshow'):
106 url
= u
'http://www.thedailyshow.com/full-episodes/'
108 url
= u
'http://www.colbertnation.com/full-episodes/'
109 mobj
= re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
110 assert mobj
is not None
112 if mobj
.group('clip'):
113 if mobj
.group('showname') == 'thedailyshow':
114 epTitle
= mobj
.group('tdstitle')
116 epTitle
= mobj
.group('cntitle')
118 elif mobj
.group('interview'):
119 epTitle
= mobj
.group('interview_title')
122 dlNewest
= not mobj
.group('episode')
124 epTitle
= mobj
.group('showname')
126 epTitle
= mobj
.group('episode')
128 self
.report_extraction(epTitle
)
129 webpage
,htmlHandle
= self
._download
_webpage
_handle
(url
, epTitle
)
131 url
= htmlHandle
.geturl()
132 mobj
= re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
134 raise ExtractorError(u
'Invalid redirected URL: ' + url
)
135 if mobj
.group('episode') == '':
136 raise ExtractorError(u
'Redirected URL is still not specific: ' + url
)
137 epTitle
= mobj
.group('episode')
139 mMovieParams
= re
.findall('(?:<param name="movie" value="|var url = ")(http://media.mtvnservices.com/([^"]*(?:episode|video).*?:.*?))"', webpage
)
141 if len(mMovieParams
) == 0:
142 # The Colbert Report embeds the information in a without
143 # a URL prefix; so extract the alternate reference
144 # and then add the URL prefix manually.
146 altMovieParams
= re
.findall('data-mgid="([^"]*(?:episode|video).*?:.*?)"', webpage
)
147 if len(altMovieParams
) == 0:
148 raise ExtractorError(u
'unable to find Flash URL in webpage ' + url
)
150 mMovieParams
= [("http://media.mtvnservices.com/" + altMovieParams
[0], altMovieParams
[0])]
152 uri
= mMovieParams
[0][1]
153 indexUrl
= 'http://shadow.comedycentral.com/feeds/video_player/mrss/?' + compat_urllib_parse
.urlencode({'uri': uri
})
154 idoc
= self
._download
_xml
(indexUrl
, epTitle
,
155 u
'Downloading show index',
156 u
'unable to download episode index')
160 itemEls
= idoc
.findall('.//item')
161 for partNum
,itemEl
in enumerate(itemEls
):
162 mediaId
= itemEl
.findall('./guid')[0].text
163 shortMediaId
= mediaId
.split(':')[-1]
164 showId
= mediaId
.split(':')[-2].replace('.com', '')
165 officialTitle
= itemEl
.findall('./title')[0].text
166 officialDate
= unified_strdate(itemEl
.findall('./pubDate')[0].text
)
168 configUrl
= ('http://www.comedycentral.com/global/feeds/entertainment/media/mediaGenEntertainment.jhtml?' +
169 compat_urllib_parse
.urlencode({'uri': mediaId
}))
170 cdoc
= self
._download
_xml
(configUrl
, epTitle
,
171 u
'Downloading configuration for %s' % shortMediaId
)
174 for rendition
in cdoc
.findall('.//rendition'):
175 finfo
= (rendition
.attrib
['bitrate'], rendition
.findall('./src')[0].text
)
179 self
._downloader
.report_error(u
'unable to download ' + mediaId
+ ': No videos found')
183 for format
, rtmp_video_url
in turls
:
184 w
, h
= self
._video
_dimensions
.get(format
, (None, None))
186 'url': self
._transform
_rtmp
_url
(rtmp_video_url
),
187 'ext': self
._video
_extensions
.get(format
, 'mp4'),
193 effTitle
= showId
+ u
'-' + epTitle
+ u
' part ' + compat_str(partNum
+1)
198 'upload_date': officialDate
,
201 'description': compat_str(officialTitle
),