Merge remote-tracking branch 'dstftw/smotri.com-broadcast'
[youtube-dl] / youtube_dl / extractor / redtube.py
1 import re
2
3 from .common import InfoExtractor
4
5
6 class RedTubeIE(InfoExtractor):
7     _VALID_URL = r'(?:http://)?(?:www\.)?redtube\.com/(?P<id>[0-9]+)'
8     _TEST = {
9         u'url': u'http://www.redtube.com/66418',
10         u'file': u'66418.mp4',
11         # md5 varies from time to time, as in
12         # https://travis-ci.org/rg3/youtube-dl/jobs/14052463#L295
13         #u'md5': u'7b8c22b5e7098a3e1c09709df1126d2d',
14         u'info_dict': {
15             u"title": u"Sucked on a toilet",
16             u"age_limit": 18,
17         }
18     }
19
20     def _real_extract(self, url):
21         mobj = re.match(self._VALID_URL, url)
22
23         video_id = mobj.group('id')
24         video_extension = 'mp4'
25         webpage = self._download_webpage(url, video_id)
26
27         self.report_extraction(video_id)
28
29         video_url = self._html_search_regex(
30             r'<source src="(.+?)" type="video/mp4">', webpage, u'video URL')
31
32         video_title = self._html_search_regex(
33             r'<h1 class="videoTitle[^"]*">(.+?)</h1>',
34             webpage, u'title')
35
36         # No self-labeling, but they describe themselves as
37         # "Home of Videos Porno"
38         age_limit = 18
39
40         return {
41             'id':        video_id,
42             'url':       video_url,
43             'ext':       video_extension,
44             'title':     video_title,
45             'age_limit': age_limit,
46         }