]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/abc.py
[iwara] Fix extraction after relaunch
[yt-dlp.git] / youtube_dl / extractor / abc.py
CommitLineData
64ce58db
JMF
1from __future__ import unicode_literals
2
3import re
64ce58db
JMF
4
5from .common import InfoExtractor
17a64763
YCH
6from ..utils import (
7 ExtractorError,
8 js_to_json,
c0a65687 9 int_or_none,
55d119e2 10 parse_iso8601,
17a64763 11)
64ce58db
JMF
12
13
14class ABCIE(InfoExtractor):
15 IE_NAME = 'abc.net.au'
5886b38d 16 _VALID_URL = r'https?://www\.abc\.net\.au/news/(?:[^/]+/){1,2}(?P<id>\d+)'
64ce58db 17
17a64763 18 _TESTS = [{
732c848c
MK
19 'url': 'http://www.abc.net.au/news/2014-11-05/australia-to-staff-ebola-treatment-centre-in-sierra-leone/5868334',
20 'md5': 'cb3dd03b18455a661071ee1e28344d9f',
64ce58db 21 'info_dict': {
732c848c 22 'id': '5868334',
64ce58db 23 'ext': 'mp4',
732c848c
MK
24 'title': 'Australia to help staff Ebola treatment centre in Sierra Leone',
25 'description': 'md5:809ad29c67a05f54eb41f2a105693a67',
64ce58db 26 },
5c5a3ecf 27 'skip': 'this video has expired',
17a64763
YCH
28 }, {
29 'url': 'http://www.abc.net.au/news/2015-08-17/warren-entsch-introduces-same-sex-marriage-bill/6702326',
30 'md5': 'db2a5369238b51f9811ad815b69dc086',
31 'info_dict': {
32 'id': 'NvqvPeNZsHU',
33 'ext': 'mp4',
34 'upload_date': '20150816',
35 'uploader': 'ABC News (Australia)',
36 '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',
37 'uploader_id': 'NewsOnABC',
38 'title': 'Marriage Equality: Warren Entsch introduces same sex marriage bill',
39 },
40 'add_ie': ['Youtube'],
5c5a3ecf 41 'skip': 'Not accessible from Travis CI server',
7687b354 42 }, {
43 'url': 'http://www.abc.net.au/news/2015-10-23/nab-lifts-interest-rates-following-westpac-and-cba/6880080',
44 'md5': 'b96eee7c9edf4fc5a358a0252881cc1f',
45 'info_dict': {
46 'id': '6880080',
47 'ext': 'mp3',
48 'title': 'NAB lifts interest rates, following Westpac and CBA',
49 'description': 'md5:f13d8edc81e462fce4a0437c7dc04728',
50 },
d97da29d
JMF
51 }, {
52 'url': 'http://www.abc.net.au/news/2015-10-19/6866214',
53 'only_matching': True,
17a64763 54 }]
64ce58db
JMF
55
56 def _real_extract(self, url):
ed9266db 57 video_id = self._match_id(url)
64ce58db
JMF
58 webpage = self._download_webpage(url, video_id)
59
17a64763 60 mobj = re.search(
7687b354 61 r'inline(?P<type>Video|Audio|YouTube)Data\.push\((?P<json_data>[^)]+)\);',
17a64763
YCH
62 webpage)
63 if mobj is None:
5c5a3ecf 64 expired = self._html_search_regex(r'(?s)class="expired-(?:video|audio)".+?<span>(.+?)</span>', webpage, 'expired', None)
65 if expired:
66 raise ExtractorError('%s said: %s' % (self.IE_NAME, expired), expected=True)
17a64763
YCH
67 raise ExtractorError('Unable to extract video urls')
68
69 urls_info = self._parse_json(
70 mobj.group('json_data'), video_id, transform_source=js_to_json)
71
72 if not isinstance(urls_info, list):
73 urls_info = [urls_info]
74
75 if mobj.group('type') == 'YouTube':
76 return self.playlist_result([
77 self.url_result(url_info['url']) for url_info in urls_info])
78
64ce58db
JMF
79 formats = [{
80 'url': url_info['url'],
7687b354 81 'vcodec': url_info.get('codec') if mobj.group('type') == 'Video' else 'none',
c0a65687
YCH
82 'width': int_or_none(url_info.get('width')),
83 'height': int_or_none(url_info.get('height')),
84 'tbr': int_or_none(url_info.get('bitrate')),
85 'filesize': int_or_none(url_info.get('filesize')),
64ce58db 86 } for url_info in urls_info]
7687b354 87
64ce58db
JMF
88 self._sort_formats(formats)
89
90 return {
91 'id': video_id,
92 'title': self._og_search_title(webpage),
93 'formats': formats,
94 'description': self._og_search_description(webpage),
95 'thumbnail': self._og_search_thumbnail(webpage),
96 }
55d119e2
RA
97
98
99class ABCIViewIE(InfoExtractor):
100 IE_NAME = 'abc.net.au:iview'
101 _VALID_URL = r'https?://iview\.abc\.net\.au/programs/[^/]+/(?P<id>[^/?#]+)'
102
103 _TESTS = [{
104 'url': 'http://iview.abc.net.au/programs/gardening-australia/FA1505V024S00',
105 'md5': '979d10b2939101f0d27a06b79edad536',
106 'info_dict': {
107 'id': 'FA1505V024S00',
108 'ext': 'mp4',
109 'title': 'Series 27 Ep 24',
110 'description': 'md5:b28baeae7504d1148e1d2f0e3ed3c15d',
111 'upload_date': '20160820',
112 'uploader_id': 'abc1',
113 'timestamp': 1471719600,
114 },
115 }]
116
117 def _real_extract(self, url):
118 video_id = self._match_id(url)
119 webpage = self._download_webpage(url, video_id)
120 video_params = self._parse_json(self._search_regex(
121 r'videoParams\s*=\s*({.+?});', webpage, 'video params'), video_id)
122 title = video_params['title']
123 stream = next(s for s in video_params['playlist'] if s.get('type') == 'program')
124
ad316425 125 formats = self._extract_akamai_formats(stream['hds-unmetered'], video_id)
55d119e2
RA
126 self._sort_formats(formats)
127
128 subtitles = {}
129 src_vtt = stream.get('captions', {}).get('src-vtt')
130 if src_vtt:
131 subtitles['en'] = [{
132 'url': src_vtt,
133 'ext': 'vtt',
134 }]
135
136 return {
137 'id': video_id,
138 'title': title,
139 'description': self._html_search_meta(['og:description', 'twitter:description'], webpage),
140 'thumbnail': self._html_search_meta(['og:image', 'twitter:image:src'], webpage),
141 'duration': int_or_none(video_params.get('eventDuration')),
142 'timestamp': parse_iso8601(video_params.get('pubDate'), ' '),
143 'series': video_params.get('seriesTitle'),
144 'series_id': video_params.get('seriesHouseNumber') or video_id[:7],
145 'episode_number': int_or_none(self._html_search_meta('episodeNumber', webpage)),
146 'episode': self._html_search_meta('episode_title', webpage),
147 'uploader_id': video_params.get('channel'),
148 'formats': formats,
149 'subtitles': subtitles,
150 }