tube8.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..compat import compat_str
  5. from ..utils import (
  6. int_or_none,
  7. sanitized_Request,
  8. str_to_int,
  9. )
  10. from ..aes import aes_decrypt_text
  11. class Tube8IE(InfoExtractor):
  12. _VALID_URL = r'https?://(?:www\.)?tube8\.com/(?:[^/]+/)+(?P<display_id>[^/]+)/(?P<id>\d+)'
  13. _TESTS = [{
  14. 'url': 'http://www.tube8.com/teen/kasia-music-video/229795/',
  15. 'md5': '65e20c48e6abff62ed0c3965fff13a39',
  16. 'info_dict': {
  17. 'id': '229795',
  18. 'display_id': 'kasia-music-video',
  19. 'ext': 'mp4',
  20. 'description': 'hot teen Kasia grinding',
  21. 'uploader': 'unknown',
  22. 'title': 'Kasia music video',
  23. 'age_limit': 18,
  24. 'duration': 230,
  25. }
  26. },{
  27. 'url': 'http://www.tube8.com/shemale/teen/blonde-cd-gets-kidnapped-by-two-blacks-and-punished-for-being-a-slutty-girl/19569151/',
  28. 'only_matching': True,
  29. }]
  30. def _real_extract(self, url):
  31. mobj = re.match(self._VALID_URL, url)
  32. video_id = mobj.group('id')
  33. display_id = mobj.group('display_id')
  34. req = sanitized_Request(url)
  35. req.add_header('Cookie', 'age_verified=1')
  36. webpage = self._download_webpage(req, display_id)
  37. flashvars = self._parse_json(
  38. self._search_regex(
  39. r'flashvars\s*=\s*({.+?});\r?\n', webpage, 'flashvars'),
  40. video_id)
  41. formats = []
  42. for key, video_url in flashvars.items():
  43. if not isinstance(video_url, compat_str) or not video_url.startswith('http'):
  44. continue
  45. height = self._search_regex(
  46. r'quality_(\d+)[pP]', key, 'height', default=None)
  47. if not height:
  48. continue
  49. if flashvars.get('encrypted') is True:
  50. video_url = aes_decrypt_text(
  51. video_url, flashvars['video_title'], 32).decode('utf-8')
  52. formats.append({
  53. 'url': video_url,
  54. 'format_id': '%sp' % height,
  55. 'height': int(height),
  56. })
  57. self._sort_formats(formats)
  58. thumbnail = flashvars.get('image_url')
  59. title = self._html_search_regex(
  60. r'videoTitle\s*=\s*"([^"]+)', webpage, 'title')
  61. description = self._html_search_regex(
  62. r'>Description:</strong>\s*(.+?)\s*<', webpage, 'description', fatal=False)
  63. uploader = self._html_search_regex(
  64. r'<span class="username">\s*(.+?)\s*<',
  65. webpage, 'uploader', fatal=False)
  66. duration = int_or_none(flashvars.get('video_duration'))
  67. like_count = int_or_none(self._search_regex(
  68. r'rupVar\s*=\s*"(\d+)"', webpage, 'like count', fatal=False))
  69. dislike_count = int_or_none(self._search_regex(
  70. r'rdownVar\s*=\s*"(\d+)"', webpage, 'dislike count', fatal=False))
  71. view_count = str_to_int(self._search_regex(
  72. r'<strong>Views: </strong>([\d,\.]+)\s*</li>',
  73. webpage, 'view count', fatal=False))
  74. comment_count = str_to_int(self._search_regex(
  75. r'<span id="allCommentsCount">(\d+)</span>',
  76. webpage, 'comment count', fatal=False))
  77. return {
  78. 'id': video_id,
  79. 'display_id': display_id,
  80. 'title': title,
  81. 'description': description,
  82. 'thumbnail': thumbnail,
  83. 'uploader': uploader,
  84. 'duration': duration,
  85. 'view_count': view_count,
  86. 'like_count': like_count,
  87. 'dislike_count': dislike_count,
  88. 'comment_count': comment_count,
  89. 'age_limit': 18,
  90. 'formats': formats,
  91. }