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.

119 lines
4.8 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. }
  18. }, {
  19. 'url': 'http://www.liveleak.com/view?i=f93_1390833151',
  20. 'md5': 'b13a29626183c9d33944e6a04f41aafc',
  21. 'info_dict': {
  22. 'id': 'f93_1390833151',
  23. 'ext': 'mp4',
  24. '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.',
  25. 'uploader': 'ARD_Stinkt',
  26. 'title': 'German Television does first Edward Snowden Interview (ENGLISH)',
  27. }
  28. }, {
  29. 'url': 'http://www.liveleak.com/view?i=4f7_1392687779',
  30. 'md5': '42c6d97d54f1db107958760788c5f48f',
  31. 'info_dict': {
  32. 'id': '4f7_1392687779',
  33. 'ext': 'mp4',
  34. '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.",
  35. 'uploader': 'CapObveus',
  36. 'title': 'Man is Fatally Struck by Reckless Car While Packing up a Moving Truck',
  37. 'age_limit': 18,
  38. }
  39. }, {
  40. # Covers https://github.com/rg3/youtube-dl/pull/5983
  41. 'url': 'http://www.liveleak.com/view?i=801_1409392012',
  42. 'md5': '0b3bec2d888c20728ca2ad3642f0ef15',
  43. 'info_dict': {
  44. 'id': '801_1409392012',
  45. 'ext': 'mp4',
  46. 'description': 'Happened on 27.7.2014. \r\nAt 0:53 you can see people still swimming at near beach.',
  47. 'uploader': 'bony333',
  48. 'title': 'Crazy Hungarian tourist films close call waterspout in Croatia'
  49. }
  50. }]
  51. def _real_extract(self, url):
  52. video_id = self._match_id(url)
  53. webpage = self._download_webpage(url, video_id)
  54. video_title = self._og_search_title(webpage).replace('LiveLeak.com -', '').strip()
  55. video_description = self._og_search_description(webpage)
  56. video_uploader = self._html_search_regex(
  57. r'By:.*?(\w+)</a>', webpage, 'uploader', fatal=False)
  58. age_limit = int_or_none(self._search_regex(
  59. r'you confirm that you are ([0-9]+) years and over.',
  60. webpage, 'age limit', default=None))
  61. sources_raw = self._search_regex(
  62. r'(?s)sources:\s*(\[.*?\]),', webpage, 'video URLs', default=None)
  63. if sources_raw is None:
  64. alt_source = self._search_regex(
  65. r'(file: ".*?"),', webpage, 'video URL', default=None)
  66. if alt_source:
  67. sources_raw = '[{ %s}]' % alt_source
  68. else:
  69. # Maybe an embed?
  70. embed_url = self._search_regex(
  71. r'<iframe[^>]+src="(http://www.prochan.com/embed\?[^"]+)"',
  72. webpage, 'embed URL')
  73. return {
  74. '_type': 'url_transparent',
  75. 'url': embed_url,
  76. 'id': video_id,
  77. 'title': video_title,
  78. 'description': video_description,
  79. 'uploader': video_uploader,
  80. 'age_limit': age_limit,
  81. }
  82. sources_json = re.sub(r'\s([a-z]+):\s', r'"\1": ', sources_raw)
  83. sources = json.loads(sources_json)
  84. formats = [{
  85. 'format_id': '%s' % i,
  86. 'format_note': s.get('label'),
  87. 'url': s['file'],
  88. } for i, s in enumerate(sources)]
  89. for i, s in enumerate(sources):
  90. # Removing '.h264_*.mp4' gives the raw video, which is essentially
  91. # the same video without the LiveLeak logo at the top (see
  92. # https://github.com/rg3/youtube-dl/pull/4768)
  93. orig_url = re.sub(r'\.h264_.+?\.mp4', '', s['file'])
  94. if s['file'] != orig_url:
  95. formats.append({
  96. 'format_id': 'original-%s' % i,
  97. 'format_note': s.get('label'),
  98. 'url': orig_url,
  99. 'preference': 1,
  100. })
  101. self._sort_formats(formats)
  102. return {
  103. 'id': video_id,
  104. 'title': video_title,
  105. 'description': video_description,
  106. 'uploader': video_uploader,
  107. 'formats': formats,
  108. 'age_limit': age_limit,
  109. }