2016-10-02 20:39:18 +09:00
|
|
|
# coding: utf-8
|
2014-08-23 22:20:49 +09:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2016-03-17 10:02:18 +09:00
|
|
|
from ..utils import (
|
|
|
|
smuggle_url,
|
|
|
|
ExtractorError,
|
|
|
|
)
|
2014-08-23 22:20:49 +09:00
|
|
|
|
|
|
|
|
|
|
|
class SBSIE(InfoExtractor):
|
|
|
|
IE_DESC = 'sbs.com.au'
|
2021-01-06 21:41:07 +09:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?sbs\.com\.au/(?:ondemand(?:/video/(?:single/)?|.*?\bplay=)|news/(?:embeds/)?video/)(?P<id>[0-9]+)'
|
2014-08-23 22:20:49 +09:00
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
# Original URL is handled by the generic IE which finds the iframe:
|
|
|
|
# http://www.sbs.com.au/thefeed/blog/2014/08/21/dingo-conservation
|
|
|
|
'url': 'http://www.sbs.com.au/ondemand/video/single/320403011771/?source=drupal&vertical=thefeed',
|
|
|
|
'md5': '3150cf278965eeabb5b4cea1c963fe0a',
|
|
|
|
'info_dict': {
|
2021-01-06 21:41:07 +09:00
|
|
|
'id': '_rFBPRPO4pMR',
|
2014-09-21 23:08:38 +09:00
|
|
|
'ext': 'mp4',
|
2015-07-18 05:43:18 +09:00
|
|
|
'title': 'Dingo Conservation (The Feed)',
|
|
|
|
'description': 'md5:f250a9856fca50d22dec0b5b8015f8a5',
|
2017-01-02 21:08:07 +09:00
|
|
|
'thumbnail': r're:http://.*\.jpg',
|
2015-07-18 05:43:18 +09:00
|
|
|
'duration': 308,
|
2016-04-02 02:06:11 +09:00
|
|
|
'timestamp': 1408613220,
|
|
|
|
'upload_date': '20140821',
|
|
|
|
'uploader': 'SBSC',
|
2014-08-23 22:20:49 +09:00
|
|
|
},
|
2014-11-24 05:39:15 +09:00
|
|
|
}, {
|
2014-09-22 21:11:08 +09:00
|
|
|
'url': 'http://www.sbs.com.au/ondemand/video/320403011771/Dingo-Conservation-The-Feed',
|
|
|
|
'only_matching': True,
|
2015-07-18 05:43:18 +09:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.sbs.com.au/news/video/471395907773/The-Feed-July-9',
|
|
|
|
'only_matching': True,
|
2021-01-06 21:41:07 +09:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.sbs.com.au/ondemand/?play=1836638787723',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.sbs.com.au/ondemand/program/inside-windsor-castle?play=1283505731842',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.sbs.com.au/news/embeds/video/1840778819866',
|
|
|
|
'only_matching': True,
|
2014-08-23 22:20:49 +09:00
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2015-05-17 00:07:29 +09:00
|
|
|
video_id = self._match_id(url)
|
2016-03-17 10:02:18 +09:00
|
|
|
player_params = self._download_json(
|
|
|
|
'http://www.sbs.com.au/api/video_pdkvars/id/%s?form=json' % video_id, video_id)
|
|
|
|
|
|
|
|
error = player_params.get('error')
|
|
|
|
if error:
|
|
|
|
error_message = 'Sorry, The video you are looking for does not exist.'
|
|
|
|
video_data = error.get('results') or {}
|
|
|
|
error_code = error.get('errorCode')
|
|
|
|
if error_code == 'ComingSoon':
|
|
|
|
error_message = '%s is not yet available.' % video_data.get('title', '')
|
|
|
|
elif error_code in ('Forbidden', 'intranetAccessOnly'):
|
|
|
|
error_message = 'Sorry, This video cannot be accessed via this website'
|
|
|
|
elif error_code == 'Expired':
|
|
|
|
error_message = 'Sorry, %s is no longer available.' % video_data.get('title', '')
|
|
|
|
raise ExtractorError('%s said: %s' % (self.IE_NAME, error_message), expected=True)
|
2014-08-23 22:20:49 +09:00
|
|
|
|
2015-07-18 05:43:18 +09:00
|
|
|
urls = player_params['releaseUrls']
|
2019-05-11 05:56:22 +09:00
|
|
|
theplatform_url = (urls.get('progressive') or urls.get('html')
|
|
|
|
or urls.get('standard') or player_params['relatedItemsURL'])
|
2014-08-23 22:20:49 +09:00
|
|
|
|
|
|
|
return {
|
|
|
|
'_type': 'url_transparent',
|
2016-04-02 02:06:11 +09:00
|
|
|
'ie_key': 'ThePlatform',
|
2014-08-23 22:20:49 +09:00
|
|
|
'id': video_id,
|
2016-04-02 02:06:11 +09:00
|
|
|
'url': smuggle_url(self._proto_relative_url(theplatform_url), {'force_smil_url': True}),
|
2014-08-23 22:20:49 +09:00
|
|
|
}
|