]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/byutv.py
9ed6efe799475fe3edead12ea3d10b077e18e126
[yt-dlp.git] / yt_dlp / extractor / byutv.py
1 from .common import InfoExtractor
2 from ..utils import (
3 determine_ext,
4 merge_dicts,
5 parse_duration,
6 url_or_none,
7 )
8
9
10 class BYUtvIE(InfoExtractor):
11 _VALID_URL = r'https?://(?:www\.)?byutv\.org/(?:watch|player)/(?!event/)(?P<id>[0-9a-f-]+)(?:/(?P<display_id>[^/?#&]+))?'
12 _TESTS = [{
13 # ooyalaVOD
14 'url': 'http://www.byutv.org/watch/6587b9a3-89d2-42a6-a7f7-fd2f81840a7d/studio-c-season-5-episode-5',
15 'info_dict': {
16 'id': 'ZvanRocTpW-G5_yZFeltTAMv6jxOU9KH',
17 'display_id': 'studio-c-season-5-episode-5',
18 'ext': 'mp4',
19 'title': 'Season 5 Episode 5',
20 'description': 'md5:1d31dc18ef4f075b28f6a65937d22c65',
21 'thumbnail': r're:^https?://.*',
22 'duration': 1486.486,
23 },
24 'params': {
25 'skip_download': True,
26 },
27 'add_ie': ['Ooyala'],
28 }, {
29 # dvr
30 'url': 'https://www.byutv.org/player/8f1dab9b-b243-47c8-b525-3e2d021a3451/byu-softball-pacific-vs-byu-41219---game-2',
31 'info_dict': {
32 'id': '8f1dab9b-b243-47c8-b525-3e2d021a3451',
33 'display_id': 'byu-softball-pacific-vs-byu-41219---game-2',
34 'ext': 'mp4',
35 'title': 'Pacific vs. BYU (4/12/19)',
36 'description': 'md5:1ac7b57cb9a78015910a4834790ce1f3',
37 'duration': 11645,
38 },
39 'params': {
40 'skip_download': True
41 },
42 }, {
43 'url': 'http://www.byutv.org/watch/6587b9a3-89d2-42a6-a7f7-fd2f81840a7d',
44 'only_matching': True,
45 }, {
46 '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',
47 'only_matching': True,
48 }]
49
50 def _real_extract(self, url):
51 mobj = self._match_valid_url(url)
52 video_id = mobj.group('id')
53 display_id = mobj.group('display_id') or video_id
54
55 video = self._download_json(
56 'https://api.byutv.org/api3/catalog/getvideosforcontent',
57 display_id, query={
58 'contentid': video_id,
59 'channel': 'byutv',
60 'x-byutv-context': 'web$US',
61 }, headers={
62 'x-byutv-context': 'web$US',
63 'x-byutv-platformkey': 'xsaaw9c7y5',
64 })
65
66 ep = video.get('ooyalaVOD')
67 if ep:
68 return {
69 '_type': 'url_transparent',
70 'ie_key': 'Ooyala',
71 'url': 'ooyala:%s' % ep['providerId'],
72 'id': video_id,
73 'display_id': display_id,
74 'title': ep.get('title'),
75 'description': ep.get('description'),
76 'thumbnail': ep.get('imageThumbnail'),
77 }
78
79 info = {}
80 formats = []
81 subtitles = {}
82 for format_id, ep in video.items():
83 if not isinstance(ep, dict):
84 continue
85 video_url = url_or_none(ep.get('videoUrl'))
86 if not video_url:
87 continue
88 ext = determine_ext(video_url)
89 if ext == 'm3u8':
90 m3u8_fmts, m3u8_subs = self._extract_m3u8_formats_and_subtitles(
91 video_url, video_id, 'mp4', entry_protocol='m3u8_native',
92 m3u8_id='hls', fatal=False)
93 formats.extend(m3u8_fmts)
94 subtitles = self._merge_subtitles(subtitles, m3u8_subs)
95 elif ext == 'mpd':
96 mpd_fmts, mpd_subs = self._extract_mpd_formats_and_subtitles(
97 video_url, video_id, mpd_id='dash', fatal=False)
98 formats.extend(mpd_fmts)
99 subtitles = self._merge_subtitles(subtitles, mpd_subs)
100 else:
101 formats.append({
102 'url': video_url,
103 'format_id': format_id,
104 })
105 merge_dicts(info, {
106 'title': ep.get('title'),
107 'description': ep.get('description'),
108 'thumbnail': ep.get('imageThumbnail'),
109 'duration': parse_duration(ep.get('length')),
110 })
111
112 return merge_dicts(info, {
113 'id': video_id,
114 'display_id': display_id,
115 'title': display_id,
116 'formats': formats,
117 'subtitles': subtitles,
118 })