6 from .common
import InfoExtractor
22 class ABCIE(InfoExtractor
):
23 IE_NAME
= 'abc.net.au'
24 _VALID_URL
= r
'https?://(?:www\.)?abc\.net\.au/(?:news|btn)/(?:[^/]+/){1,4}(?P<id>\d{5,})'
27 'url': 'http://www.abc.net.au/news/2014-11-05/australia-to-staff-ebola-treatment-centre-in-sierra-leone/5868334',
28 'md5': 'cb3dd03b18455a661071ee1e28344d9f',
32 'title': 'Australia to help staff Ebola treatment centre in Sierra Leone',
33 'description': 'md5:809ad29c67a05f54eb41f2a105693a67',
35 'skip': 'this video has expired',
37 'url': 'http://www.abc.net.au/news/2015-08-17/warren-entsch-introduces-same-sex-marriage-bill/6702326',
38 'md5': '4ebd61bdc82d9a8b722f64f1f4b4d121',
42 'upload_date': '20150816',
43 'uploader': 'ABC News (Australia)',
44 'description': 'Government backbencher Warren Entsch introduces a cross-party sponsored bill to legalise same-sex marriage, saying the bill is designed to promote "an inclusive Australia, not a divided one.". Read more here: http://ab.co/1Mwc6ef',
45 'uploader_id': 'NewsOnABC',
46 'title': 'Marriage Equality: Warren Entsch introduces same sex marriage bill',
48 'add_ie': ['Youtube'],
49 'skip': 'Not accessible from Travis CI server',
51 'url': 'http://www.abc.net.au/news/2015-10-23/nab-lifts-interest-rates-following-westpac-and-cba/6880080',
52 'md5': 'b96eee7c9edf4fc5a358a0252881cc1f',
56 'title': 'NAB lifts interest rates, following Westpac and CBA',
57 'description': 'md5:f13d8edc81e462fce4a0437c7dc04728',
60 'url': 'http://www.abc.net.au/news/2015-10-19/6866214',
61 'only_matching': True,
63 'url': 'https://www.abc.net.au/btn/classroom/wwi-centenary/10527914',
67 'title': 'WWI Centenary',
68 'description': 'md5:c2379ec0ca84072e86b446e536954546',
71 'url': 'https://www.abc.net.au/news/programs/the-world/2020-06-10/black-lives-matter-protests-spawn-support-for/12342074',
75 'title': 'Black Lives Matter protests spawn support for Papuans in Indonesia',
76 'description': 'md5:2961a17dc53abc558589ccd0fb8edd6f',
79 'url': 'https://www.abc.net.au/btn/newsbreak/btn-newsbreak-20200814/12560476',
83 'title': 'Fortnite Banned From Apple and Google App Stores',
84 'description': 'md5:a6df3f36ce8f816b74af4bd6462f5651',
85 'upload_date': '20200813',
86 'uploader': 'Behind the News',
87 'uploader_id': 'behindthenews',
90 'url': 'https://www.abc.net.au/news/2023-06-25/wagner-boss-orders-troops-back-to-bases-to-avoid-bloodshed/102520540',
93 'title': 'Wagner Group retreating from Russia, leader Prigozhin to move to Belarus',
95 'description': 'Wagner troops leave Rostov-on-Don and\xa0Yevgeny Prigozhin will move to Belarus under a deal brokered by Belarusian President Alexander Lukashenko to end the mutiny.',
96 'thumbnail': 'https://live-production.wcms.abc-cdn.net.au/0c170f5b57f0105c432f366c0e8e267b?impolicy=wcms_crop_resize&cropH=2813&cropW=5000&xPos=0&yPos=249&width=862&height=485',
100 def _real_extract(self
, url
):
101 video_id
= self
._match
_id
(url
)
102 webpage
= self
._download
_webpage
(url
, video_id
)
104 mobj
= re
.search(r
'<a\s+href="(?P<url>[^"]+)"\s+data-duration="\d+"\s+title="Download audio directly">', webpage
)
106 urls_info
= mobj
.groupdict()
110 mobj
= re
.search(r
'<a href="(?P<url>http://www\.youtube\.com/watch\?v=[^"]+)"><span><strong>External Link:</strong>',
113 mobj
= re
.search(r
'<iframe width="100%" src="(?P<url>//www\.youtube-nocookie\.com/embed/[^?"]+)', webpage
)
115 urls_info
= mobj
.groupdict()
120 mobj
= re
.search(r
'(?P<type>)"(?:sources|files|renditions)":\s*(?P<json_data>\[[^\]]+\])', webpage
)
123 r
'inline(?P<type>Video|Audio|YouTube)Data\.push\((?P<json_data>[^)]+)\);',
126 expired
= self
._html
_search
_regex
(r
'(?s)class="expired-(?:video|audio)".+?<span>(.+?)</span>', webpage
, 'expired', None)
128 raise ExtractorError(f
'{self.IE_NAME} said: {expired}', expected
=True)
129 raise ExtractorError('Unable to extract video urls')
131 urls_info
= self
._parse
_json
(
132 mobj
.group('json_data'), video_id
, transform_source
=js_to_json
)
133 youtube
= mobj
.group('type') == 'YouTube'
134 video
= mobj
.group('type') == 'Video' or traverse_obj(
135 urls_info
, (0, ('contentType', 'MIMEType')), get_all
=False) == 'video/mp4'
137 if not isinstance(urls_info
, list):
138 urls_info
= [urls_info
]
141 return self
.playlist_result([
142 self
.url_result(url_info
['url']) for url_info
in urls_info
])
145 for url_info
in urls_info
:
146 height
= int_or_none(url_info
.get('height'))
147 bitrate
= int_or_none(url_info
.get('bitrate'))
148 width
= int_or_none(url_info
.get('width'))
150 mobj
= re
.search(r
'_(?:(?P<height>\d+)|(?P<bitrate>\d+)k)\.mp4$', url_info
['url'])
152 height_from_url
= mobj
.group('height')
154 height
= height
or int_or_none(height_from_url
)
155 width
= width
or int_or_none(url_info
.get('label'))
157 bitrate
= bitrate
or int_or_none(mobj
.group('bitrate'))
158 format_id
= str_or_none(url_info
.get('label'))
160 'url': url_info
['url'],
161 'vcodec': url_info
.get('codec') if video
else 'none',
165 'filesize': int_or_none(url_info
.get('filesize')),
166 'format_id': format_id
,
171 'title': self
._og
_search
_title
(webpage
),
173 'description': self
._og
_search
_description
(webpage
),
174 'thumbnail': self
._og
_search
_thumbnail
(webpage
),
178 class ABCIViewIE(InfoExtractor
):
179 IE_NAME
= 'abc.net.au:iview'
180 _VALID_URL
= r
'https?://iview\.abc\.net\.au/(?:[^/]+/)*video/(?P<id>[^/?#]+)'
181 _GEO_COUNTRIES
= ['AU']
184 'url': 'https://iview.abc.net.au/show/utopia/series/1/video/CO1211V001S00',
185 'md5': '52a942bfd7a0b79a6bfe9b4ce6c9d0ed',
187 'id': 'CO1211V001S00',
189 'title': 'Series 1 Ep 1 Wood For The Trees',
191 'description': 'md5:0cfb2c183c1b952d1548fd65c8a95c00',
192 'upload_date': '20230726',
193 'uploader_id': 'abc1',
194 'series_id': 'CO1211V',
195 'episode_id': 'CO1211V001S00',
197 'season': 'Season 1',
199 'episode': 'Wood For The Trees',
200 'thumbnail': 'https://cdn.iview.abc.net.au/thumbs/i/co/CO1211V001S00_5ad8353f4df09_1280.jpg',
201 'timestamp': 1690403700,
204 'skip_download': True,
207 'note': 'No episode name',
208 'url': 'https://iview.abc.net.au/show/gruen/series/11/video/LE1927H001S00',
209 'md5': '67715ce3c78426b11ba167d875ac6abf',
211 'id': 'LE1927H001S00',
213 'title': 'Series 11 Ep 1',
215 'description': 'md5:52cc744ad35045baf6aded2ce7287f67',
216 'upload_date': '20190925',
217 'uploader_id': 'abc1',
218 'series_id': 'LE1927H',
219 'episode_id': 'LE1927H001S00',
221 'season': 'Season 11',
223 'episode': 'Episode 1',
224 'thumbnail': 'https://cdn.iview.abc.net.au/thumbs/i/le/LE1927H001S00_5d954fbd79e25_1280.jpg',
225 'timestamp': 1569445289,
227 'expected_warnings': ['Ignoring subtitle tracks found in the HLS manifest'],
229 'skip_download': True,
232 'note': 'No episode number',
233 'url': 'https://iview.abc.net.au/show/four-corners/series/2022/video/NC2203H039S00',
234 'md5': '77cb7d8434440e3b28fbebe331c2456a',
236 'id': 'NC2203H039S00',
238 'title': 'Series 2022 Locking Up Kids',
239 'series': 'Four Corners',
240 'description': 'md5:54829ca108846d1a70e1fcce2853e720',
241 'upload_date': '20221114',
242 'uploader_id': 'abc1',
243 'series_id': 'NC2203H',
244 'episode_id': 'NC2203H039S00',
245 'season_number': 2022,
246 'season': 'Season 2022',
247 'episode': 'Locking Up Kids',
248 'thumbnail': 'https://cdn.iview.abc.net.au/thumbs/i/nc/NC2203H039S00_636d8a0944a22_1920.jpg',
249 'timestamp': 1668460497,
252 'expected_warnings': ['Ignoring subtitle tracks found in the HLS manifest'],
254 'skip_download': True,
257 'note': 'No episode name or number',
258 'url': 'https://iview.abc.net.au/show/landline/series/2021/video/RF2004Q043S00',
259 'md5': '2e17dec06b13cc81dc119d2565289396',
261 'id': 'RF2004Q043S00',
263 'title': 'Series 2021',
264 'series': 'Landline',
265 'description': 'md5:c9f30d9c0c914a7fd23842f6240be014',
266 'upload_date': '20211205',
267 'uploader_id': 'abc1',
268 'series_id': 'RF2004Q',
269 'episode_id': 'RF2004Q043S00',
270 'season_number': 2021,
271 'season': 'Season 2021',
272 'thumbnail': 'https://cdn.iview.abc.net.au/thumbs/i/rf/RF2004Q043S00_61a950639dbc0_1920.jpg',
273 'timestamp': 1638710705,
276 'expected_warnings': ['Ignoring subtitle tracks found in the HLS manifest'],
278 'skip_download': True,
282 def _real_extract(self
, url
):
283 video_id
= self
._match
_id
(url
)
284 video_params
= self
._download
_json
(
285 'https://iview.abc.net.au/api/programs/' + video_id
, video_id
)
286 title
= unescapeHTML(video_params
.get('title') or video_params
['seriesTitle'])
287 stream
= next(s
for s
in video_params
['playlist'] if s
.get('type') in ('program', 'livestream'))
289 house_number
= video_params
.get('episodeHouseNumber') or video_id
290 path
= f
'/auth/hls/sign?ts={int(time.time())}&hn={house_number}&d=android-tablet'
292 b
'android.content.res.Resources',
293 path
.encode(), hashlib
.sha256
).hexdigest()
294 token
= self
._download
_webpage
(
295 f
'http://iview.abc.net.au{path}&sig={sig}', video_id
)
297 def tokenize_url(url
, token
):
298 return update_url_query(url
, {
302 for sd
in ('1080', '720', 'sd', 'sd-low'):
304 stream
, lambda x
: x
['streams']['hls'][sd
], str)
307 formats
= self
._extract
_m
3u8_formats
(
308 tokenize_url(sd_url
, token
), video_id
, 'mp4',
309 entry_protocol
='m3u8_native', m3u8_id
='hls', fatal
=False)
314 src_vtt
= stream
.get('captions', {}).get('src-vtt')
321 is_live
= video_params
.get('livestream') == '1'
326 'description': video_params
.get('description'),
327 'thumbnail': video_params
.get('thumbnail'),
328 'duration': int_or_none(video_params
.get('eventDuration')),
329 'timestamp': parse_iso8601(video_params
.get('pubDate'), ' '),
330 'series': unescapeHTML(video_params
.get('seriesTitle')),
331 'series_id': video_params
.get('seriesHouseNumber') or video_id
[:7],
332 'season_number': int_or_none(self
._search
_regex
(
333 r
'\bSeries\s+(\d+)\b', title
, 'season number', default
=None)),
334 'episode_number': int_or_none(self
._search
_regex
(
335 r
'\bEp\s+(\d+)\b', title
, 'episode number', default
=None)),
336 'episode_id': house_number
,
337 'episode': self
._search
_regex
(
338 r
'^(?:Series\s+\d+)?\s*(?:Ep\s+\d+)?\s*(.*)$', title
, 'episode', default
='') or None,
339 'uploader_id': video_params
.get('channel'),
341 'subtitles': subtitles
,
346 class ABCIViewShowSeriesIE(InfoExtractor
):
347 IE_NAME
= 'abc.net.au:iview:showseries'
348 _VALID_URL
= r
'https?://iview\.abc\.net\.au/show/(?P<id>[^/]+)(?:/series/\d+)?$'
349 _GEO_COUNTRIES
= ['AU']
352 'url': 'https://iview.abc.net.au/show/upper-middle-bogan',
356 'description': 'md5:93119346c24a7c322d446d8eece430ff',
357 'series': 'Upper Middle Bogan',
358 'season': 'Series 1',
359 'thumbnail': r
're:^https?://cdn\.iview\.abc\.net\.au/thumbs/.*\.jpg$',
363 'url': 'https://iview.abc.net.au/show/upper-middle-bogan',
365 'id': 'CO1108V001S00',
367 'title': 'Series 1 Ep 1 I\'m A Swan',
368 'description': 'md5:7b676758c1de11a30b79b4d301e8da93',
369 'series': 'Upper Middle Bogan',
370 'uploader_id': 'abc1',
371 'upload_date': '20210630',
372 'timestamp': 1625036400,
376 'skip_download': 'm3u8',
379 # 'videoEpisodes' is a dict with `items` key
380 'url': 'https://iview.abc.net.au/show/7-30-mark-humphries-satire',
384 'description': 'Satirist Mark Humphries brings his unique perspective on current political events for 7.30.',
385 'series': '7.30 Mark Humphries Satire',
386 'season': 'Episodes',
387 'thumbnail': r
're:^https?://cdn\.iview\.abc\.net\.au/thumbs/.*\.jpg$',
389 'playlist_count': 15,
392 def _real_extract(self
, url
):
393 show_id
= self
._match
_id
(url
)
394 webpage
= self
._download
_webpage
(url
, show_id
)
395 webpage_data
= self
._search
_regex
(
396 r
'window\.__INITIAL_STATE__\s*=\s*[\'"](.+?)[\'"]\s
*;',
397 webpage, 'initial state
')
398 video_data = self._parse_json(
399 unescapeHTML(webpage_data).encode().decode('unicode_escape
'), show_id)
400 video_data = video_data['route
']['pageData
']['_embedded
']
402 highlight = try_get(video_data, lambda x: x['highlightVideo
']['shareUrl
'])
403 if not self._yes_playlist(show_id, bool(highlight), video_label='highlight video
'):
404 return self.url_result(highlight, ie=ABCIViewIE.ie_key())
406 series = video_data['selectedSeries
']
409 'entries
': [self.url_result(episode_url, ABCIViewIE)
410 for episode_url in traverse_obj(series, (
411 '_embedded
', 'videoEpisodes
', (None, 'items
'), ..., 'shareUrl
', {url_or_none}))],
412 'id': series.get('id'),
413 'title
': dict_get(series, ('title
', 'displaySubtitle
')),
414 'description
': series.get('description
'),
415 'series
': dict_get(series, ('showTitle
', 'displayTitle
')),
416 'season
': dict_get(series, ('title
', 'displaySubtitle
')),
417 'thumbnail
': traverse_obj(
418 series, 'thumbnail
', ('images
', lambda _, v: v['name
'] == 'seriesThumbnail
', 'url
'), get_all=False),