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.

105 lines
4.1 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. def _real_extract(self, url):
  41. video_id = self._match_id(url)
  42. webpage = self._download_webpage(url, video_id)
  43. video_title = self._og_search_title(webpage).replace('LiveLeak.com -', '').strip()
  44. video_description = self._og_search_description(webpage)
  45. video_uploader = self._html_search_regex(
  46. r'By:.*?(\w+)</a>', webpage, 'uploader', fatal=False)
  47. age_limit = int_or_none(self._search_regex(
  48. r'you confirm that you are ([0-9]+) years and over.',
  49. webpage, 'age limit', default=None))
  50. sources_raw = self._search_regex(
  51. r'(?s)sources:\s*(\[.*?\]),', webpage, 'video URLs', default=None)
  52. if sources_raw is None:
  53. alt_source = self._search_regex(
  54. r'(file: ".*?"),', webpage, 'video URL', default=None)
  55. if alt_source:
  56. sources_raw = '[{ %s}]' % alt_source
  57. else:
  58. # Maybe an embed?
  59. embed_url = self._search_regex(
  60. r'<iframe[^>]+src="(http://www.prochan.com/embed\?[^"]+)"',
  61. webpage, 'embed URL')
  62. return {
  63. '_type': 'url_transparent',
  64. 'url': embed_url,
  65. 'id': video_id,
  66. 'title': video_title,
  67. 'description': video_description,
  68. 'uploader': video_uploader,
  69. 'age_limit': age_limit,
  70. }
  71. sources_json = re.sub(r'\s([a-z]+):\s', r'"\1": ', sources_raw)
  72. sources = json.loads(sources_json)
  73. formats = [{
  74. 'format_id': '%s' % i,
  75. 'format_note': s.get('label'),
  76. 'url': s['file'],
  77. } for i, s in enumerate(sources)]
  78. for i, s in enumerate(sources):
  79. orig_url = s['file'].replace('.h264_base.mp4', '')
  80. if s['file'] != orig_url:
  81. formats.append({
  82. 'format_id': 'original-%s' % i,
  83. 'format_note': s.get('label'),
  84. 'url': orig_url,
  85. 'preference': 1,
  86. })
  87. self._sort_formats(formats)
  88. return {
  89. 'id': video_id,
  90. 'title': video_title,
  91. 'description': video_description,
  92. 'uploader': video_uploader,
  93. 'formats': formats,
  94. 'age_limit': age_limit,
  95. }