2014-01-21 14:16:44 +01:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-06-23 22:27:16 +02:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
class RedTubeIE(InfoExtractor):
|
2014-01-16 11:21:33 +01:00
|
|
|
_VALID_URL = r'http://(?:www\.)?redtube\.com/(?P<id>[0-9]+)'
|
2013-06-27 20:46:46 +02:00
|
|
|
_TEST = {
|
2014-01-21 14:16:44 +01:00
|
|
|
'url': 'http://www.redtube.com/66418',
|
|
|
|
'file': '66418.mp4',
|
2013-11-16 10:30:09 +01:00
|
|
|
# md5 varies from time to time, as in
|
|
|
|
# https://travis-ci.org/rg3/youtube-dl/jobs/14052463#L295
|
2014-01-21 14:16:44 +01:00
|
|
|
#'md5': u'7b8c22b5e7098a3e1c09709df1126d2d',
|
|
|
|
'info_dict': {
|
|
|
|
"title": "Sucked on a toilet",
|
|
|
|
"age_limit": 18,
|
2013-06-27 20:46:46 +02:00
|
|
|
}
|
|
|
|
}
|
2013-06-23 22:27:16 +02:00
|
|
|
|
2013-10-04 11:41:57 +02:00
|
|
|
def _real_extract(self, url):
|
2013-06-23 22:27:16 +02:00
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
|
|
|
|
video_id = mobj.group('id')
|
2013-10-04 11:41:57 +02:00
|
|
|
video_extension = 'mp4'
|
2013-06-23 22:27:16 +02:00
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
|
|
|
self.report_extraction(video_id)
|
|
|
|
|
2013-10-04 11:41:57 +02:00
|
|
|
video_url = self._html_search_regex(
|
|
|
|
r'<source src="(.+?)" type="video/mp4">', webpage, u'video URL')
|
2013-06-23 22:27:16 +02:00
|
|
|
|
2013-10-04 11:41:57 +02:00
|
|
|
video_title = self._html_search_regex(
|
2013-12-03 14:08:16 +01:00
|
|
|
r'<h1 class="videoTitle[^"]*">(.+?)</h1>',
|
2013-06-23 22:27:16 +02:00
|
|
|
webpage, u'title')
|
|
|
|
|
2014-07-17 11:17:27 +02:00
|
|
|
video_thumbnail = self._og_search_thumbnail(webpage)
|
2014-01-21 14:12:59 +01:00
|
|
|
|
2013-10-06 16:39:35 +02:00
|
|
|
# No self-labeling, but they describe themselves as
|
|
|
|
# "Home of Videos Porno"
|
|
|
|
age_limit = 18
|
|
|
|
|
2013-10-04 11:41:57 +02:00
|
|
|
return {
|
2014-01-21 14:16:44 +01:00
|
|
|
'id': video_id,
|
|
|
|
'url': video_url,
|
|
|
|
'ext': video_extension,
|
|
|
|
'title': video_title,
|
2014-01-21 14:12:59 +01:00
|
|
|
'thumbnail': video_thumbnail,
|
2013-10-06 16:39:35 +02:00
|
|
|
'age_limit': age_limit,
|
2013-10-04 11:41:57 +02:00
|
|
|
}
|