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.

132 lines
5.4 KiB

  1. from __future__ import unicode_literals
  2. import json
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import int_or_none
  6. class LiveLeakIE(InfoExtractor):
  7. _VALID_URL = r'https?://(?:\w+\.)?liveleak\.com/view\?(?:.*?)i=(?P<id>[\w_]+)(?:.*)'
  8. _TESTS = [{
  9. 'url': 'http://www.liveleak.com/view?i=757_1364311680',
  10. 'md5': '50f79e05ba149149c1b4ea961223d5b3',
  11. 'info_dict': {
  12. 'id': '757_1364311680',
  13. 'ext': 'flv',
  14. 'description': 'extremely bad day for this guy..!',
  15. 'uploader': 'ljfriel2',
  16. 'title': 'Most unlucky car accident',
  17. 'thumbnail': 're:^https?://.*\.jpg$'
  18. }
  19. }, {
  20. 'url': 'http://www.liveleak.com/view?i=f93_1390833151',
  21. 'md5': 'b13a29626183c9d33944e6a04f41aafc',
  22. 'info_dict': {
  23. 'id': 'f93_1390833151',
  24. 'ext': 'mp4',
  25. 'description': 'German Television Channel NDR does an exclusive interview with Edward Snowden.\r\nUploaded on LiveLeak cause German Television thinks the rest of the world isn\'t intereseted in Edward Snowden.',
  26. 'uploader': 'ARD_Stinkt',
  27. 'title': 'German Television does first Edward Snowden Interview (ENGLISH)',
  28. 'thumbnail': 're:^https?://.*\.jpg$'
  29. }
  30. }, {
  31. 'url': 'http://www.liveleak.com/view?i=4f7_1392687779',
  32. 'md5': '42c6d97d54f1db107958760788c5f48f',
  33. 'info_dict': {
  34. 'id': '4f7_1392687779',
  35. 'ext': 'mp4',
  36. 'description': "The guy with the cigarette seems amazingly nonchalant about the whole thing... I really hope my friends' reactions would be a bit stronger.\r\n\r\nAction-go to 0:55.",
  37. 'uploader': 'CapObveus',
  38. 'title': 'Man is Fatally Struck by Reckless Car While Packing up a Moving Truck',
  39. 'age_limit': 18,
  40. }
  41. }, {
  42. # Covers https://github.com/rg3/youtube-dl/pull/5983
  43. 'url': 'http://www.liveleak.com/view?i=801_1409392012',
  44. 'md5': '0b3bec2d888c20728ca2ad3642f0ef15',
  45. 'info_dict': {
  46. 'id': '801_1409392012',
  47. 'ext': 'mp4',
  48. 'description': 'Happened on 27.7.2014. \r\nAt 0:53 you can see people still swimming at near beach.',
  49. 'uploader': 'bony333',
  50. 'title': 'Crazy Hungarian tourist films close call waterspout in Croatia',
  51. 'thumbnail': 're:^https?://.*\.jpg$'
  52. }
  53. }]
  54. @staticmethod
  55. def _extract_url(webpage):
  56. mobj = re.search(
  57. r'<iframe[^>]+src="https?://(?:\w+\.)?liveleak\.com/ll_embed\?(?:.*?)i=(?P<id>[\w_]+)(?:.*)',
  58. webpage)
  59. if mobj:
  60. return 'http://www.liveleak.com/view?i=%s' % mobj.group('id')
  61. def _real_extract(self, url):
  62. video_id = self._match_id(url)
  63. webpage = self._download_webpage(url, video_id)
  64. video_title = self._og_search_title(webpage).replace('LiveLeak.com -', '').strip()
  65. video_description = self._og_search_description(webpage)
  66. video_uploader = self._html_search_regex(
  67. r'By:.*?(\w+)</a>', webpage, 'uploader', fatal=False)
  68. age_limit = int_or_none(self._search_regex(
  69. r'you confirm that you are ([0-9]+) years and over.',
  70. webpage, 'age limit', default=None))
  71. video_thumbnail = self._og_search_thumbnail(webpage)
  72. sources_raw = self._search_regex(
  73. r'(?s)sources:\s*(\[.*?\]),', webpage, 'video URLs', default=None)
  74. if sources_raw is None:
  75. alt_source = self._search_regex(
  76. r'(file: ".*?"),', webpage, 'video URL', default=None)
  77. if alt_source:
  78. sources_raw = '[{ %s}]' % alt_source
  79. else:
  80. # Maybe an embed?
  81. embed_url = self._search_regex(
  82. r'<iframe[^>]+src="(http://www.prochan.com/embed\?[^"]+)"',
  83. webpage, 'embed URL')
  84. return {
  85. '_type': 'url_transparent',
  86. 'url': embed_url,
  87. 'id': video_id,
  88. 'title': video_title,
  89. 'description': video_description,
  90. 'uploader': video_uploader,
  91. 'age_limit': age_limit,
  92. }
  93. sources_json = re.sub(r'\s([a-z]+):\s', r'"\1": ', sources_raw)
  94. sources = json.loads(sources_json)
  95. formats = [{
  96. 'format_id': '%s' % i,
  97. 'format_note': s.get('label'),
  98. 'url': s['file'],
  99. } for i, s in enumerate(sources)]
  100. for i, s in enumerate(sources):
  101. # Removing '.h264_*.mp4' gives the raw video, which is essentially
  102. # the same video without the LiveLeak logo at the top (see
  103. # https://github.com/rg3/youtube-dl/pull/4768)
  104. orig_url = re.sub(r'\.h264_.+?\.mp4', '', s['file'])
  105. if s['file'] != orig_url:
  106. formats.append({
  107. 'format_id': 'original-%s' % i,
  108. 'format_note': s.get('label'),
  109. 'url': orig_url,
  110. 'preference': 1,
  111. })
  112. self._sort_formats(formats)
  113. return {
  114. 'id': video_id,
  115. 'title': video_title,
  116. 'description': video_description,
  117. 'uploader': video_uploader,
  118. 'formats': formats,
  119. 'age_limit': age_limit,
  120. 'thumbnail': video_thumbnail,
  121. }