5 from .common
import InfoExtractor
6 from ..compat
import compat_parse_qs
, compat_urllib_parse_unquote
10 get_element_by_attribute
,
16 class MetacafeIE(InfoExtractor
):
17 _VALID_URL
= r
'https?://(?:www\.)?metacafe\.com/watch/(?P<id>[^/]+)/(?P<display_id>[^/?#]+)'
18 _DISCLAIMER
= 'http://www.metacafe.com/family_filter/'
19 _FILTER_POST
= 'http://www.metacafe.com/f/index.php?inputType=filter&controllerGroup=user'
24 'add_ie': ['Youtube'],
25 'url': 'http://metacafe.com/watch/yt-_aUehQsCQtM/the_electric_company_short_i_pbs_kids_go/',
29 'upload_date': '20090102',
30 'title': 'The Electric Company | "Short I" | PBS KIDS GO!',
31 'description': 'md5:2439a8ef6d5a70e380c22f5ad323e5a8',
36 # Normal metacafe video
38 'url': 'http://www.metacafe.com/watch/11121940/news_stuff_you_wont_do_with_your_playstation_4/',
39 'md5': '6e0bca200eaad2552e6915ed6fd4d9ad',
43 'title': 'News: Stuff You Won\'t Do with Your PlayStation 4',
45 'description': 'Sony released a massive FAQ on the PlayStation Blog detailing the PS4\'s capabilities and limitations.',
47 'skip': 'Page is temporarily unavailable.',
49 # metacafe video with family filter
51 'url': 'http://www.metacafe.com/watch/2155630/adult_art_by_david_hart_156/',
52 'md5': 'b06082c5079bbdcde677a6291fbdf376',
56 'title': 'Adult Art By David Hart 156',
58 'description': 'md5:9afac8fc885252201ad14563694040fc',
61 'skip_download': True,
66 'url': 'http://www.metacafe.com/watch/an-dVVXnuY7Jh77J/the_andromeda_strain_1971_stop_the_bomb_part_3/',
68 'id': 'an-dVVXnuY7Jh77J',
70 'title': 'The Andromeda Strain (1971): Stop the Bomb Part 3',
71 'uploader': 'AnyClip',
72 'description': 'md5:cbef0460d31e3807f6feb4e7a5952e5b',
75 # age-restricted video
77 'url': 'http://www.metacafe.com/watch/5186653/bbc_internal_christmas_tape_79_uncensored_outtakes_etc/',
78 'md5': '98dde7c1a35d02178e8ab7560fe8bd09',
82 'title': 'BBC INTERNAL Christmas Tape \'79 - UNCENSORED Outtakes, Etc.',
83 'uploader': 'Dwayne Pipe',
84 'description': 'md5:950bf4c581e2c059911fa3ffbe377e4b',
90 'url': 'http://www.metacafe.com/watch/cb-8VD4r_Zws8VP/open_this_is_face_the_nation_february_9/',
94 'title': 'Open: This is Face the Nation, February 9',
95 'description': 'md5:8a9ceec26d1f7ed6eab610834cc1a476',
97 'uploader': 'CBSI-NEW',
98 'upload_date': '20140209',
99 'timestamp': 1391959800,
103 'skip_download': True,
106 # Movieclips.com video
108 'url': 'http://www.metacafe.com/watch/mv-Wy7ZU/my_week_with_marilyn_do_you_love_me/',
112 'title': 'My Week with Marilyn - Do You Love Me?',
113 'description': 'From the movie My Week with Marilyn - Colin (Eddie Redmayne) professes his love to Marilyn (Michelle Williams) and gets her to promise to return to set and finish the movie.',
114 'uploader': 'movie_trailers',
118 'skip_download': 'requires rtmpdump',
123 def report_disclaimer(self
):
124 self
.to_screen('Retrieving disclaimer')
126 def _real_extract(self
, url
):
127 # Extract id and simplified title from URL
128 video_id
, display_id
= self
._match
_valid
_url
(url
).groups()
130 # the video may come from an external site
131 m_external
= re
.match(r
'^(\w{2})-(.*)$', video_id
)
132 if m_external
is not None:
133 prefix
, ext_id
= m_external
.groups()
134 # Check if video comes from YouTube
136 return self
.url_result('http://www.youtube.com/watch?v=%s' % ext_id
, 'Youtube')
137 # CBS videos use theplatform.com
139 return self
.url_result('theplatform:%s' % ext_id
, 'ThePlatform')
142 # Disable family filter
143 'Cookie': 'user=%s; ' % urllib
.parse
.quote(json
.dumps({'ffilter': False}))
146 # AnyClip videos require the flashversion cookie so that we get the link
148 if video_id
.startswith('an-'):
149 headers
['Cookie'] += 'flashVersion=0; '
151 # Retrieve video webpage to extract further information
152 webpage
= self
._download
_webpage
(url
, video_id
, headers
=headers
)
154 error
= get_element_by_attribute(
155 'class', 'notfound-page-title', webpage
)
157 raise ExtractorError(error
, expected
=True)
159 video_title
= self
._html
_search
_meta
(
160 ['og:title', 'twitter:title'], webpage
, 'title', default
=None) or self
._search
_regex
(r
'<h1>(.*?)</h1>', webpage
, 'title')
162 # Extract URL, uploader and title from webpage
163 self
.report_extraction(video_id
)
165 mobj
= re
.search(r
'(?m)&(?:media|video)URL=([^&]+)', webpage
)
167 mediaURL
= compat_urllib_parse_unquote(mobj
.group(1))
168 video_ext
= determine_ext(mediaURL
)
170 # Extract gdaKey if available
171 mobj
= re
.search(r
'(?m)&gdaKey=(.*?)&', webpage
)
175 gdaKey
= mobj
.group(1)
176 video_url
= '%s?__gda__=%s' % (mediaURL
, gdaKey
)
177 if video_url
is None:
178 mobj
= re
.search(r
'<video src="([^"]+)"', webpage
)
180 video_url
= mobj
.group(1)
182 if video_url
is None:
183 flashvars
= self
._search
_regex
(
184 r
' name="flashvars" value="(.*?)"', webpage
, 'flashvars',
187 vardict
= compat_parse_qs(flashvars
)
188 if 'mediaData' not in vardict
:
189 raise ExtractorError('Unable to extract media URL')
191 r
'"mediaURL":"(?P<mediaURL>http.*?)",(.*?)"key":"(?P<key>.*?)"', vardict
['mediaData'][0])
193 raise ExtractorError('Unable to extract media URL')
194 mediaURL
= mobj
.group('mediaURL').replace('\\/', '/')
195 video_url
= '%s?__gda__=%s' % (mediaURL
, mobj
.group('key'))
196 video_ext
= determine_ext(video_url
)
197 if video_url
is None:
198 player_url
= self
._search
_regex
(
199 r
"swfobject\.embedSWF\('([^']+)'",
200 webpage
, 'config URL', default
=None)
202 config_url
= self
._search
_regex
(
203 r
'config=(.+)$', player_url
, 'config URL')
204 config_doc
= self
._download
_xml
(
205 config_url
, video_id
,
206 note
='Downloading video config')
207 smil_url
= config_doc
.find('.//properties').attrib
['smil_file']
208 smil_doc
= self
._download
_xml
(
210 note
='Downloading SMIL document')
211 base_url
= smil_doc
.find('./head/meta').attrib
['base']
213 for vn
in smil_doc
.findall('.//video'):
214 br
= int(vn
.attrib
['system-bitrate'])
215 play_path
= vn
.attrib
['src']
217 'format_id': 'smil-%d' % br
,
219 'play_path': play_path
,
221 'player_url': player_url
,
222 'ext': play_path
.partition(':')[0],
224 if video_url
is None:
225 flashvars
= self
._parse
_json
(self
._search
_regex
(
226 r
'flashvars\s*=\s*({.*});', webpage
, 'flashvars',
227 default
=None), video_id
, fatal
=False)
230 for source
in flashvars
.get('sources'):
231 source_url
= source
.get('src')
234 ext
= mimetype2ext(source
.get('type')) or determine_ext(source_url
)
236 video_url
.extend(self
._extract
_m
3u8_formats
(
237 source_url
, video_id
, 'mp4',
238 'm3u8_native', m3u8_id
='hls', fatal
=False))
245 if video_url
is None:
246 raise ExtractorError('Unsupported video type')
248 description
= self
._html
_search
_meta
(
249 ['og:description', 'twitter:description', 'description'],
250 webpage
, 'title', fatal
=False)
251 thumbnail
= self
._html
_search
_meta
(
252 ['og:image', 'twitter:image'], webpage
, 'title', fatal
=False)
253 video_uploader
= self
._html
_search
_regex
(
254 r
'submitter=(.*?);|googletag\.pubads\(\)\.setTargeting\("(?:channel|submiter)","([^"]+)"\);',
255 webpage
, 'uploader nickname', fatal
=False)
256 duration
= int_or_none(
257 self
._html
_search
_meta
('video:duration', webpage
, default
=None))
260 if re
.search(r
'(?:"contentRating":|"rating",)"restricted"', webpage
)
263 if isinstance(video_url
, list):
273 'display_id': display_id
,
274 'description': description
,
275 'uploader': video_uploader
,
276 'title': video_title
,
277 'thumbnail': thumbnail
,
278 'age_limit': age_limit
,
280 'duration': duration
,