1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
6 from ..compat
import compat_str
17 class TNAFlixNetworkBaseIE(InfoExtractor
):
18 # May be overridden in descendants if necessary
20 r
'flashvars\.config\s*=\s*escape\("([^"]+)"',
21 r
'<input[^>]+name="config\d?" value="([^"]+)"',
23 _TITLE_REGEX
= r
'<input[^>]+name="title" value="([^"]+)"'
24 _DESCRIPTION_REGEX
= r
'<input[^>]+name="description" value="([^"]+)"'
25 _UPLOADER_REGEX
= r
'<input[^>]+name="username" value="([^"]+)"'
26 _VIEW_COUNT_REGEX
= None
27 _COMMENT_COUNT_REGEX
= None
28 _AVERAGE_RATING_REGEX
= None
29 _CATEGORIES_REGEX
= r
'<li[^>]*>\s*<span[^>]+class="infoTitle"[^>]*>Categories:</span>\s*<span[^>]+class="listView"[^>]*>(.+?)</span>\s*</li>'
31 def _extract_thumbnails(self
, flix_xml
):
33 def get_child(elem
, names
):
35 child
= elem
.find(name
)
39 timeline
= get_child(flix_xml
, ['timeline', 'rolloverBarImage'])
43 pattern_el
= get_child(timeline
, ['imagePattern', 'pattern'])
44 if pattern_el
is None or not pattern_el
.text
:
47 first_el
= get_child(timeline
, ['imageFirst', 'first'])
48 last_el
= get_child(timeline
, ['imageLast', 'last'])
49 if first_el
is None or last_el
is None:
52 first_text
= first_el
.text
53 last_text
= last_el
.text
54 if not first_text
.isdigit() or not last_text
.isdigit():
57 first
= int(first_text
)
62 width
= int_or_none(xpath_text(timeline
, './imageWidth', 'thumbnail width'))
63 height
= int_or_none(xpath_text(timeline
, './imageHeight', 'thumbnail height'))
66 'url': self
._proto
_relative
_url
(pattern_el
.text
.replace('#', compat_str(i
)), 'http:'),
69 } for i
in range(first
, last
+ 1)]
71 def _real_extract(self
, url
):
72 mobj
= re
.match(self
._VALID
_URL
, url
)
73 video_id
= mobj
.group('id')
74 display_id
= mobj
.group('display_id') if 'display_id' in mobj
.groupdict() else video_id
76 webpage
= self
._download
_webpage
(url
, display_id
)
78 cfg_url
= self
._proto
_relative
_url
(self
._html
_search
_regex
(
79 self
._CONFIG
_REGEX
, webpage
, 'flashvars.config', default
=None), 'http:')
82 inputs
= self
._hidden
_inputs
(webpage
)
83 cfg_url
= 'https://cdn-fck.tnaflix.com/tnaflix/%s.fid?key=%s' % (inputs
['vkey'], inputs
['nkey'])
85 cfg_xml
= self
._download
_xml
(
86 cfg_url
, display_id
, 'Downloading metadata',
87 transform_source
=fix_xml_ampersands
)
91 def extract_video_url(vl
):
92 return re
.sub('speed=\d+', 'speed=', vl
.text
)
94 video_link
= cfg_xml
.find('./videoLink')
95 if video_link
is not None:
97 'url': extract_video_url(video_link
),
98 'ext': xpath_text(cfg_xml
, './videoConfig/type', 'type', default
='flv'),
101 for item
in cfg_xml
.findall('./quality/item'):
102 video_link
= item
.find('./videoLink')
103 if video_link
is None:
105 res
= item
.find('res')
106 format_id
= None if res
is None else res
.text
107 height
= int_or_none(self
._search
_regex
(
108 r
'^(\d+)[pP]', format_id
, 'height', default
=None))
110 'url': self
._proto
_relative
_url
(extract_video_url(video_link
), 'http:'),
111 'format_id': format_id
,
115 self
._sort
_formats
(formats
)
117 thumbnail
= self
._proto
_relative
_url
(
118 xpath_text(cfg_xml
, './startThumb', 'thumbnail'), 'http:')
119 thumbnails
= self
._extract
_thumbnails
(cfg_xml
)
122 if self
._TITLE
_REGEX
:
123 title
= self
._html
_search
_regex
(
124 self
._TITLE
_REGEX
, webpage
, 'title', default
=None)
126 title
= self
._og
_search
_title
(webpage
)
128 age_limit
= self
._rta
_search
(webpage
) or 18
130 duration
= parse_duration(self
._html
_search
_meta
(
131 'duration', webpage
, 'duration', default
=None))
133 def extract_field(pattern
, name
):
134 return self
._html
_search
_regex
(pattern
, webpage
, name
, default
=None) if pattern
else None
136 description
= extract_field(self
._DESCRIPTION
_REGEX
, 'description')
137 uploader
= extract_field(self
._UPLOADER
_REGEX
, 'uploader')
138 view_count
= str_to_int(extract_field(self
._VIEW
_COUNT
_REGEX
, 'view count'))
139 comment_count
= str_to_int(extract_field(self
._COMMENT
_COUNT
_REGEX
, 'comment count'))
140 average_rating
= float_or_none(extract_field(self
._AVERAGE
_RATING
_REGEX
, 'average rating'))
142 categories_str
= extract_field(self
._CATEGORIES
_REGEX
, 'categories')
143 categories
= [c
.strip() for c
in categories_str
.split(',')] if categories_str
is not None else []
147 'display_id': display_id
,
149 'description': description
,
150 'thumbnail': thumbnail
,
151 'thumbnails': thumbnails
,
152 'duration': duration
,
153 'age_limit': age_limit
,
154 'uploader': uploader
,
155 'view_count': view_count
,
156 'comment_count': comment_count
,
157 'average_rating': average_rating
,
158 'categories': categories
,
163 class TNAFlixNetworkEmbedIE(TNAFlixNetworkBaseIE
):
164 _VALID_URL
= r
'https?://player\.(?:tna|emp)flix\.com/video/(?P<id>\d+)'
166 _TITLE_REGEX
= r
'<title>([^<]+)</title>'
169 'url': 'https://player.tnaflix.com/video/6538',
172 'display_id': '6538',
174 'title': 'Educational xxx video',
175 'thumbnail': 're:https?://.*\.jpg$',
179 'skip_download': True,
182 'url': 'https://player.empflix.com/video/33051',
183 'only_matching': True,
187 def _extract_urls(webpage
):
188 return [url
for _
, url
in re
.findall(
189 r
'<iframe[^>]+?src=(["\'])(?P
<url
>(?
:https?
:)?
//player\
.(?
:tna|emp
)flix\
.com
/video
/\d
+)\
1',
193 class TNAFlixIE(TNAFlixNetworkBaseIE):
194 _VALID_URL = r'https?
://(?
:www\
.)?tnaflix\
.com
/[^
/]+/(?P
<display_id
>[^
/]+)/video(?P
<id>\d
+)'
196 _TITLE_REGEX = r'<title
>(.+?
) - (?
:TNAFlix Porn Videos|TNAFlix\
.com
)</title
>'
197 _DESCRIPTION_REGEX = r'(?s
)>Description
:</[^
>]+>(.+?
)<'
198 _UPLOADER_REGEX = r'<i
>\s
*Verified Member\s
*</i
>\s
*<h\d
+>(.+?
)<'
199 _CATEGORIES_REGEX = r'(?s
)<span
[^
>]*>Categories
:</span
>(.+?
)</div
>'
202 # anonymous uploader, no categories
203 'url
': 'http
://www
.tnaflix
.com
/porn
-stars
/Carmella
-Decesare
-striptease
/video553878
',
204 'md5
': '7e569419fe6d69543d01e6be22f5f7c4
',
207 'display_id
': 'Carmella
-Decesare
-striptease
',
209 'title
': 'Carmella Decesare
- striptease
',
210 'thumbnail
': 're
:https?
://.*\
.jpg$
',
213 'categories
': ['Porn Stars
'],
216 # non-anonymous uploader, categories
217 'url
': 'https
://www
.tnaflix
.com
/teen
-porn
/Educational
-xxx
-video
/video6538
',
218 'md5
': 'fcba2636572895aba116171a899a5658
',
221 'display_id
': 'Educational
-xxx
-video
',
223 'title
': 'Educational xxx video
',
224 'description
': 'md5
:b4fab8f88a8621c8fabd361a173fe5b8
',
225 'thumbnail
': 're
:https?
://.*\
.jpg$
',
228 'uploader
': 'bobwhite39
',
229 'categories
': ['Amateur Porn
', 'Squirting Videos
', 'Teen Girls
18+'],
232 'url
': 'https
://www
.tnaflix
.com
/amateur
-porn
/bunzHD
-Ms
.Donk
/video358632
',
233 'only_matching
': True,
237 class EMPFlixIE(TNAFlixNetworkBaseIE):
238 _VALID_URL = r'https?
://(?
:www\
.)?empflix\
.com
/videos
/(?P
<display_id
>.+?
)-(?P
<id>[0-9]+)\
.html
'
240 _UPLOADER_REGEX = r'<span
[^
>]+class="infoTitle"[^
>]*>Uploaded By
:</span
>(.+?
)</li
>'
243 'url
': 'http
://www
.empflix
.com
/videos
/Amateur
-Finger
-Fuck
-33051.html
',
244 'md5
': 'b1bc15b6412d33902d6e5952035fcabc
',
247 'display_id
': 'Amateur
-Finger
-Fuck
',
249 'title
': 'Amateur Finger Fuck
',
250 'description
': 'Amateur solo finger fucking
.',
251 'thumbnail
': 're
:https?
://.*\
.jpg$
',
254 'uploader
': 'cwbike
',
255 'categories
': ['Amateur
', 'Anal
', 'Fisting
', 'Home made
', 'Solo
'],
258 'url
': 'http
://www
.empflix
.com
/videos
/[AROMA
][ARMD
-718]-Aoi
-Yoshino
-Sawa
-25826.html
',
259 'only_matching
': True,
263 class MovieFapIE(TNAFlixNetworkBaseIE):
264 _VALID_URL = r'https?
://(?
:www\
.)?moviefap\
.com
/videos
/(?P
<id>[0-9a
-f
]+)/(?P
<display_id
>[^
/]+)\
.html
'
266 _VIEW_COUNT_REGEX = r'<br
>Views\s
*<strong
>([\d
,.]+)</strong
>'
267 _COMMENT_COUNT_REGEX = r'<span
[^
>]+id="comCount"[^
>]*>([\d
,.]+)</span
>'
268 _AVERAGE_RATING_REGEX = r'Current Rating\s
*<br
>\s
*<strong
>([\d
.]+)</strong
>'
269 _CATEGORIES_REGEX = r'(?s
)<div
[^
>]+id="vid_info"[^
>]*>\s
*<div
[^
>]*>.+?
</div
>(.*?
)<br
>'
272 # normal, multi-format video
273 'url
': 'http
://www
.moviefap
.com
/videos
/be9867c9416c19f54a4a
/experienced
-milf
-amazing
-handjob
.html
',
274 'md5
': '26624b4e2523051b550067d547615906
',
276 'id': 'be9867c9416c19f54a4a
',
277 'display_id
': 'experienced
-milf
-amazing
-handjob
',
279 'title
': 'Experienced MILF Amazing Handjob
',
280 'description
': 'Experienced MILF giving an Amazing Handjob
',
281 'thumbnail
': 're
:https?
://.*\
.jpg$
',
283 'uploader
': 'darvinfred06
',
285 'comment_count
': int,
286 'average_rating
': float,
287 'categories
': ['Amateur
', 'Masturbation
', 'Mature
', 'Flashing
'],
290 # quirky single-format case where the extension is given as fid, but the video is really an flv
291 'url
': 'http
://www
.moviefap
.com
/videos
/e5da0d3edce5404418f5
/jeune
-couple
-russe
.html
',
292 'md5
': 'fa56683e291fc80635907168a743c9ad
',
294 'id': 'e5da0d3edce5404418f5
',
295 'display_id
': 'jeune
-couple
-russe
',
297 'title
': 'Jeune Couple Russe
',
298 'description
': 'Amateur
',
299 'thumbnail
': 're
:https?
://.*\
.jpg$
',
301 'uploader
': 'whiskeyjar
',
303 'comment_count
': int,
304 'average_rating
': float,
305 'categories
': ['Amateur
', 'Teen
'],