]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/filmon.py
[extractor] Deprecate `_sort_formats`
[yt-dlp.git] / yt_dlp / extractor / filmon.py
1 from .common import InfoExtractor
2 from ..compat import (
3 compat_str,
4 compat_HTTPError,
5 )
6 from ..utils import (
7 qualities,
8 strip_or_none,
9 int_or_none,
10 ExtractorError,
11 )
12
13
14 class FilmOnIE(InfoExtractor):
15 IE_NAME = 'filmon'
16 _VALID_URL = r'(?:https?://(?:www\.)?filmon\.com/vod/view/|filmon:)(?P<id>\d+)'
17 _TESTS = [{
18 'url': 'https://www.filmon.com/vod/view/24869-0-plan-9-from-outer-space',
19 'info_dict': {
20 'id': '24869',
21 'ext': 'mp4',
22 'title': 'Plan 9 From Outer Space',
23 'description': 'Dead human, zombies and vampires',
24 },
25 }, {
26 'url': 'https://www.filmon.com/vod/view/2825-1-popeye-series-1',
27 'info_dict': {
28 'id': '2825',
29 'title': 'Popeye Series 1',
30 'description': 'The original series of Popeye.',
31 },
32 'playlist_mincount': 8,
33 }]
34
35 def _real_extract(self, url):
36 video_id = self._match_id(url)
37
38 try:
39 response = self._download_json(
40 'https://www.filmon.com/api/vod/movie?id=%s' % video_id,
41 video_id)['response']
42 except ExtractorError as e:
43 if isinstance(e.cause, compat_HTTPError):
44 errmsg = self._parse_json(e.cause.read().decode(), video_id)['reason']
45 raise ExtractorError('%s said: %s' % (self.IE_NAME, errmsg), expected=True)
46 raise
47
48 title = response['title']
49 description = strip_or_none(response.get('description'))
50
51 if response.get('type_id') == 1:
52 entries = [self.url_result('filmon:' + episode_id) for episode_id in response.get('episodes', [])]
53 return self.playlist_result(entries, video_id, title, description)
54
55 QUALITY = qualities(('low', 'high'))
56 formats = []
57 for format_id, stream in response.get('streams', {}).items():
58 stream_url = stream.get('url')
59 if not stream_url:
60 continue
61 formats.append({
62 'format_id': format_id,
63 'url': stream_url,
64 'ext': 'mp4',
65 'quality': QUALITY(stream.get('quality')),
66 'protocol': 'm3u8_native',
67 })
68
69 thumbnails = []
70 poster = response.get('poster', {})
71 thumbs = poster.get('thumbs', {})
72 thumbs['poster'] = poster
73 for thumb_id, thumb in thumbs.items():
74 thumb_url = thumb.get('url')
75 if not thumb_url:
76 continue
77 thumbnails.append({
78 'id': thumb_id,
79 'url': thumb_url,
80 'width': int_or_none(thumb.get('width')),
81 'height': int_or_none(thumb.get('height')),
82 })
83
84 return {
85 'id': video_id,
86 'title': title,
87 'formats': formats,
88 'description': description,
89 'thumbnails': thumbnails,
90 }
91
92
93 class FilmOnChannelIE(InfoExtractor):
94 IE_NAME = 'filmon:channel'
95 _VALID_URL = r'https?://(?:www\.)?filmon\.com/(?:tv|channel)/(?P<id>[a-z0-9-]+)'
96 _TESTS = [{
97 # VOD
98 'url': 'http://www.filmon.com/tv/sports-haters',
99 'info_dict': {
100 'id': '4190',
101 'ext': 'mp4',
102 'title': 'Sports Haters',
103 'description': 'md5:dabcb4c1d9cfc77085612f1a85f8275d',
104 },
105 }, {
106 # LIVE
107 'url': 'https://www.filmon.com/channel/filmon-sports',
108 'only_matching': True,
109 }, {
110 'url': 'https://www.filmon.com/tv/2894',
111 'only_matching': True,
112 }]
113
114 _THUMBNAIL_RES = [
115 ('logo', 56, 28),
116 ('big_logo', 106, 106),
117 ('extra_big_logo', 300, 300),
118 ]
119
120 def _real_extract(self, url):
121 channel_id = self._match_id(url)
122
123 try:
124 channel_data = self._download_json(
125 'http://www.filmon.com/api-v2/channel/' + channel_id, channel_id)['data']
126 except ExtractorError as e:
127 if isinstance(e.cause, compat_HTTPError):
128 errmsg = self._parse_json(e.cause.read().decode(), channel_id)['message']
129 raise ExtractorError('%s said: %s' % (self.IE_NAME, errmsg), expected=True)
130 raise
131
132 channel_id = compat_str(channel_data['id'])
133 is_live = not channel_data.get('is_vod') and not channel_data.get('is_vox')
134 title = channel_data['title']
135
136 QUALITY = qualities(('low', 'high'))
137 formats = []
138 for stream in channel_data.get('streams', []):
139 stream_url = stream.get('url')
140 if not stream_url:
141 continue
142 if not is_live:
143 formats.extend(self._extract_wowza_formats(
144 stream_url, channel_id, skip_protocols=['dash', 'rtmp', 'rtsp']))
145 continue
146 quality = stream.get('quality')
147 formats.append({
148 'format_id': quality,
149 # this is an m3u8 stream, but we are deliberately not using _extract_m3u8_formats
150 # because it doesn't have bitrate variants anyway
151 'url': stream_url,
152 'ext': 'mp4',
153 'quality': QUALITY(quality),
154 })
155
156 thumbnails = []
157 for name, width, height in self._THUMBNAIL_RES:
158 thumbnails.append({
159 'id': name,
160 'url': 'http://static.filmon.com/assets/channels/%s/%s.png' % (channel_id, name),
161 'width': width,
162 'height': height,
163 })
164
165 return {
166 'id': channel_id,
167 'display_id': channel_data.get('alias'),
168 'title': title,
169 'description': channel_data.get('description'),
170 'thumbnails': thumbnails,
171 'formats': formats,
172 'is_live': is_live,
173 }