logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

xvideos.py (5286B)


  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..compat import compat_urllib_parse_unquote
  5. from ..utils import (
  6. clean_html,
  7. determine_ext,
  8. ExtractorError,
  9. int_or_none,
  10. parse_duration,
  11. )
  12. class XVideosIE(InfoExtractor):
  13. _VALID_URL = r'''(?x)
  14. https?://
  15. (?:
  16. (?:[^/]+\.)?xvideos2?\.com/video|
  17. (?:www\.)?xvideos\.es/video|
  18. flashservice\.xvideos\.com/embedframe/|
  19. static-hw\.xvideos\.com/swf/xv-player\.swf\?.*?\bid_video=
  20. )
  21. (?P<id>[0-9]+)
  22. '''
  23. _TESTS = [{
  24. 'url': 'http://www.xvideos.com/video4588838/biker_takes_his_girl',
  25. 'md5': '14cea69fcb84db54293b1e971466c2e1',
  26. 'info_dict': {
  27. 'id': '4588838',
  28. 'ext': 'mp4',
  29. 'title': 'Biker Takes his Girl',
  30. 'duration': 108,
  31. 'age_limit': 18,
  32. }
  33. }, {
  34. 'url': 'https://flashservice.xvideos.com/embedframe/4588838',
  35. 'only_matching': True,
  36. }, {
  37. 'url': 'http://static-hw.xvideos.com/swf/xv-player.swf?id_video=4588838',
  38. 'only_matching': True,
  39. }, {
  40. 'url': 'http://xvideos.com/video4588838/biker_takes_his_girl',
  41. 'only_matching': True
  42. }, {
  43. 'url': 'https://xvideos.com/video4588838/biker_takes_his_girl',
  44. 'only_matching': True
  45. }, {
  46. 'url': 'https://xvideos.es/video4588838/biker_takes_his_girl',
  47. 'only_matching': True
  48. }, {
  49. 'url': 'https://www.xvideos.es/video4588838/biker_takes_his_girl',
  50. 'only_matching': True
  51. }, {
  52. 'url': 'http://xvideos.es/video4588838/biker_takes_his_girl',
  53. 'only_matching': True
  54. }, {
  55. 'url': 'http://www.xvideos.es/video4588838/biker_takes_his_girl',
  56. 'only_matching': True
  57. }, {
  58. 'url': 'http://fr.xvideos.com/video4588838/biker_takes_his_girl',
  59. 'only_matching': True
  60. }, {
  61. 'url': 'https://fr.xvideos.com/video4588838/biker_takes_his_girl',
  62. 'only_matching': True
  63. }, {
  64. 'url': 'http://it.xvideos.com/video4588838/biker_takes_his_girl',
  65. 'only_matching': True
  66. }, {
  67. 'url': 'https://it.xvideos.com/video4588838/biker_takes_his_girl',
  68. 'only_matching': True
  69. }, {
  70. 'url': 'http://de.xvideos.com/video4588838/biker_takes_his_girl',
  71. 'only_matching': True
  72. }, {
  73. 'url': 'https://de.xvideos.com/video4588838/biker_takes_his_girl',
  74. 'only_matching': True
  75. }]
  76. def _real_extract(self, url):
  77. video_id = self._match_id(url)
  78. webpage = self._download_webpage(
  79. 'https://www.xvideos.com/video%s/0' % video_id, video_id)
  80. mobj = re.search(r'<h1 class="inlineError">(.+?)</h1>', webpage)
  81. if mobj:
  82. raise ExtractorError('%s said: %s' % (self.IE_NAME, clean_html(mobj.group(1))), expected=True)
  83. title = self._html_search_regex(
  84. (r'<title>(?P<title>.+?)\s+-\s+XVID',
  85. r'setVideoTitle\s*\(\s*(["\'])(?P<title>(?:(?!\1).)+)\1'),
  86. webpage, 'title', default=None,
  87. group='title') or self._og_search_title(webpage)
  88. thumbnails = []
  89. for preference, thumbnail in enumerate(('', '169')):
  90. thumbnail_url = self._search_regex(
  91. r'setThumbUrl%s\(\s*(["\'])(?P<thumbnail>(?:(?!\1).)+)\1' % thumbnail,
  92. webpage, 'thumbnail', default=None, group='thumbnail')
  93. if thumbnail_url:
  94. thumbnails.append({
  95. 'url': thumbnail_url,
  96. 'preference': preference,
  97. })
  98. duration = int_or_none(self._og_search_property(
  99. 'duration', webpage, default=None)) or parse_duration(
  100. self._search_regex(
  101. r'<span[^>]+class=["\']duration["\'][^>]*>.*?(\d[^<]+)',
  102. webpage, 'duration', fatal=False))
  103. formats = []
  104. video_url = compat_urllib_parse_unquote(self._search_regex(
  105. r'flv_url=(.+?)&', webpage, 'video URL', default=''))
  106. if video_url:
  107. formats.append({
  108. 'url': video_url,
  109. 'format_id': 'flv',
  110. })
  111. for kind, _, format_url in re.findall(
  112. r'setVideo([^(]+)\((["\'])(http.+?)\2\)', webpage):
  113. format_id = kind.lower()
  114. if format_id == 'hls':
  115. formats.extend(self._extract_m3u8_formats(
  116. format_url, video_id, 'mp4',
  117. entry_protocol='m3u8_native', m3u8_id='hls', fatal=False))
  118. elif format_id in ('urllow', 'urlhigh'):
  119. formats.append({
  120. 'url': format_url,
  121. 'format_id': '%s-%s' % (determine_ext(format_url, 'mp4'), format_id[3:]),
  122. 'quality': -2 if format_id.endswith('low') else None,
  123. })
  124. self._sort_formats(formats)
  125. return {
  126. 'id': video_id,
  127. 'formats': formats,
  128. 'title': title,
  129. 'duration': duration,
  130. 'thumbnails': thumbnails,
  131. 'age_limit': 18,
  132. }