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.

73 lines
2.5 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. 'md5': '29f4c5e5a61ca39dfd7e8348a75d0aad',
  21. 'info_dict': {
  22. 'id': 'e402820827',
  23. 'ext': 'mp4',
  24. 'title': 'Please Use This Song (Jon Lajoie)',
  25. 'description': 'Please use this to sell something. www.jonlajoie.com',
  26. 'thumbnail': 're:^http:.*\.jpg$',
  27. },
  28. }, {
  29. 'url': 'http://www.funnyordie.com/articles/ebf5e34fc8/10-hours-of-walking-in-nyc-as-a-man',
  30. 'only_matching': True,
  31. }]
  32. def _real_extract(self, url):
  33. mobj = re.match(self._VALID_URL, url)
  34. video_id = mobj.group('id')
  35. webpage = self._download_webpage(url, video_id)
  36. links = re.findall(r'<source src="([^"]+/v)[^"]+\.([^"]+)" type=\'video', webpage)
  37. if not links:
  38. raise ExtractorError('No media links available for %s' % video_id)
  39. links.sort(key=lambda link: 1 if link[1] == 'mp4' else 0)
  40. bitrates = self._html_search_regex(r'<source src="[^"]+/v,((?:\d+,)+)\.mp4\.csmil', webpage, 'video bitrates')
  41. bitrates = [int(b) for b in bitrates.rstrip(',').split(',')]
  42. bitrates.sort()
  43. formats = []
  44. for bitrate in bitrates:
  45. for link in links:
  46. formats.append({
  47. 'url': '%s%d.%s' % (link[0], bitrate, link[1]),
  48. 'format_id': '%s-%d' % (link[1], bitrate),
  49. 'vbr': bitrate,
  50. })
  51. post_json = self._search_regex(
  52. r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details')
  53. post = json.loads(post_json)
  54. return {
  55. 'id': video_id,
  56. 'title': post['name'],
  57. 'description': post.get('description'),
  58. 'thumbnail': post.get('picture'),
  59. 'formats': formats,
  60. }