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