You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
3.1 KiB

  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..compat import compat_urllib_request
  5. from ..utils import (
  6. int_or_none,
  7. str_to_int,
  8. )
  9. class ExtremeTubeIE(InfoExtractor):
  10. _VALID_URL = r'https?://(?:www\.)?extremetube\.com/(?:[^/]+/)?video/(?P<id>[^/#?&]+)'
  11. _TESTS = [{
  12. 'url': 'http://www.extremetube.com/video/music-video-14-british-euro-brit-european-cumshots-swallow-652431',
  13. 'md5': '344d0c6d50e2f16b06e49ca011d8ac69',
  14. 'info_dict': {
  15. 'id': 'music-video-14-british-euro-brit-european-cumshots-swallow-652431',
  16. 'ext': 'mp4',
  17. 'title': 'Music Video 14 british euro brit european cumshots swallow',
  18. 'uploader': 'unknown',
  19. 'view_count': int,
  20. 'age_limit': 18,
  21. }
  22. }, {
  23. 'url': 'http://www.extremetube.com/gay/video/abcde-1234',
  24. 'only_matching': True,
  25. }, {
  26. 'url': 'http://www.extremetube.com/video/latina-slut-fucked-by-fat-black-dick',
  27. 'only_matching': True,
  28. }, {
  29. 'url': 'http://www.extremetube.com/video/652431',
  30. 'only_matching': True,
  31. }]
  32. def _real_extract(self, url):
  33. video_id = self._match_id(url)
  34. req = compat_urllib_request.Request(url)
  35. req.add_header('Cookie', 'age_verified=1')
  36. webpage = self._download_webpage(req, video_id)
  37. video_title = self._html_search_regex(
  38. r'<h1 [^>]*?title="([^"]+)"[^>]*>', webpage, 'title')
  39. uploader = self._html_search_regex(
  40. r'Uploaded by:\s*</strong>\s*(.+?)\s*</div>',
  41. webpage, 'uploader', fatal=False)
  42. view_count = str_to_int(self._html_search_regex(
  43. r'Views:\s*</strong>\s*<span>([\d,\.]+)</span>',
  44. webpage, 'view count', fatal=False))
  45. flash_vars = self._parse_json(
  46. self._search_regex(
  47. r'var\s+flashvars\s*=\s*({.+?});', webpage, 'flash vars'),
  48. video_id)
  49. formats = []
  50. for quality_key, video_url in flash_vars.items():
  51. height = int_or_none(self._search_regex(
  52. r'quality_(\d+)[pP]$', quality_key, 'height', default=None))
  53. if not height:
  54. continue
  55. f = {
  56. 'url': video_url,
  57. }
  58. mobj = re.search(
  59. r'/(?P<height>\d{3,4})[pP]_(?P<bitrate>\d+)[kK]_\d+', video_url)
  60. if mobj:
  61. height = int(mobj.group('height'))
  62. bitrate = int(mobj.group('bitrate'))
  63. f.update({
  64. 'format_id': '%dp-%dk' % (height, bitrate),
  65. 'height': height,
  66. 'tbr': bitrate,
  67. })
  68. else:
  69. f.update({
  70. 'format_id': '%dp' % height,
  71. 'height': height,
  72. })
  73. formats.append(f)
  74. self._sort_formats(formats)
  75. return {
  76. 'id': video_id,
  77. 'title': video_title,
  78. 'formats': formats,
  79. 'uploader': uploader,
  80. 'view_count': view_count,
  81. 'age_limit': 18,
  82. }