]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/comedycentral.py
2 import xml
.etree
.ElementTree
4 from .common
import InfoExtractor
14 class ComedyCentralIE(InfoExtractor
):
15 IE_DESC
= u
'The Daily Show / Colbert Report'
16 # urls can be abbreviations like :thedailyshow or :colbert
17 # urls for episodes like:
18 # or urls for clips like: http://www.thedailyshow.com/watch/mon-december-10-2012/any-given-gun-day
19 # or: http://www.colbertnation.com/the-colbert-report-videos/421667/november-29-2012/moon-shattering-news
20 # or: http://www.colbertnation.com/the-colbert-report-collections/422008/festival-of-lights/79524
21 _VALID_URL
= r
"""^(:(?P<shortname>tds|thedailyshow|cr|colbert|colbertnation|colbertreport)
23 (?P<showname>thedailyshow|colbertnation)\.com/
24 (full-episodes/(?P<episode>.*)|
26 (the-colbert-report-(videos|collections)/(?P<clipID>[0-9]+)/[^/]*/(?P<cntitle>.*?))
27 |(watch/(?P<date>[^/]*)/(?P<tdstitle>.*)))|
29 extended-interviews/(?P<interID>[0-9]+)/playlist_tds_extended_(?P<interview_title>.*?)/.*?)))
32 u
'url': u
'http://www.thedailyshow.com/watch/thu-december-13-2012/kristen-stewart',
33 u
'file': u
'422212.mp4',
34 u
'md5': u
'4e2f5cb088a83cd8cdb7756132f9739d',
36 u
"upload_date": u
"20121214",
37 u
"description": u
"Kristen Stewart",
38 u
"uploader": u
"thedailyshow",
39 u
"title": u
"thedailyshow-kristen-stewart part 1"
43 _available_formats
= ['3500', '2200', '1700', '1200', '750', '400']
63 def suitable(cls
, url
):
64 """Receives a URL and returns True if suitable for this IE."""
65 return re
.match(cls
._VALID
_URL
, url
, re
.VERBOSE
) is not None
68 def _transform_rtmp_url(rtmp_video_url
):
69 m
= re
.match(r
'^rtmpe?://.*?/(?P<finalid>gsp.comedystor/.*)$', rtmp_video_url
)
71 raise ExtractorError(u
'Cannot transform RTMP url')
72 base
= 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=1+_pxI0=Ripod-h264+_pxL0=undefined+_pxM0=+_pxK=18639+_pxE=mp4/44620/mtvnorigin/'
73 return base
+ m
.group('finalid')
75 def _real_extract(self
, url
):
76 mobj
= re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
78 raise ExtractorError(u
'Invalid URL: %s' % url
)
80 if mobj
.group('shortname'):
81 if mobj
.group('shortname') in ('tds', 'thedailyshow'):
82 url
= u
'http://www.thedailyshow.com/full-episodes/'
84 url
= u
'http://www.colbertnation.com/full-episodes/'
85 mobj
= re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
86 assert mobj
is not None
88 if mobj
.group('clip'):
89 if mobj
.group('showname') == 'thedailyshow':
90 epTitle
= mobj
.group('tdstitle')
92 epTitle
= mobj
.group('cntitle')
94 elif mobj
.group('interview'):
95 epTitle
= mobj
.group('interview_title')
98 dlNewest
= not mobj
.group('episode')
100 epTitle
= mobj
.group('showname')
102 epTitle
= mobj
.group('episode')
104 self
.report_extraction(epTitle
)
105 webpage
,htmlHandle
= self
._download
_webpage
_handle
(url
, epTitle
)
107 url
= htmlHandle
.geturl()
108 mobj
= re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
110 raise ExtractorError(u
'Invalid redirected URL: ' + url
)
111 if mobj
.group('episode') == '':
112 raise ExtractorError(u
'Redirected URL is still not specific: ' + url
)
113 epTitle
= mobj
.group('episode')
115 mMovieParams
= re
.findall('(?:<param name="movie" value="|var url = ")(http://media.mtvnservices.com/([^"]*(?:episode|video).*?:.*?))"', webpage
)
117 if len(mMovieParams
) == 0:
118 # The Colbert Report embeds the information in a without
119 # a URL prefix; so extract the alternate reference
120 # and then add the URL prefix manually.
122 altMovieParams
= re
.findall('data-mgid="([^"]*(?:episode|video).*?:.*?)"', webpage
)
123 if len(altMovieParams
) == 0:
124 raise ExtractorError(u
'unable to find Flash URL in webpage ' + url
)
126 mMovieParams
= [("http://media.mtvnservices.com/" + altMovieParams
[0], altMovieParams
[0])]
128 uri
= mMovieParams
[0][1]
129 indexUrl
= 'http://shadow.comedycentral.com/feeds/video_player/mrss/?' + compat_urllib_parse
.urlencode({'uri': uri
})
130 indexXml
= self
._download
_webpage
(indexUrl
, epTitle
,
131 u
'Downloading show index',
132 u
'unable to download episode index')
136 idoc
= xml
.etree
.ElementTree
.fromstring(indexXml
)
137 itemEls
= idoc
.findall('.//item')
138 for partNum
,itemEl
in enumerate(itemEls
):
139 mediaId
= itemEl
.findall('./guid')[0].text
140 shortMediaId
= mediaId
.split(':')[-1]
141 showId
= mediaId
.split(':')[-2].replace('.com', '')
142 officialTitle
= itemEl
.findall('./title')[0].text
143 officialDate
= unified_strdate(itemEl
.findall('./pubDate')[0].text
)
145 configUrl
= ('http://www.comedycentral.com/global/feeds/entertainment/media/mediaGenEntertainment.jhtml?' +
146 compat_urllib_parse
.urlencode({'uri': mediaId
}))
147 configXml
= self
._download
_webpage
(configUrl
, epTitle
,
148 u
'Downloading configuration for %s' % shortMediaId
)
150 cdoc
= xml
.etree
.ElementTree
.fromstring(configXml
)
152 for rendition
in cdoc
.findall('.//rendition'):
153 finfo
= (rendition
.attrib
['bitrate'], rendition
.findall('./src')[0].text
)
157 self
._downloader
.report_error(u
'unable to download ' + mediaId
+ ': No videos found')
161 for format
, rtmp_video_url
in turls
:
162 w
, h
= self
._video
_dimensions
.get(format
, (None, None))
164 'url': self
._transform
_rtmp
_url
(rtmp_video_url
),
165 'ext': self
._video
_extensions
.get(format
, 'mp4'),
171 effTitle
= showId
+ u
'-' + epTitle
+ u
' part ' + compat_str(partNum
+1)
176 'upload_date': officialDate
,
179 'description': compat_str(officialTitle
),
182 # TODO: Remove when #980 has been merged
183 info
.update(info
['formats'][-1])