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.

72 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. '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. bitrates = self._html_search_regex(r'<source src="[^"]+/v,((?:\d+,)+)\.mp4\.csmil', webpage, 'video bitrates')
  40. bitrates = [int(b) for b in bitrates.rstrip(',').split(',')]
  41. bitrates.sort()
  42. formats = []
  43. for bitrate in bitrates:
  44. for link in links:
  45. formats.append({
  46. 'url': '%s%d.%s' % (link[0], bitrate, link[1]),
  47. 'format_id': '%s-%d' % (link[1], bitrate),
  48. 'vbr': bitrate,
  49. })
  50. post_json = self._search_regex(
  51. r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details')
  52. post = json.loads(post_json)
  53. return {
  54. 'id': video_id,
  55. 'title': post['name'],
  56. 'description': post.get('description'),
  57. 'thumbnail': post.get('picture'),
  58. 'formats': formats,
  59. }