6 from .common
import InfoExtractor
8 compat_urllib_parse_urlparse
,
19 class YouPornIE(InfoExtractor
):
20 _VALID_URL
= r
'^(?:https?://)?(?:\w+\.)?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 _print_formats(self
, formats
):
35 """Print all available formats"""
36 print(u
'Available formats:')
37 print(u
'ext\t\tformat')
38 print(u
'---------------------------------')
39 for format
in formats
:
40 print(u
'%s\t\t%s' % (format
['ext'], format
['format']))
42 def _specific(self
, req_format
, formats
):
44 if x
["format"] == req_format
:
48 def _real_extract(self
, url
):
49 mobj
= re
.match(self
._VALID
_URL
, url
)
50 video_id
= mobj
.group('videoid')
52 req
= compat_urllib_request
.Request(url
)
53 req
.add_header('Cookie', 'age_verified=1')
54 webpage
= self
._download
_webpage
(req
, video_id
)
55 age_limit
= self
._rta
_search
(webpage
)
58 json_params
= self
._search
_regex
(r
'var currentVideo = new Video\((.*)\);', webpage
, u
'JSON parameters')
60 params
= json
.loads(json_params
)
62 raise ExtractorError(u
'Invalid JSON')
64 self
.report_extraction(video_id
)
66 video_title
= params
['title']
67 upload_date
= unified_strdate(params
['release_date_f'])
68 video_description
= params
['description']
69 video_uploader
= params
['submitted_by']
70 thumbnail
= params
['thumbnails'][0]['image']
72 raise ExtractorError('Missing JSON parameter: ' + sys
.exc_info()[1])
74 # Get all of the formats available
75 DOWNLOAD_LIST_RE
= r
'(?s)<ul class="downloadList">(?P<download_list>.*?)</ul>'
76 download_list_html
= self
._search
_regex
(DOWNLOAD_LIST_RE
,
77 webpage
, u
'download list').strip()
79 # Get all of the links from the page
80 LINK_RE
= r
'(?s)<a href="(?P<url>[^"]+)">'
81 links
= re
.findall(LINK_RE
, download_list_html
)
83 # Get link of hd video if available
84 mobj
= re
.search(r
'var encryptedQuality720URL = \'(?P
<encrypted_video_url
>[a
-zA
-Z0
-9+/]+={0,2})\';', webpage)
86 encrypted_video_url = mobj.group(u'encrypted_video_url
')
87 video_url = aes_decrypt_text(encrypted_video_url, video_title, 32).decode('utf
-8')
88 links = [video_url] + links
91 raise ExtractorError(u'ERROR
: no known formats available
for video
')
93 self.to_screen(u'Links found
: %d' % len(links))
98 # A link looks like this:
99 # 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
100 # A path looks like this:
101 # /201210/31/8004515/480p_370k_8004515/YouPorn%20-%20Nubile%20Films%20The%20Pillow%20Fight.mp4
102 video_url = unescapeHTML( link )
103 path = compat_urllib_parse_urlparse( video_url ).path
104 extension = os.path.splitext( path )[1][1:]
105 format = path.split('/')[4].split('_
')[:2]
107 # bitrate = format[1]
108 format = "-".join( format )
109 # title = u'%s-%s-%s' % (video_title, size, bitrate)
114 'uploader
': video_uploader,
115 'upload_date
': upload_date,
116 'title
': video_title,
119 'thumbnail
': thumbnail,
120 'description
': video_description,
121 'age_limit
': age_limit,
124 if self._downloader.params.get('listformats
', None):
125 self._print_formats(formats)
128 req_format = self._downloader.params.get('format
', 'best
')
129 self.to_screen(u'Format
: %s' % req_format)
131 if req_format is None or req_format == 'best
':
133 elif req_format == 'worst
':
135 elif req_format in ('-1', 'all
'):
138 format = self._specific( req_format, formats )
140 raise ExtractorError(u'Requested format
not available
')