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.

67 lines
2.7KB

  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. smuggle_url,
  6. ExtractorError,
  7. )
  8. class SBSIE(InfoExtractor):
  9. IE_DESC = 'sbs.com.au'
  10. _VALID_URL = r'https?://(?:www\.)?sbs\.com\.au/(?:ondemand|news)/video/(?:single/)?(?P<id>[0-9]+)'
  11. _TESTS = [{
  12. # Original URL is handled by the generic IE which finds the iframe:
  13. # http://www.sbs.com.au/thefeed/blog/2014/08/21/dingo-conservation
  14. 'url': 'http://www.sbs.com.au/ondemand/video/single/320403011771/?source=drupal&vertical=thefeed',
  15. 'md5': '3150cf278965eeabb5b4cea1c963fe0a',
  16. 'info_dict': {
  17. 'id': '320403011771',
  18. 'ext': 'mp4',
  19. 'title': 'Dingo Conservation (The Feed)',
  20. 'description': 'md5:f250a9856fca50d22dec0b5b8015f8a5',
  21. 'thumbnail': r're:http://.*\.jpg',
  22. 'duration': 308,
  23. 'timestamp': 1408613220,
  24. 'upload_date': '20140821',
  25. 'uploader': 'SBSC',
  26. },
  27. }, {
  28. 'url': 'http://www.sbs.com.au/ondemand/video/320403011771/Dingo-Conservation-The-Feed',
  29. 'only_matching': True,
  30. }, {
  31. 'url': 'http://www.sbs.com.au/news/video/471395907773/The-Feed-July-9',
  32. 'only_matching': True,
  33. }]
  34. def _real_extract(self, url):
  35. video_id = self._match_id(url)
  36. player_params = self._download_json(
  37. 'http://www.sbs.com.au/api/video_pdkvars/id/%s?form=json' % video_id, video_id)
  38. error = player_params.get('error')
  39. if error:
  40. error_message = 'Sorry, The video you are looking for does not exist.'
  41. video_data = error.get('results') or {}
  42. error_code = error.get('errorCode')
  43. if error_code == 'ComingSoon':
  44. error_message = '%s is not yet available.' % video_data.get('title', '')
  45. elif error_code in ('Forbidden', 'intranetAccessOnly'):
  46. error_message = 'Sorry, This video cannot be accessed via this website'
  47. elif error_code == 'Expired':
  48. error_message = 'Sorry, %s is no longer available.' % video_data.get('title', '')
  49. raise ExtractorError('%s said: %s' % (self.IE_NAME, error_message), expected=True)
  50. urls = player_params['releaseUrls']
  51. theplatform_url = (urls.get('progressive') or urls.get('html')
  52. or urls.get('standard') or player_params['relatedItemsURL'])
  53. return {
  54. '_type': 'url_transparent',
  55. 'ie_key': 'ThePlatform',
  56. 'id': video_id,
  57. 'url': smuggle_url(self._proto_relative_url(theplatform_url), {'force_smil_url': True}),
  58. }