]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/behindkink.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..utils
import url_basename
10 class BehindKinkIE(InfoExtractor
):
11 _VALID_URL
= r
'http://(?:www\.)?behindkink\.com/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/(?P<day>[0-9]{2})/(?P<id>[^/#?_]+)'
13 'url': 'http://www.behindkink.com/2014/12/05/what-are-you-passionate-about-marley-blaze/',
14 'md5': '507b57d8fdcd75a41a9a7bdb7989c762',
18 'title': 'What are you passionate about – Marley Blaze',
19 'description': 'md5:aee8e9611b4ff70186f752975d9b94b4',
20 'upload_date': '20141205',
21 'thumbnail': 'http://www.behindkink.com/wp-content/uploads/2014/12/blaze-1.jpg',
26 def _real_extract(self
, url
):
27 mobj
= re
.match(self
._VALID
_URL
, url
)
28 display_id
= mobj
.group('id')
30 webpage
= self
._download
_webpage
(url
, display_id
)
32 video_url
= self
._search
_regex
(
33 r
'<source src="([^"]+)"', webpage
, 'video URL')
34 video_id
= url_basename(video_url
).split('_')[0]
35 upload_date
= mobj
.group('year') + mobj
.group('month') + mobj
.group('day')
39 'display_id': display_id
,
41 'title': self
._og
_search
_title
(webpage
),
42 'thumbnail': self
._og
_search
_thumbnail
(webpage
),
43 'description': self
._og
_search
_description
(webpage
),
44 'upload_date': upload_date
,