2014-04-19 19:42:51 +02:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-08-17 01:02:12 +02:00
|
|
|
from ..utils import str_to_int
|
|
|
|
from .keezmovies import KeezMoviesIE
|
2013-10-28 17:35:01 +01:00
|
|
|
|
|
|
|
|
2016-08-17 01:02:12 +02:00
|
|
|
class ExtremeTubeIE(KeezMoviesIE):
|
2016-08-17 02:02:13 +02:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?extremetube\.com/(?:[^/]+/)?video/(?P<id>[^/#?&]+)'
|
2014-04-19 19:41:06 +02:00
|
|
|
_TESTS = [{
|
2014-04-19 19:42:51 +02:00
|
|
|
'url': 'http://www.extremetube.com/video/music-video-14-british-euro-brit-european-cumshots-swallow-652431',
|
2018-04-19 17:36:33 +02:00
|
|
|
'md5': '92feaafa4b58e82f261e5419f39c60cb',
|
2014-04-19 19:42:51 +02:00
|
|
|
'info_dict': {
|
2016-08-17 02:02:13 +02:00
|
|
|
'id': 'music-video-14-british-euro-brit-european-cumshots-swallow-652431',
|
2014-04-19 19:42:51 +02:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Music Video 14 british euro brit european cumshots swallow',
|
2018-04-19 17:36:33 +02:00
|
|
|
'uploader': 'anonim',
|
2014-09-27 17:36:53 +02:00
|
|
|
'view_count': int,
|
2014-04-19 19:42:51 +02:00
|
|
|
'age_limit': 18,
|
2013-10-28 17:35:01 +01:00
|
|
|
}
|
2014-04-19 19:41:06 +02:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.extremetube.com/gay/video/abcde-1234',
|
|
|
|
'only_matching': True,
|
2015-11-08 14:14:39 +01:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.extremetube.com/video/latina-slut-fucked-by-fat-black-dick',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.extremetube.com/video/652431',
|
|
|
|
'only_matching': True,
|
2014-04-19 19:41:06 +02:00
|
|
|
}]
|
2013-10-28 17:35:01 +01:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2016-08-17 01:02:12 +02:00
|
|
|
webpage, info = self._extract_info(url)
|
2013-10-28 17:35:01 +01:00
|
|
|
|
2016-08-17 01:02:12 +02:00
|
|
|
if not info['title']:
|
|
|
|
info['title'] = self._search_regex(
|
|
|
|
r'<h1[^>]+title="([^"]+)"[^>]*>', webpage, 'title')
|
2013-10-28 17:35:01 +01:00
|
|
|
|
2014-04-19 19:42:51 +02:00
|
|
|
uploader = self._html_search_regex(
|
2018-04-19 17:36:33 +02:00
|
|
|
r'Uploaded by:\s*</[^>]+>\s*<a[^>]+>(.+?)</a>',
|
2014-09-27 17:36:53 +02:00
|
|
|
webpage, 'uploader', fatal=False)
|
2016-08-17 01:02:12 +02:00
|
|
|
view_count = str_to_int(self._search_regex(
|
2018-04-19 17:36:33 +02:00
|
|
|
r'Views:\s*</[^>]+>\s*<[^>]+>([\d,\.]+)</',
|
2014-09-27 17:36:53 +02:00
|
|
|
webpage, 'view count', fatal=False))
|
|
|
|
|
2016-08-17 01:02:12 +02:00
|
|
|
info.update({
|
2013-10-28 17:35:01 +01:00
|
|
|
'uploader': uploader,
|
2014-09-27 17:36:53 +02:00
|
|
|
'view_count': view_count,
|
2016-08-17 01:02:12 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return info
|