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.

62 lines
2.5 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  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': 're:http://.*\.jpg',
  22. 'duration': 308,
  23. },
  24. }, {
  25. 'url': 'http://www.sbs.com.au/ondemand/video/320403011771/Dingo-Conservation-The-Feed',
  26. 'only_matching': True,
  27. }, {
  28. 'url': 'http://www.sbs.com.au/news/video/471395907773/The-Feed-July-9',
  29. 'only_matching': True,
  30. }]
  31. def _real_extract(self, url):
  32. video_id = self._match_id(url)
  33. player_params = self._download_json(
  34. 'http://www.sbs.com.au/api/video_pdkvars/id/%s?form=json' % video_id, video_id)
  35. error = player_params.get('error')
  36. if error:
  37. error_message = 'Sorry, The video you are looking for does not exist.'
  38. video_data = error.get('results') or {}
  39. error_code = error.get('errorCode')
  40. if error_code == 'ComingSoon':
  41. error_message = '%s is not yet available.' % video_data.get('title', '')
  42. elif error_code in ('Forbidden', 'intranetAccessOnly'):
  43. error_message = 'Sorry, This video cannot be accessed via this website'
  44. elif error_code == 'Expired':
  45. error_message = 'Sorry, %s is no longer available.' % video_data.get('title', '')
  46. raise ExtractorError('%s said: %s' % (self.IE_NAME, error_message), expected=True)
  47. urls = player_params['releaseUrls']
  48. theplatform_url = (urls.get('progressive') or urls.get('html') or
  49. urls.get('standard') or player_params['relatedItemsURL'])
  50. return {
  51. '_type': 'url_transparent',
  52. 'id': video_id,
  53. 'url': smuggle_url(theplatform_url, {'force_smil_url': True}),
  54. }