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.

59 lines
2.1 KiB

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import json
  4. import re
  5. from .common import InfoExtractor
  6. from ..utils import (
  7. js_to_json,
  8. remove_end,
  9. )
  10. class SBSIE(InfoExtractor):
  11. IE_DESC = 'sbs.com.au'
  12. _VALID_URL = r'https?://(?:www\.)?sbs\.com\.au/ondemand/video/(?:single/)?(?P<id>[0-9]+)'
  13. _TESTS = [{
  14. # Original URL is handled by the generic IE which finds the iframe:
  15. # http://www.sbs.com.au/thefeed/blog/2014/08/21/dingo-conservation
  16. 'url': 'http://www.sbs.com.au/ondemand/video/single/320403011771/?source=drupal&vertical=thefeed',
  17. 'md5': '3150cf278965eeabb5b4cea1c963fe0a',
  18. 'info_dict': {
  19. 'id': '320403011771',
  20. 'ext': 'mp4',
  21. 'title': 'Dingo Conservation',
  22. 'description': 'Dingoes are on the brink of extinction; most of the animals we think are dingoes are in fact crossbred with wild dogs. This family run a dingo conservation park to prevent their extinction',
  23. 'thumbnail': 're:http://.*\.jpg',
  24. },
  25. 'add_ies': ['generic'],
  26. }, {
  27. 'url': 'http://www.sbs.com.au/ondemand/video/320403011771/Dingo-Conservation-The-Feed',
  28. 'only_matching': True,
  29. }]
  30. def _real_extract(self, url):
  31. mobj = re.match(self._VALID_URL, url)
  32. video_id = mobj.group('id')
  33. webpage = self._download_webpage(url, video_id)
  34. release_urls_json = js_to_json(self._search_regex(
  35. r'(?s)playerParams\.releaseUrls\s*=\s*(\{.*?\n\});\n',
  36. webpage, ''))
  37. release_urls = json.loads(release_urls_json)
  38. theplatform_url = (
  39. release_urls.get('progressive') or release_urls.get('standard'))
  40. title = remove_end(self._og_search_title(webpage), ' (The Feed)')
  41. description = self._html_search_meta('description', webpage)
  42. thumbnail = self._og_search_thumbnail(webpage)
  43. return {
  44. '_type': 'url_transparent',
  45. 'id': video_id,
  46. 'url': theplatform_url,
  47. 'title': title,
  48. 'description': description,
  49. 'thumbnail': thumbnail,
  50. }