2014-03-24 17:12:15 +01:00
|
|
|
from .common import InfoExtractor
|
2019-09-24 21:16:25 +02:00
|
|
|
from ..utils import (
|
|
|
|
determine_ext,
|
|
|
|
merge_dicts,
|
|
|
|
parse_duration,
|
|
|
|
url_or_none,
|
|
|
|
)
|
2014-03-24 17:12:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class BYUtvIE(InfoExtractor):
|
2017-12-13 17:14:30 +01:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?byutv\.org/(?:watch|player)/(?!event/)(?P<id>[0-9a-f-]+)(?:/(?P<display_id>[^/?#&]+))?'
|
2016-10-01 19:44:54 +02:00
|
|
|
_TESTS = [{
|
2019-05-10 22:05:34 +02:00
|
|
|
# ooyalaVOD
|
2014-11-05 15:43:53 +01:00
|
|
|
'url': 'http://www.byutv.org/watch/6587b9a3-89d2-42a6-a7f7-fd2f81840a7d/studio-c-season-5-episode-5',
|
2014-03-24 17:12:15 +01:00
|
|
|
'info_dict': {
|
2017-12-13 17:14:30 +01:00
|
|
|
'id': 'ZvanRocTpW-G5_yZFeltTAMv6jxOU9KH',
|
2016-10-01 19:44:54 +02:00
|
|
|
'display_id': 'studio-c-season-5-episode-5',
|
2014-03-24 17:12:15 +01:00
|
|
|
'ext': 'mp4',
|
2014-11-05 15:43:53 +01:00
|
|
|
'title': 'Season 5 Episode 5',
|
2017-12-13 17:14:30 +01:00
|
|
|
'description': 'md5:1d31dc18ef4f075b28f6a65937d22c65',
|
|
|
|
'thumbnail': r're:^https?://.*',
|
2015-12-04 16:18:02 +01:00
|
|
|
'duration': 1486.486,
|
2014-03-24 17:12:15 +01:00
|
|
|
},
|
2016-05-24 17:42:22 +02:00
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2016-05-24 12:24:29 +02:00
|
|
|
'add_ie': ['Ooyala'],
|
2019-04-15 00:30:46 +02:00
|
|
|
}, {
|
2019-05-10 22:05:34 +02:00
|
|
|
# dvr
|
|
|
|
'url': 'https://www.byutv.org/player/8f1dab9b-b243-47c8-b525-3e2d021a3451/byu-softball-pacific-vs-byu-41219---game-2',
|
2019-04-15 00:30:46 +02:00
|
|
|
'info_dict': {
|
2019-05-10 22:05:34 +02:00
|
|
|
'id': '8f1dab9b-b243-47c8-b525-3e2d021a3451',
|
|
|
|
'display_id': 'byu-softball-pacific-vs-byu-41219---game-2',
|
2019-04-15 00:30:46 +02:00
|
|
|
'ext': 'mp4',
|
2019-05-10 22:05:34 +02:00
|
|
|
'title': 'Pacific vs. BYU (4/12/19)',
|
|
|
|
'description': 'md5:1ac7b57cb9a78015910a4834790ce1f3',
|
|
|
|
'duration': 11645,
|
2019-04-15 00:30:46 +02:00
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': True
|
|
|
|
},
|
2016-10-01 19:44:54 +02:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.byutv.org/watch/6587b9a3-89d2-42a6-a7f7-fd2f81840a7d',
|
|
|
|
'only_matching': True,
|
2017-12-13 17:14:30 +01:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.byutv.org/player/27741493-dc83-40b0-8420-e7ae38a2ae98/byu-football-toledo-vs-byu-93016?listid=4fe0fee5-0d3c-4a29-b725-e4948627f472&listindex=0&q=toledo',
|
|
|
|
'only_matching': True,
|
2016-10-01 19:44:54 +02:00
|
|
|
}]
|
2014-03-24 17:12:15 +01:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2021-08-19 03:41:24 +02:00
|
|
|
mobj = self._match_valid_url(url)
|
2016-10-01 19:44:54 +02:00
|
|
|
video_id = mobj.group('id')
|
2019-05-10 22:05:34 +02:00
|
|
|
display_id = mobj.group('display_id') or video_id
|
2014-03-24 17:12:15 +01:00
|
|
|
|
2019-09-24 21:16:25 +02:00
|
|
|
video = self._download_json(
|
2019-05-10 22:05:34 +02:00
|
|
|
'https://api.byutv.org/api3/catalog/getvideosforcontent',
|
|
|
|
display_id, query={
|
2017-12-13 17:14:30 +01:00
|
|
|
'contentid': video_id,
|
2017-12-13 17:51:24 +01:00
|
|
|
'channel': 'byutv',
|
|
|
|
'x-byutv-context': 'web$US',
|
2017-12-13 17:14:30 +01:00
|
|
|
}, headers={
|
2017-12-13 17:51:24 +01:00
|
|
|
'x-byutv-context': 'web$US',
|
2017-12-13 17:14:30 +01:00
|
|
|
'x-byutv-platformkey': 'xsaaw9c7y5',
|
2019-04-15 00:30:46 +02:00
|
|
|
})
|
2016-10-01 19:44:54 +02:00
|
|
|
|
2019-09-24 21:16:25 +02:00
|
|
|
ep = video.get('ooyalaVOD')
|
2019-04-15 00:30:46 +02:00
|
|
|
if ep:
|
|
|
|
return {
|
|
|
|
'_type': 'url_transparent',
|
|
|
|
'ie_key': 'Ooyala',
|
|
|
|
'url': 'ooyala:%s' % ep['providerId'],
|
|
|
|
'id': video_id,
|
2019-05-10 22:05:34 +02:00
|
|
|
'display_id': display_id,
|
2019-04-15 00:30:46 +02:00
|
|
|
'title': ep.get('title'),
|
|
|
|
'description': ep.get('description'),
|
|
|
|
'thumbnail': ep.get('imageThumbnail'),
|
|
|
|
}
|
2019-05-10 22:05:34 +02:00
|
|
|
|
2019-09-24 21:16:25 +02:00
|
|
|
info = {}
|
|
|
|
formats = []
|
2021-04-18 08:40:39 +02:00
|
|
|
subtitles = {}
|
2019-09-24 21:16:25 +02:00
|
|
|
for format_id, ep in video.items():
|
|
|
|
if not isinstance(ep, dict):
|
|
|
|
continue
|
|
|
|
video_url = url_or_none(ep.get('videoUrl'))
|
|
|
|
if not video_url:
|
|
|
|
continue
|
|
|
|
ext = determine_ext(video_url)
|
|
|
|
if ext == 'm3u8':
|
2021-04-18 08:40:39 +02:00
|
|
|
m3u8_fmts, m3u8_subs = self._extract_m3u8_formats_and_subtitles(
|
2019-09-24 21:16:25 +02:00
|
|
|
video_url, video_id, 'mp4', entry_protocol='m3u8_native',
|
2021-04-18 08:40:39 +02:00
|
|
|
m3u8_id='hls', fatal=False)
|
|
|
|
formats.extend(m3u8_fmts)
|
|
|
|
subtitles = self._merge_subtitles(subtitles, m3u8_subs)
|
2019-09-24 21:16:25 +02:00
|
|
|
elif ext == 'mpd':
|
2021-04-18 08:40:39 +02:00
|
|
|
mpd_fmts, mpd_subs = self._extract_mpd_formats_and_subtitles(
|
|
|
|
video_url, video_id, mpd_id='dash', fatal=False)
|
|
|
|
formats.extend(mpd_fmts)
|
|
|
|
subtitles = self._merge_subtitles(subtitles, mpd_subs)
|
2019-09-24 21:16:25 +02:00
|
|
|
else:
|
|
|
|
formats.append({
|
|
|
|
'url': video_url,
|
|
|
|
'format_id': format_id,
|
|
|
|
})
|
|
|
|
merge_dicts(info, {
|
|
|
|
'title': ep.get('title'),
|
|
|
|
'description': ep.get('description'),
|
|
|
|
'thumbnail': ep.get('imageThumbnail'),
|
|
|
|
'duration': parse_duration(ep.get('length')),
|
|
|
|
})
|
2019-05-10 22:05:34 +02:00
|
|
|
self._sort_formats(formats)
|
2019-09-24 21:16:25 +02:00
|
|
|
|
|
|
|
return merge_dicts(info, {
|
2019-05-10 22:05:34 +02:00
|
|
|
'id': video_id,
|
|
|
|
'display_id': display_id,
|
2019-09-24 21:16:25 +02:00
|
|
|
'title': display_id,
|
2019-05-10 22:05:34 +02:00
|
|
|
'formats': formats,
|
2021-04-18 08:40:39 +02:00
|
|
|
'subtitles': subtitles,
|
2019-09-24 21:16:25 +02:00
|
|
|
})
|