]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/drtv.py
69effba58371426ec6813066424e86aa976b9ce8
2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
16 class DRTVIE(InfoExtractor
):
17 _VALID_URL
= r
'https?://(?:www\.)?dr\.dk/(?:tv/se|nyheder|radio/ondemand)/(?:[^/]+/)*(?P<id>[\da-z-]+)(?:[/#?]|$)'
19 _GEO_COUNTRIES
= ['DK']
22 'url': 'https://www.dr.dk/tv/se/boern/ultra/klassen-ultra/klassen-darlig-taber-10',
23 'md5': '7ae17b4e18eb5d29212f424a7511c184',
25 'id': 'klassen-darlig-taber-10',
27 'title': 'Klassen - Dårlig taber (10)',
28 'description': 'md5:815fe1b7fa656ed80580f31e8b3c79aa',
29 'timestamp': 1471991907,
30 'upload_date': '20160823',
35 'url': 'https://www.dr.dk/nyheder/indland/live-christianias-rydning-af-pusher-street-er-i-gang',
37 'id': 'christiania-pusher-street-ryddes-drdkrjpo',
39 'title': 'LIVE Christianias rydning af Pusher Street er i gang',
40 'description': 'md5:2a71898b15057e9b97334f61d04e6eb5',
41 'timestamp': 1472800279,
42 'upload_date': '20160902',
46 'skip_download': True,
49 # with SignLanguage formats
50 'url': 'https://www.dr.dk/tv/se/historien-om-danmark/-/historien-om-danmark-stenalder',
52 'id': 'historien-om-danmark-stenalder',
54 'title': 'Historien om Danmark: Stenalder (1)',
55 'description': 'md5:8c66dcbc1669bbc6f873879880f37f2a',
56 'timestamp': 1490401996,
57 'upload_date': '20170325',
59 'formats': 'mincount:20',
62 'skip_download': True,
66 def _real_extract(self
, url
):
67 video_id
= self
._match
_id
(url
)
69 webpage
= self
._download
_webpage
(url
, video_id
)
71 if '>Programmet er ikke længere tilgængeligt' in webpage
:
73 'Video %s is not available' % video_id
, expected
=True)
75 video_id
= self
._search
_regex
(
76 (r
'data-(?:material-identifier|episode-slug)="([^"]+)"',
77 r
'data-resource="[^>"]+mu/programcard/expanded/([^"]+)"'),
80 programcard
= self
._download
_json
(
81 'http://www.dr.dk/mu/programcard/expanded/%s' % video_id
,
82 video_id
, 'Downloading video JSON')
83 data
= programcard
['Data'][0]
85 title
= remove_end(self
._og
_search
_title
(
86 webpage
, default
=None), ' | TV | DR') or data
['Title']
87 description
= self
._og
_search
_description
(
88 webpage
, default
=None) or data
.get('Description')
90 timestamp
= parse_iso8601(data
.get('CreatedTime'))
95 restricted_to_denmark
= False
100 for asset
in data
['Assets']:
101 kind
= asset
.get('Kind')
103 thumbnail
= asset
.get('Uri')
104 elif kind
in ('VideoResource', 'AudioResource'):
105 duration
= float_or_none(asset
.get('DurationInMilliseconds'), 1000)
106 restricted_to_denmark
= asset
.get('RestrictedToDenmark')
107 asset_target
= asset
.get('Target')
108 for link
in asset
.get('Links', []):
109 uri
= link
.get('Uri')
112 target
= link
.get('Target')
113 format_id
= target
or ''
115 if asset_target
in ('SpokenSubtitles', 'SignLanguage'):
117 format_id
+= '-%s' % asset_target
119 f4m_formats
= self
._extract
_f
4m
_formats
(
120 uri
+ '?hdcore=3.3.0&plugin=aasp-3.3.0.99.43',
121 video_id
, preference
, f4m_id
=format_id
, fatal
=False)
122 if kind
== 'AudioResource':
123 for f
in f4m_formats
:
125 formats
.extend(f4m_formats
)
126 elif target
== 'HLS':
127 formats
.extend(self
._extract
_m
3u8_formats
(
128 uri
, video_id
, 'mp4', entry_protocol
='m3u8_native',
129 preference
=preference
, m3u8_id
=format_id
,
132 bitrate
= link
.get('Bitrate')
134 format_id
+= '-%s' % bitrate
137 'format_id': format_id
,
138 'tbr': int_or_none(bitrate
),
139 'ext': link
.get('FileFormat'),
140 'vcodec': 'none' if kind
== 'AudioResource' else None,
142 subtitles_list
= asset
.get('SubtitlesList')
143 if isinstance(subtitles_list
, list):
147 for subs
in subtitles_list
:
148 if not subs
.get('Uri'):
150 lang
= subs
.get('Language') or 'da'
151 subtitles
.setdefault(LANGS
.get(lang
, lang
), []).append({
153 'ext': mimetype2ext(subs
.get('MimeType')) or 'vtt'
156 if not formats
and restricted_to_denmark
:
157 self
.raise_geo_restricted(
158 'Unfortunately, DR is not allowed to show this program outside Denmark.',
159 countries
=self
._GEO
_COUNTRIES
)
161 self
._sort
_formats
(formats
)
166 'description': description
,
167 'thumbnail': thumbnail
,
168 'timestamp': timestamp
,
169 'duration': duration
,
171 'subtitles': subtitles
,
175 class DRTVLiveIE(InfoExtractor
):
176 IE_NAME
= 'drtv:live'
177 _VALID_URL
= r
'https?://(?:www\.)?dr\.dk/(?:tv|TV)/live/(?P<id>[\da-z-]+)'
178 _GEO_COUNTRIES
= ['DK']
180 'url': 'https://www.dr.dk/tv/live/dr1',
184 'title': 're:^DR1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
188 'skip_download': True,
192 def _real_extract(self
, url
):
193 channel_id
= self
._match
_id
(url
)
194 channel_data
= self
._download
_json
(
195 'https://www.dr.dk/mu-online/api/1.0/channel/' + channel_id
,
197 title
= self
._live
_title
(channel_data
['Title'])
200 for streaming_server
in channel_data
.get('StreamingServers', []):
201 server
= streaming_server
.get('Server')
204 link_type
= streaming_server
.get('LinkType')
205 for quality
in streaming_server
.get('Qualities', []):
206 for stream
in quality
.get('Streams', []):
207 stream_path
= stream
.get('Stream')
210 stream_url
= update_url_query(
211 '%s/%s' % (server
, stream_path
), {'b': ''})
212 if link_type
== 'HLS':
213 formats
.extend(self
._extract
_m
3u8_formats
(
214 stream_url
, channel_id
, 'mp4',
215 m3u8_id
=link_type
, fatal
=False, live
=True))
216 elif link_type
== 'HDS':
217 formats
.extend(self
._extract
_f
4m
_formats
(update_url_query(
218 '%s/%s' % (server
, stream_path
), {'hdcore': '3.7.0'}),
219 channel_id
, f4m_id
=link_type
, fatal
=False))
220 self
._sort
_formats
(formats
)
225 'thumbnail': channel_data
.get('PrimaryImageUri'),