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.

96 lines
3.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'^(?:http://)?(?:\w+\.)?liveleak\.com/view\?(?:.*?)i=(?P<video_id>[\w_]+)(?:.*)'
  8. _TESTS = [{
  9. 'url': 'http://www.liveleak.com/view?i=757_1364311680',
  10. 'md5': '0813c2430bea7a46bf13acf3406992f4',
  11. 'info_dict': {
  12. 'id': '757_1364311680',
  13. 'ext': 'mp4',
  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': 'd3f1367d14cc3c15bf24fbfbe04b9abf',
  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. mobj = re.match(self._VALID_URL, url)
  42. video_id = mobj.group('video_id')
  43. webpage = self._download_webpage(url, video_id)
  44. video_title = self._og_search_title(webpage).replace('LiveLeak.com -', '').strip()
  45. video_description = self._og_search_description(webpage)
  46. video_uploader = self._html_search_regex(
  47. r'By:.*?(\w+)</a>', webpage, 'uploader', fatal=False)
  48. age_limit = int_or_none(self._search_regex(
  49. r'you confirm that you are ([0-9]+) years and over.',
  50. webpage, 'age limit', default=None))
  51. sources_raw = self._search_regex(
  52. r'(?s)sources:\s*(\[.*?\]),', webpage, 'video URLs', default=None)
  53. if sources_raw is None:
  54. alt_source = self._search_regex(
  55. r'(file: ".*?"),', webpage, 'video URL', default=None)
  56. if alt_source:
  57. sources_raw = '[{ %s}]' % alt_source
  58. else:
  59. # Maybe an embed?
  60. embed_url = self._search_regex(
  61. r'<iframe[^>]+src="(http://www.prochan.com/embed\?[^"]+)"',
  62. webpage, 'embed URL')
  63. return {
  64. '_type': 'url_transparent',
  65. 'url': embed_url,
  66. 'id': video_id,
  67. 'title': video_title,
  68. 'description': video_description,
  69. 'uploader': video_uploader,
  70. 'age_limit': age_limit,
  71. }
  72. sources_json = re.sub(r'\s([a-z]+):\s', r'"\1": ', sources_raw)
  73. sources = json.loads(sources_json)
  74. formats = [{
  75. 'format_note': s.get('label'),
  76. 'url': s['file'],
  77. } for s in sources]
  78. self._sort_formats(formats)
  79. return {
  80. 'id': video_id,
  81. 'title': video_title,
  82. 'description': video_description,
  83. 'uploader': video_uploader,
  84. 'formats': formats,
  85. 'age_limit': age_limit,
  86. }