2019-04-07 11:39:48 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
2019-11-02 17:13:31 +00:00
|
|
|
compat_str,
|
2019-04-07 11:39:48 +00:00
|
|
|
float_or_none,
|
|
|
|
int_or_none,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class STVPlayerIE(InfoExtractor):
|
|
|
|
IE_NAME = 'stv:player'
|
|
|
|
_VALID_URL = r'https?://player\.stv\.tv/(?P<type>episode|video)/(?P<id>[a-z0-9]{4})'
|
|
|
|
_TEST = {
|
2019-11-02 17:13:31 +00:00
|
|
|
'url': 'https://player.stv.tv/video/4gwd/emmerdale/60-seconds-on-set-with-laura-norton/',
|
|
|
|
'md5': '5adf9439c31d554f8be0707c7abe7e0a',
|
2019-04-07 11:39:48 +00:00
|
|
|
'info_dict': {
|
2019-11-02 17:13:31 +00:00
|
|
|
'id': '5333973339001',
|
2019-04-07 11:39:48 +00:00
|
|
|
'ext': 'mp4',
|
2019-11-02 17:13:31 +00:00
|
|
|
'upload_date': '20170301',
|
|
|
|
'title': '60 seconds on set with Laura Norton',
|
|
|
|
'description': "How many questions can Laura - a.k.a Kerry Wyatt - answer in 60 seconds? Let\'s find out!",
|
|
|
|
'timestamp': 1488388054,
|
2019-04-07 11:39:48 +00:00
|
|
|
'uploader_id': '1486976045',
|
|
|
|
},
|
|
|
|
'skip': 'this resource is unavailable outside of the UK',
|
|
|
|
}
|
2019-11-02 17:13:31 +00:00
|
|
|
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1486976045/default_default/index.html?videoId=%s'
|
2019-04-07 11:39:48 +00:00
|
|
|
_PTYPE_MAP = {
|
|
|
|
'episode': 'episodes',
|
|
|
|
'video': 'shortform',
|
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
ptype, video_id = re.match(self._VALID_URL, url).groups()
|
2019-11-02 17:13:31 +00:00
|
|
|
resp = self._download_json(
|
|
|
|
'https://player.api.stv.tv/v1/%s/%s' % (self._PTYPE_MAP[ptype], video_id),
|
|
|
|
video_id)
|
2019-04-07 11:39:48 +00:00
|
|
|
|
2019-11-02 17:13:31 +00:00
|
|
|
result = resp['results']
|
|
|
|
video = result['video']
|
|
|
|
video_id = compat_str(video['id'])
|
2019-04-07 11:39:48 +00:00
|
|
|
|
2019-11-02 17:13:31 +00:00
|
|
|
subtitles = {}
|
|
|
|
_subtitles = result.get('_subtitles') or {}
|
|
|
|
for ext, sub_url in _subtitles.items():
|
|
|
|
subtitles.setdefault('en', []).append({
|
|
|
|
'ext': 'vtt' if ext == 'webvtt' else ext,
|
|
|
|
'url': sub_url,
|
|
|
|
})
|
2019-04-07 11:39:48 +00:00
|
|
|
|
2019-11-02 17:13:31 +00:00
|
|
|
programme = result.get('programme') or {}
|
2019-04-07 11:39:48 +00:00
|
|
|
|
2019-11-02 17:13:31 +00:00
|
|
|
return {
|
2019-04-07 11:39:48 +00:00
|
|
|
'_type': 'url_transparent',
|
|
|
|
'id': video_id,
|
2019-11-02 17:13:31 +00:00
|
|
|
'url': self.BRIGHTCOVE_URL_TEMPLATE % video_id,
|
|
|
|
'description': result.get('summary'),
|
|
|
|
'duration': float_or_none(video.get('length'), 1000),
|
|
|
|
'subtitles': subtitles,
|
|
|
|
'view_count': int_or_none(result.get('views')),
|
|
|
|
'series': programme.get('name') or programme.get('shortName'),
|
2019-04-07 11:39:48 +00:00
|
|
|
'ie_key': 'BrightcoveNew',
|
2019-11-02 17:13:31 +00:00
|
|
|
}
|