2014-09-13 11:47:19 -04:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
from ..utils import url_basename
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class BehindKinkIE(InfoExtractor):
|
2016-03-21 11:36:32 -04:00
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?behindkink\.com/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/(?P<day>[0-9]{2})/(?P<id>[^/#?_]+)'
|
2014-09-13 11:47:19 -04:00
|
|
|
|
_TEST = {
|
2014-12-11 08:26:59 -05:00
|
|
|
|
'url': 'http://www.behindkink.com/2014/12/05/what-are-you-passionate-about-marley-blaze/',
|
|
|
|
|
'md5': '507b57d8fdcd75a41a9a7bdb7989c762',
|
2014-09-13 11:47:19 -04:00
|
|
|
|
'info_dict': {
|
2014-12-11 08:26:59 -05:00
|
|
|
|
'id': '37127',
|
2014-09-13 11:47:19 -04:00
|
|
|
|
'ext': 'mp4',
|
2014-12-11 08:26:59 -05:00
|
|
|
|
'title': 'What are you passionate about – Marley Blaze',
|
2014-12-11 09:06:19 -05:00
|
|
|
|
'description': 'md5:aee8e9611b4ff70186f752975d9b94b4',
|
2014-12-11 08:26:59 -05:00
|
|
|
|
'upload_date': '20141205',
|
|
|
|
|
'thumbnail': 'http://www.behindkink.com/wp-content/uploads/2014/12/blaze-1.jpg',
|
2014-09-13 11:47:19 -04:00
|
|
|
|
'age_limit': 18,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
|
display_id = mobj.group('id')
|
|
|
|
|
|
2014-09-15 09:09:17 -04:00
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
2014-09-13 11:47:19 -04:00
|
|
|
|
|
|
|
|
|
video_url = self._search_regex(
|
2014-12-11 09:06:19 -05:00
|
|
|
|
r'<source src="([^"]+)"', webpage, 'video URL')
|
2014-12-11 09:09:52 -05:00
|
|
|
|
video_id = url_basename(video_url).split('_')[0]
|
2014-12-11 09:06:19 -05:00
|
|
|
|
upload_date = mobj.group('year') + mobj.group('month') + mobj.group('day')
|
2014-09-13 11:47:19 -04:00
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
'id': video_id,
|
2014-12-11 09:06:19 -05:00
|
|
|
|
'display_id': display_id,
|
2014-09-13 11:47:19 -04:00
|
|
|
|
'url': video_url,
|
|
|
|
|
'title': self._og_search_title(webpage),
|
|
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
|
|
|
|
'description': self._og_search_description(webpage),
|
|
|
|
|
'upload_date': upload_date,
|
|
|
|
|
'age_limit': 18,
|
|
|
|
|
}
|