]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/metacafe.py
4 from .common
import InfoExtractor
10 compat_urllib_request
,
16 class MetacafeIE(InfoExtractor
):
17 """Information Extractor for metacafe.com."""
19 _VALID_URL
= r
'(?:http://)?(?:www\.)?metacafe\.com/watch/([^/]+)/([^/]+)/.*'
20 _DISCLAIMER
= 'http://www.metacafe.com/family_filter/'
21 _FILTER_POST
= 'http://www.metacafe.com/f/index.php?inputType=filter&controllerGroup=user'
24 def report_disclaimer(self
):
25 """Report disclaimer retrieval."""
26 self
.to_screen(u
'Retrieving disclaimer')
28 def _real_initialize(self
):
30 request
= compat_urllib_request
.Request(self
._DISCLAIMER
)
32 self
.report_disclaimer()
33 compat_urllib_request
.urlopen(request
).read()
34 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
35 raise ExtractorError(u
'Unable to retrieve disclaimer: %s' % compat_str(err
))
40 'submit': "Continue - I'm over 18",
42 request
= compat_urllib_request
.Request(self
._FILTER
_POST
, compat_urllib_parse
.urlencode(disclaimer_form
))
44 self
.report_age_confirmation()
45 compat_urllib_request
.urlopen(request
).read()
46 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
47 raise ExtractorError(u
'Unable to confirm age: %s' % compat_str(err
))
49 def _real_extract(self
, url
):
50 # Extract id and simplified title from URL
51 mobj
= re
.match(self
._VALID
_URL
, url
)
53 raise ExtractorError(u
'Invalid URL: %s' % url
)
55 video_id
= mobj
.group(1)
57 # Check if video comes from YouTube
58 mobj2
= re
.match(r
'^yt-(.*)$', video_id
)
60 return [self
.url_result('http://www.youtube.com/watch?v=%s' % mobj2
.group(1), 'Youtube')]
62 # Retrieve video webpage to extract further information
63 webpage
= self
._download
_webpage
('http://www.metacafe.com/watch/%s/' % video_id
, video_id
)
65 # Extract URL, uploader and title from webpage
66 self
.report_extraction(video_id
)
67 mobj
= re
.search(r
'(?m)&mediaURL=([^&]+)', webpage
)
69 mediaURL
= compat_urllib_parse
.unquote(mobj
.group(1))
70 video_extension
= mediaURL
[-3:]
72 # Extract gdaKey if available
73 mobj
= re
.search(r
'(?m)&gdaKey=(.*?)&', webpage
)
77 gdaKey
= mobj
.group(1)
78 video_url
= '%s?__gda__=%s' % (mediaURL
, gdaKey
)
80 mobj
= re
.search(r
' name="flashvars" value="(.*?)"', webpage
)
82 raise ExtractorError(u
'Unable to extract media URL')
83 vardict
= compat_parse_qs(mobj
.group(1))
84 if 'mediaData' not in vardict
:
85 raise ExtractorError(u
'Unable to extract media URL')
86 mobj
= re
.search(r
'"mediaURL":"(?P<mediaURL>http.*?)",(.*?)"key":"(?P<key>.*?)"', vardict
['mediaData'][0])
88 raise ExtractorError(u
'Unable to extract media URL')
89 mediaURL
= mobj
.group('mediaURL').replace('\\/', '/')
90 video_extension
= mediaURL
[-3:]
91 video_url
= '%s?__gda__=%s' % (mediaURL
, mobj
.group('key'))
93 mobj
= re
.search(r
'(?im)<title>(.*) - Video</title>', webpage
)
95 raise ExtractorError(u
'Unable to extract title')
96 video_title
= mobj
.group(1).decode('utf-8')
98 mobj
= re
.search(r
'submitter=(.*?);', webpage
)
100 raise ExtractorError(u
'Unable to extract uploader nickname')
101 video_uploader
= mobj
.group(1)
104 'id': video_id
.decode('utf-8'),
105 'url': video_url
.decode('utf-8'),
106 'uploader': video_uploader
.decode('utf-8'),
108 'title': video_title
,
109 'ext': video_extension
.decode('utf-8'),