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.

86 lines
3.0 KiB

  1. from __future__ import unicode_literals
  2. import json
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import ExtractorError
  6. class FunnyOrDieIE(InfoExtractor):
  7. _VALID_URL = r'https?://(?:www\.)?funnyordie\.com/(?P<type>embed|articles|videos)/(?P<id>[0-9a-f]+)(?:$|[?#/])'
  8. _TESTS = [{
  9. 'url': 'http://www.funnyordie.com/videos/0732f586d7/heart-shaped-box-literal-video-version',
  10. 'md5': 'bcd81e0c4f26189ee09be362ad6e6ba9',
  11. 'info_dict': {
  12. 'id': '0732f586d7',
  13. 'ext': 'mp4',
  14. 'title': 'Heart-Shaped Box: Literal Video Version',
  15. 'description': 'md5:ea09a01bc9a1c46d9ab696c01747c338',
  16. 'thumbnail': 're:^http:.*\.jpg$',
  17. },
  18. }, {
  19. 'url': 'http://www.funnyordie.com/embed/e402820827',
  20. 'info_dict': {
  21. 'id': 'e402820827',
  22. 'ext': 'mp4',
  23. 'title': 'Please Use This Song (Jon Lajoie)',
  24. 'description': 'Please use this to sell something. www.jonlajoie.com',
  25. 'thumbnail': 're:^http:.*\.jpg$',
  26. },
  27. }, {
  28. 'url': 'http://www.funnyordie.com/articles/ebf5e34fc8/10-hours-of-walking-in-nyc-as-a-man',
  29. 'only_matching': True,
  30. }]
  31. def _real_extract(self, url):
  32. mobj = re.match(self._VALID_URL, url)
  33. video_id = mobj.group('id')
  34. webpage = self._download_webpage(url, video_id)
  35. links = re.findall(r'<source src="([^"]+/v)[^"]+\.([^"]+)" type=\'video', webpage)
  36. if not links:
  37. raise ExtractorError('No media links available for %s' % video_id)
  38. links.sort(key=lambda link: 1 if link[1] == 'mp4' else 0)
  39. m3u8_url = self._search_regex(
  40. r'<source[^>]+src=(["\'])(?P<url>.+?/master\.m3u8)\1',
  41. webpage, 'm3u8 url', default=None, group='url')
  42. formats = []
  43. formats.extend(self._extract_m3u8_formats(
  44. m3u8_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False))
  45. bitrates = [int(bitrate) for bitrate in re.findall(r'[,/]v(\d+)[,/]', m3u8_url)]
  46. bitrates.sort()
  47. for bitrate in bitrates:
  48. for link in links:
  49. formats.append({
  50. 'url': self._proto_relative_url('%s%d.%s' % (link[0], bitrate, link[1])),
  51. 'format_id': '%s-%d' % (link[1], bitrate),
  52. 'vbr': bitrate,
  53. })
  54. subtitles = {}
  55. for src, src_lang in re.findall(r'<track kind="captions" src="([^"]+)" srclang="([^"]+)"', webpage):
  56. subtitles[src_lang] = [{
  57. 'ext': src.split('/')[-1],
  58. 'url': 'http://www.funnyordie.com%s' % src,
  59. }]
  60. post_json = self._search_regex(
  61. r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details')
  62. post = json.loads(post_json)
  63. return {
  64. 'id': video_id,
  65. 'title': post['name'],
  66. 'description': post.get('description'),
  67. 'thumbnail': post.get('picture'),
  68. 'formats': formats,
  69. 'subtitles': subtitles,
  70. }