5 from .common
import InfoExtractor
7 compat_urllib_parse_urlparse
,
19 class YouPornIE(InfoExtractor
):
20 _VALID_URL
= r
'^(?:https?://)?(?:www\.)?(?P<url>youporn\.com/watch/(?P<videoid>[0-9]+)/(?P<title>[^/]+))'
22 u
'url': u
'http://www.youporn.com/watch/505835/sex-ed-is-it-safe-to-masturbate-daily/',
23 u
'file': u
'505835.mp4',
24 u
'md5': u
'71ec5fcfddacf80f495efa8b6a8d9a89',
26 u
"upload_date": u
"20101221",
27 u
"description": u
"Love & Sex Answers: http://bit.ly/DanAndJenn -- Is It Unhealthy To Masturbate Daily?",
28 u
"uploader": u
"Ask Dan And Jennifer",
29 u
"title": u
"Sex Ed: Is It Safe To Masturbate Daily?",
34 def _real_extract(self
, url
):
35 mobj
= re
.match(self
._VALID
_URL
, url
)
36 video_id
= mobj
.group('videoid')
37 url
= 'http://www.' + mobj
.group('url')
39 req
= compat_urllib_request
.Request(url
)
40 req
.add_header('Cookie', 'age_verified=1')
41 webpage
= self
._download
_webpage
(req
, video_id
)
42 age_limit
= self
._rta
_search
(webpage
)
45 json_params
= self
._search
_regex
(r
'var currentVideo = new Video\((.*)\);', webpage
, u
'JSON parameters')
47 params
= json
.loads(json_params
)
49 raise ExtractorError(u
'Invalid JSON')
51 self
.report_extraction(video_id
)
53 video_title
= params
['title']
54 upload_date
= unified_strdate(params
['release_date_f'])
55 video_description
= params
['description']
56 video_uploader
= params
['submitted_by']
57 thumbnail
= params
['thumbnails'][0]['image']
59 raise ExtractorError('Missing JSON parameter: ' + sys
.exc_info()[1])
61 # Get all of the links from the page
62 DOWNLOAD_LIST_RE
= r
'(?s)<ul class="downloadList">(?P<download_list>.*?)</ul>'
63 download_list_html
= self
._search
_regex
(DOWNLOAD_LIST_RE
,
64 webpage
, u
'download list').strip()
65 LINK_RE
= r
'<a href="([^"]+)">'
66 links
= re
.findall(LINK_RE
, download_list_html
)
68 # Get all encrypted links
69 encrypted_links
= re
.findall(r
'var encryptedQuality[0-9]{3}URL = \'([a
-zA
-Z0
-9+/]+={0,2})\';', webpage)
70 for encrypted_link in encrypted_links:
71 link = aes_decrypt_text(encrypted_link, video_title, 32).decode('utf
-8')
76 # A link looks like this:
77 # http://cdn1.download.youporn.phncdn.com/201210/31/8004515/480p_370k_8004515/YouPorn%20-%20Nubile%20Films%20The%20Pillow%20Fight.mp4?nvb=20121113051249&nva=20121114051249&ir=1200&sr=1200&hash=014b882080310e95fb6a0
78 # A path looks like this:
79 # /201210/31/8004515/480p_370k_8004515/YouPorn%20-%20Nubile%20Films%20The%20Pillow%20Fight.mp4
80 video_url = unescapeHTML(link)
81 path = compat_urllib_parse_urlparse(video_url).path
82 format_parts = path.split('/')[4].split('_
')[:2]
84 dn = compat_urllib_parse_urlparse(video_url).netloc.partition('.')[0]
86 resolution = format_parts[0]
87 height = int(resolution[:-len('p
')])
88 bitrate = int(format_parts[1][:-len('k
')])
89 format = u'-'.join(format_parts) + u'-' + dn
97 'resolution
': resolution,
100 self._sort_formats(formats)
103 raise ExtractorError(u'ERROR
: no known formats available
for video
')
107 'uploader
': video_uploader,
108 'upload_date
': upload_date,
109 'title
': video_title,
110 'thumbnail
': thumbnail,
111 'description
': video_description,
112 'age_limit
': age_limit,