]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/common.py
[docs,cleanup] Improve docs and minor cleanup
[yt-dlp.git] / yt_dlp / extractor / common.py
CommitLineData
fd475508 1# coding: utf-8
6a3828fd 2from __future__ import unicode_literals
f1a9d64e 3
d6983cb4 4import base64
f4b1c7ad 5import datetime
3ec05685 6import hashlib
cc16383f 7import itertools
3d3538e4 8import json
4094b6e3 9import netrc
d6983cb4 10import os
773f291d 11import random
d6983cb4 12import re
d6983cb4 13import sys
4094b6e3 14import time
1bac3455 15import math
d6983cb4 16
8c25f81b 17from ..compat import (
6c22cee6 18 compat_cookiejar_Cookie,
f7ad7160 19 compat_cookies_SimpleCookie,
ee0ba927 20 compat_etree_Element,
e9c0cdd3 21 compat_etree_fromstring,
0001fcb5 22 compat_expanduser,
e64b7569 23 compat_getpass,
d6983cb4 24 compat_http_client,
e9c0cdd3
YCH
25 compat_os_name,
26 compat_str,
d6983cb4 27 compat_urllib_error,
98763ee3 28 compat_urllib_parse_unquote,
15707c7e 29 compat_urllib_parse_urlencode,
41d06b04 30 compat_urllib_request,
f0b5d6af 31 compat_urlparse,
e01c3d2e 32 compat_xml_parse_error,
8c25f81b 33)
eb8a4433 34from ..downloader import FileDownloader
48107c19
S
35from ..downloader.f4m import (
36 get_base_url,
37 remove_encrypted_media,
38)
8c25f81b 39from ..utils import (
05900629 40 age_restricted,
02dc0a36 41 base_url,
08f2a92c 42 bug_reports_message,
d6983cb4
PH
43 clean_html,
44 compiled_regex_type,
70f0f5a8 45 determine_ext,
46b18f23 46 determine_protocol,
d493f15c 47 dict_get,
9b9c5355 48 error_to_compat_str,
46b18f23 49 extract_attributes,
b868936c 50 ExtractorError,
97f4aecf 51 fix_xml_ampersands,
b14f3a4c 52 float_or_none,
b868936c 53 format_field,
773f291d
S
54 GeoRestrictedError,
55 GeoUtils,
31bb8d3f 56 int_or_none,
a4a554a7 57 js_to_json,
0685d972 58 JSON_LD_RE,
46b18f23 59 mimetype2ext,
3158150c 60 network_exceptions,
b868936c 61 NO_DEFAULT,
46b18f23 62 orderedSet,
d493f15c 63 parse_bitrate,
46b18f23
JH
64 parse_codecs,
65 parse_duration,
4ca2a3cf 66 parse_iso8601,
46b18f23 67 parse_m3u8_attributes,
d493f15c 68 parse_resolution,
55b3e45b 69 RegexNotFoundError,
46b18f23 70 sanitize_filename,
b868936c 71 sanitized_Request,
d493f15c 72 str_or_none,
ce5b9040 73 str_to_int,
f856816b 74 strip_or_none,
5d3a0e79 75 traverse_obj,
f38de77f 76 unescapeHTML,
0db3bae8 77 UnsupportedError,
647eab45 78 unified_strdate,
6b3a3098 79 unified_timestamp,
46b18f23
JH
80 update_Request,
81 update_url_query,
a107193e 82 url_basename,
bebef109 83 url_or_none,
b868936c 84 urljoin,
6606817a 85 variadic,
a6571f10 86 xpath_element,
8d6765cf
S
87 xpath_text,
88 xpath_with_ns,
d6983cb4 89)
c342041f 90
d6983cb4
PH
91
92class InfoExtractor(object):
93 """Information Extractor class.
94
95 Information extractors are the classes that, given a URL, extract
96 information about the video (or videos) the URL refers to. This
97 information includes the real video URL, the video title, author and
98 others. The information is stored in a dictionary which is then
5d380852 99 passed to the YoutubeDL. The YoutubeDL processes this
d6983cb4
PH
100 information possibly downloading the video to the file system, among
101 other possible outcomes.
102
cf0649f8 103 The type field determines the type of the result.
fed5d032
PH
104 By far the most common value (and the default if _type is missing) is
105 "video", which indicates a single video.
106
107 For a video, the dictionaries must include the following fields:
d6983cb4
PH
108
109 id: Video identifier.
d6983cb4 110 title: Video title, unescaped.
d67b0b15 111
f49d89ee 112 Additionally, it must contain either a formats entry or a url one:
d67b0b15 113
f49d89ee
PH
114 formats: A list of dictionaries for each format available, ordered
115 from worst to best quality.
116
117 Potential fields:
c790e93a
S
118 * url The mandatory URL representing the media:
119 for plain file media - HTTP URL of this file,
120 for RTMP - RTMP URL,
121 for HLS - URL of the M3U8 media playlist,
122 for HDS - URL of the F4M manifest,
79d2077e
S
123 for DASH
124 - HTTP URL to plain file media (in case of
125 unfragmented media)
126 - URL of the MPD manifest or base URL
127 representing the media if MPD manifest
8ed7a233 128 is parsed from a string (in case of
79d2077e 129 fragmented media)
c790e93a 130 for MSS - URL of the ISM manifest.
86f4d14f
S
131 * manifest_url
132 The URL of the manifest file in case of
c790e93a
S
133 fragmented media:
134 for HLS - URL of the M3U8 master playlist,
135 for HDS - URL of the F4M manifest,
136 for DASH - URL of the MPD manifest,
137 for MSS - URL of the ISM manifest.
10952eb2 138 * ext Will be calculated from URL if missing
d67b0b15
PH
139 * format A human-readable description of the format
140 ("mp4 container with h264/opus").
141 Calculated from the format_id, width, height.
142 and format_note fields if missing.
143 * format_id A short description of the format
5d4f3985
PH
144 ("mp4_h264_opus" or "19").
145 Technically optional, but strongly recommended.
d67b0b15
PH
146 * format_note Additional info about the format
147 ("3D" or "DASH video")
148 * width Width of the video, if known
149 * height Height of the video, if known
f49d89ee 150 * resolution Textual description of width and height
176f1866 151 * dynamic_range The dynamic range of the video. One of:
152 "SDR" (None), "HDR10", "HDR10+, "HDR12", "HLG, "DV"
7217e148 153 * tbr Average bitrate of audio and video in KBit/s
d67b0b15
PH
154 * abr Average audio bitrate in KBit/s
155 * acodec Name of the audio codec in use
dd27fd17 156 * asr Audio sampling rate in Hertz
d67b0b15 157 * vbr Average video bitrate in KBit/s
fbb21cf5 158 * fps Frame rate
d67b0b15 159 * vcodec Name of the video codec in use
1394ce65 160 * container Name of the container format
d67b0b15 161 * filesize The number of bytes, if known in advance
9732d77e 162 * filesize_approx An estimate for the number of bytes
d67b0b15 163 * player_url SWF Player URL (used for rtmpdump).
c7deaa4c
PH
164 * protocol The protocol that will be used for the actual
165 download, lower-case.
0fa9a1e2 166 "http", "https", "rtsp", "rtmp", "rtmp_ffmpeg", "rtmpe",
af7d5a63 167 "m3u8", "m3u8_native" or "http_dash_segments".
c58c2d63
S
168 * fragment_base_url
169 Base URL for fragments. Each fragment's path
170 value (if present) will be relative to
171 this URL.
172 * fragments A list of fragments of a fragmented media.
173 Each fragment entry must contain either an url
174 or a path. If an url is present it should be
175 considered by a client. Otherwise both path and
176 fragment_base_url must be present. Here is
177 the list of all potential fields:
178 * "url" - fragment's URL
179 * "path" - fragment's path relative to
180 fragment_base_url
a0d5077c
S
181 * "duration" (optional, int or float)
182 * "filesize" (optional, int)
f49d89ee 183 * preference Order number of this format. If this field is
08d13955 184 present and not None, the formats get sorted
38d63d84 185 by this field, regardless of all other values.
f49d89ee
PH
186 -1 for default (order by other properties),
187 -2 or smaller for less than default.
e65566a9
PH
188 < -1000 to hide the format (if there is
189 another one which is strictly better)
32f90364
PH
190 * language Language code, e.g. "de" or "en-US".
191 * language_preference Is this in the language mentioned in
192 the URL?
aff2f4f4
PH
193 10 if it's what the URL is about,
194 -1 for default (don't know),
195 -10 otherwise, other values reserved for now.
5d73273f
PH
196 * quality Order number of the video quality of this
197 format, irrespective of the file format.
198 -1 for default (order by other properties),
199 -2 or smaller for less than default.
c64ed2a3
PH
200 * source_preference Order number for this video source
201 (quality takes higher priority)
202 -1 for default (order by other properties),
203 -2 or smaller for less than default.
d769be6c
PH
204 * http_headers A dictionary of additional HTTP headers
205 to add to the request.
6271f1ca 206 * stretched_ratio If given and not 1, indicates that the
3dee7826
PH
207 video's pixels are not square.
208 width : height ratio as float.
209 * no_resume The server does not support resuming the
210 (HTTP or RTMP) download. Boolean.
88acdbc2 211 * has_drm The format has DRM and cannot be downloaded. Boolean
00c97e3e
S
212 * downloader_options A dictionary of downloader options as
213 described in FileDownloader
3b1fe47d 214 RTMP formats can also have the additional fields: page_url,
215 app, play_path, tc_url, flash_version, rtmp_live, rtmp_conn,
216 rtmp_protocol, rtmp_real_time
3dee7826 217
c0ba0f48 218 url: Final video URL.
d6983cb4 219 ext: Video filename extension.
d67b0b15
PH
220 format: The video format, defaults to ext (used for --get-format)
221 player_url: SWF Player URL (used for rtmpdump).
2f5865cc 222
d6983cb4
PH
223 The following fields are optional:
224
f5e43bc6 225 alt_title: A secondary title of the video.
0afef30b
PH
226 display_id An alternative identifier for the video, not necessarily
227 unique, but available before title. Typically, id is
228 something like "4234987", title "Dancing naked mole rats",
229 and display_id "dancing-naked-mole-rats"
d5519808 230 thumbnails: A list of dictionaries, with the following entries:
cfb56d1a 231 * "id" (optional, string) - Thumbnail format ID
d5519808 232 * "url"
cfb56d1a 233 * "preference" (optional, int) - quality of the image
d5519808
PH
234 * "width" (optional, int)
235 * "height" (optional, int)
5e1c39ac 236 * "resolution" (optional, string "{width}x{height}",
d5519808 237 deprecated)
2de624fd 238 * "filesize" (optional, int)
d6983cb4 239 thumbnail: Full URL to a video thumbnail image.
f5e43bc6 240 description: Full video description.
d6983cb4 241 uploader: Full name of the video uploader.
2bc0c46f 242 license: License name the video is licensed under.
8a92e51c 243 creator: The creator of the video.
10db0d2f 244 release_timestamp: UNIX timestamp of the moment the video was released.
8aab976b 245 release_date: The date (YYYYMMDD) when the video was released.
10db0d2f 246 timestamp: UNIX timestamp of the moment the video was uploaded
d6983cb4 247 upload_date: Video upload date (YYYYMMDD).
955c4514 248 If not explicitly set, calculated from timestamp.
d6983cb4 249 uploader_id: Nickname or id of the video uploader.
7bcd2830 250 uploader_url: Full URL to a personal webpage of the video uploader.
6f1f59f3 251 channel: Full name of the channel the video is uploaded on.
0e7b8d3e 252 Note that channel fields may or may not repeat uploader
6f1f59f3
S
253 fields. This depends on a particular extractor.
254 channel_id: Id of the channel.
255 channel_url: Full URL to a channel webpage.
da9ec3b9 256 location: Physical location where the video was filmed.
a504ced0 257 subtitles: The available subtitles as a dictionary in the format
4606c34e
YCH
258 {tag: subformats}. "tag" is usually a language code, and
259 "subformats" is a list sorted from lower to higher
260 preference, each element is a dictionary with the "ext"
261 entry and one of:
a504ced0 262 * "data": The subtitles file contents
10952eb2 263 * "url": A URL pointing to the subtitles file
2412044c 264 It can optionally also have:
265 * "name": Name or description of the subtitles
4bba3716 266 "ext" will be calculated from URL if missing
e167860c 267 automatic_captions: Like 'subtitles'; contains automatically generated
268 captions instead of normal subtitles
62d231c0 269 duration: Length of the video in seconds, as an integer or float.
f3d29461 270 view_count: How many users have watched the video on the platform.
19e3dfc9
PH
271 like_count: Number of positive ratings of the video
272 dislike_count: Number of negative ratings of the video
02835c6b 273 repost_count: Number of reposts of the video
2d30521a 274 average_rating: Average rating give by users, the scale used depends on the webpage
19e3dfc9 275 comment_count: Number of comments on the video
dd622d7c
PH
276 comments: A list of comments, each with one or more of the following
277 properties (all but one of text or html optional):
278 * "author" - human-readable name of the comment author
279 * "author_id" - user ID of the comment author
a1c5d2ca 280 * "author_thumbnail" - The thumbnail of the comment author
dd622d7c
PH
281 * "id" - Comment ID
282 * "html" - Comment as HTML
283 * "text" - Plain text of the comment
284 * "timestamp" - UNIX timestamp of comment
285 * "parent" - ID of the comment this one is replying to.
286 Set to "root" to indicate that this is a
287 comment to the original video.
a1c5d2ca
M
288 * "like_count" - Number of positive ratings of the comment
289 * "dislike_count" - Number of negative ratings of the comment
290 * "is_favorited" - Whether the comment is marked as
291 favorite by the video uploader
292 * "author_is_uploader" - Whether the comment is made by
293 the video uploader
8dbe9899 294 age_limit: Age restriction for the video, as an integer (years)
7a5c1cfe 295 webpage_url: The URL to the video webpage, if given to yt-dlp it
9103bbc5
JMF
296 should allow to get the same result again. (It will be set
297 by YoutubeDL if it's missing)
ad3bc6ac
PH
298 categories: A list of categories that the video falls in, for example
299 ["Sports", "Berlin"]
864f24bd 300 tags: A list of tags assigned to the video, e.g. ["sweden", "pop music"]
d0fb4bd1 301 cast: A list of the video cast
7267bd53
PH
302 is_live: True, False, or None (=unknown). Whether this video is a
303 live stream that goes on instead of a fixed-length video.
f76ede8e 304 was_live: True, False, or None (=unknown). Whether this video was
305 originally a live stream.
3dbb2a9d 306 live_status: 'is_live', 'is_upcoming', 'was_live', 'not_live' or None (=unknown)
ae30b840 307 If absent, automatically set from is_live, was_live
7c80519c 308 start_time: Time in seconds where the reproduction should start, as
10952eb2 309 specified in the URL.
297a564b 310 end_time: Time in seconds where the reproduction should end, as
10952eb2 311 specified in the URL.
55949fed 312 chapters: A list of dictionaries, with the following entries:
313 * "start_time" - The start time of the chapter in seconds
314 * "end_time" - The end time of the chapter in seconds
315 * "title" (optional, string)
6cfda058 316 playable_in_embed: Whether this video is allowed to play in embedded
317 players on other sites. Can be True (=always allowed),
318 False (=never allowed), None (=unknown), or a string
c224251a
M
319 specifying the criteria for embedability (Eg: 'whitelist')
320 availability: Under what condition the video is available. One of
321 'private', 'premium_only', 'subscriber_only', 'needs_auth',
322 'unlisted' or 'public'. Use 'InfoExtractor._availability'
323 to set it
277d6ff5 324 __post_extractor: A function to be called just before the metadata is
325 written to either disk, logger or console. The function
326 must return a dict which will be added to the info_dict.
327 This is usefull for additional information that is
328 time-consuming to extract. Note that the fields thus
329 extracted will not be available to output template and
330 match_filter. So, only "comments" and "comment_count" are
331 currently allowed to be extracted via this method.
d6983cb4 332
7109903e
S
333 The following fields should only be used when the video belongs to some logical
334 chapter or section:
335
336 chapter: Name or title of the chapter the video belongs to.
27bfd4e5
S
337 chapter_number: Number of the chapter the video belongs to, as an integer.
338 chapter_id: Id of the chapter the video belongs to, as a unicode string.
7109903e
S
339
340 The following fields should only be used when the video is an episode of some
8d76bdf1 341 series, programme or podcast:
7109903e
S
342
343 series: Title of the series or programme the video episode belongs to.
344 season: Title of the season the video episode belongs to.
27bfd4e5
S
345 season_number: Number of the season the video episode belongs to, as an integer.
346 season_id: Id of the season the video episode belongs to, as a unicode string.
7109903e
S
347 episode: Title of the video episode. Unlike mandatory video title field,
348 this field should denote the exact title of the video episode
349 without any kind of decoration.
27bfd4e5
S
350 episode_number: Number of the video episode within a season, as an integer.
351 episode_id: Id of the video episode, as a unicode string.
7109903e 352
7a93ab5f
S
353 The following fields should only be used when the media is a track or a part of
354 a music album:
355
356 track: Title of the track.
357 track_number: Number of the track within an album or a disc, as an integer.
358 track_id: Id of the track (useful in case of custom indexing, e.g. 6.iii),
359 as a unicode string.
360 artist: Artist(s) of the track.
361 genre: Genre(s) of the track.
362 album: Title of the album the track belongs to.
363 album_type: Type of the album (e.g. "Demo", "Full-length", "Split", "Compilation", etc).
364 album_artist: List of all artists appeared on the album (e.g.
365 "Ash Borer / Fell Voices" or "Various Artists", useful for splits
366 and compilations).
367 disc_number: Number of the disc or other physical medium the track belongs to,
368 as an integer.
369 release_year: Year (YYYY) when the album was released.
370
deefc05b 371 Unless mentioned otherwise, the fields should be Unicode strings.
d6983cb4 372
d838b1bd
PH
373 Unless mentioned otherwise, None is equivalent to absence of information.
374
fed5d032
PH
375
376 _type "playlist" indicates multiple videos.
b82f815f
PH
377 There must be a key "entries", which is a list, an iterable, or a PagedList
378 object, each element of which is a valid dictionary by this specification.
fed5d032 379
b60419c5 380 Additionally, playlists can have "id", "title", and any other relevent
381 attributes with the same semantics as videos (see above).
fed5d032
PH
382
383
384 _type "multi_video" indicates that there are multiple videos that
385 form a single show, for examples multiple acts of an opera or TV episode.
386 It must have an entries key like a playlist and contain all the keys
387 required for a video at the same time.
388
389
390 _type "url" indicates that the video must be extracted from another
391 location, possibly by a different extractor. Its only required key is:
392 "url" - the next URL to extract.
f58766ce
PH
393 The key "ie_key" can be set to the class name (minus the trailing "IE",
394 e.g. "Youtube") if the extractor class is known in advance.
395 Additionally, the dictionary may have any properties of the resolved entity
396 known in advance, for example "title" if the title of the referred video is
fed5d032
PH
397 known ahead of time.
398
399
400 _type "url_transparent" entities have the same specification as "url", but
401 indicate that the given additional information is more precise than the one
402 associated with the resolved URL.
403 This is useful when a site employs a video service that hosts the video and
404 its technical metadata, but that video service does not embed a useful
405 title, description etc.
406
407
d6983cb4
PH
408 Subclasses of this one should re-define the _real_initialize() and
409 _real_extract() methods and define a _VALID_URL regexp.
410 Probably, they should also be added to the list of extractors.
411
e6f21b3d 412 Subclasses may also override suitable() if necessary, but ensure the function
413 signature is preserved and that this function imports everything it needs
414 (except other extractors), so that lazy_extractors works correctly
415
4248dad9 416 _GEO_BYPASS attribute may be set to False in order to disable
773f291d
S
417 geo restriction bypass mechanisms for a particular extractor.
418 Though it won't disable explicit geo restriction bypass based on
504f20dd 419 country code provided with geo_bypass_country.
4248dad9
S
420
421 _GEO_COUNTRIES attribute may contain a list of presumably geo unrestricted
422 countries for this extractor. One of these countries will be used by
423 geo restriction bypass mechanism right away in order to bypass
504f20dd 424 geo restriction, of course, if the mechanism is not disabled.
773f291d 425
5f95927a
S
426 _GEO_IP_BLOCKS attribute may contain a list of presumably geo unrestricted
427 IP blocks in CIDR notation for this extractor. One of these IP blocks
428 will be used by geo restriction bypass mechanism similarly
504f20dd 429 to _GEO_COUNTRIES.
3ccdde8c 430
e6f21b3d 431 The _WORKING attribute should be set to False for broken IEs
d6983cb4
PH
432 in order to warn the users and skip the tests.
433 """
434
435 _ready = False
436 _downloader = None
773f291d 437 _x_forwarded_for_ip = None
4248dad9
S
438 _GEO_BYPASS = True
439 _GEO_COUNTRIES = None
5f95927a 440 _GEO_IP_BLOCKS = None
d6983cb4
PH
441 _WORKING = True
442
9d5d4d64 443 _LOGIN_HINTS = {
0930b11f 444 'any': 'Use --cookies, --username and --password, or --netrc to provide account credentials',
9d5d4d64 445 'cookies': (
a0c716bb 446 'Use --cookies-from-browser or --cookies for the authentication. '
447 'See https://github.com/ytdl-org/youtube-dl#how-do-i-pass-cookies-to-youtube-dl for how to manually pass cookies'),
0930b11f 448 'password': 'Use --username and --password, or --netrc to provide account credentials',
9d5d4d64 449 }
450
d6983cb4 451 def __init__(self, downloader=None):
49a57e70 452 """Constructor. Receives an optional downloader (a YoutubeDL instance).
453 If a downloader is not passed during initialization,
454 it must be set using "set_downloader()" before "extract()" is called"""
d6983cb4 455 self._ready = False
773f291d 456 self._x_forwarded_for_ip = None
28f436ba 457 self._printed_messages = set()
d6983cb4
PH
458 self.set_downloader(downloader)
459
460 @classmethod
5ad28e7f 461 def _match_valid_url(cls, url):
79cb2577
PH
462 # This does not use has/getattr intentionally - we want to know whether
463 # we have cached the regexp for *this* class, whereas getattr would also
464 # match the superclass
465 if '_VALID_URL_RE' not in cls.__dict__:
466 cls._VALID_URL_RE = re.compile(cls._VALID_URL)
5ad28e7f 467 return cls._VALID_URL_RE.match(url)
468
469 @classmethod
470 def suitable(cls, url):
471 """Receives a URL and returns True if suitable for this IE."""
3fb4e21b 472 # This function must import everything it needs (except other extractors),
473 # so that lazy_extractors works correctly
5ad28e7f 474 return cls._match_valid_url(url) is not None
d6983cb4 475
ed9266db
PH
476 @classmethod
477 def _match_id(cls, url):
5ad28e7f 478 return cls._match_valid_url(url).group('id')
ed9266db 479
1151c407 480 @classmethod
481 def get_temp_id(cls, url):
482 try:
483 return cls._match_id(url)
484 except (IndexError, AttributeError):
485 return None
486
d6983cb4
PH
487 @classmethod
488 def working(cls):
489 """Getter method for _WORKING."""
490 return cls._WORKING
491
492 def initialize(self):
493 """Initializes an instance (authentication, etc)."""
28f436ba 494 self._printed_messages = set()
5f95927a
S
495 self._initialize_geo_bypass({
496 'countries': self._GEO_COUNTRIES,
497 'ip_blocks': self._GEO_IP_BLOCKS,
498 })
4248dad9
S
499 if not self._ready:
500 self._real_initialize()
501 self._ready = True
502
5f95927a 503 def _initialize_geo_bypass(self, geo_bypass_context):
e39b5d4a
S
504 """
505 Initialize geo restriction bypass mechanism.
506
507 This method is used to initialize geo bypass mechanism based on faking
508 X-Forwarded-For HTTP header. A random country from provided country list
dc0a869e 509 is selected and a random IP belonging to this country is generated. This
e39b5d4a
S
510 IP will be passed as X-Forwarded-For HTTP header in all subsequent
511 HTTP requests.
e39b5d4a
S
512
513 This method will be used for initial geo bypass mechanism initialization
5f95927a
S
514 during the instance initialization with _GEO_COUNTRIES and
515 _GEO_IP_BLOCKS.
e39b5d4a 516
5f95927a 517 You may also manually call it from extractor's code if geo bypass
e39b5d4a 518 information is not available beforehand (e.g. obtained during
5f95927a
S
519 extraction) or due to some other reason. In this case you should pass
520 this information in geo bypass context passed as first argument. It may
521 contain following fields:
522
523 countries: List of geo unrestricted countries (similar
524 to _GEO_COUNTRIES)
525 ip_blocks: List of geo unrestricted IP blocks in CIDR notation
526 (similar to _GEO_IP_BLOCKS)
527
e39b5d4a 528 """
773f291d 529 if not self._x_forwarded_for_ip:
5f95927a
S
530
531 # Geo bypass mechanism is explicitly disabled by user
a06916d9 532 if not self.get_param('geo_bypass', True):
5f95927a
S
533 return
534
535 if not geo_bypass_context:
536 geo_bypass_context = {}
537
538 # Backward compatibility: previously _initialize_geo_bypass
539 # expected a list of countries, some 3rd party code may still use
540 # it this way
541 if isinstance(geo_bypass_context, (list, tuple)):
542 geo_bypass_context = {
543 'countries': geo_bypass_context,
544 }
545
546 # The whole point of geo bypass mechanism is to fake IP
547 # as X-Forwarded-For HTTP header based on some IP block or
548 # country code.
549
550 # Path 1: bypassing based on IP block in CIDR notation
551
552 # Explicit IP block specified by user, use it right away
553 # regardless of whether extractor is geo bypassable or not
a06916d9 554 ip_block = self.get_param('geo_bypass_ip_block', None)
5f95927a
S
555
556 # Otherwise use random IP block from geo bypass context but only
557 # if extractor is known as geo bypassable
558 if not ip_block:
559 ip_blocks = geo_bypass_context.get('ip_blocks')
560 if self._GEO_BYPASS and ip_blocks:
561 ip_block = random.choice(ip_blocks)
562
563 if ip_block:
564 self._x_forwarded_for_ip = GeoUtils.random_ipv4(ip_block)
0760b0a7 565 self._downloader.write_debug(
566 '[debug] Using fake IP %s as X-Forwarded-For' % self._x_forwarded_for_ip)
5f95927a
S
567 return
568
569 # Path 2: bypassing based on country code
570
571 # Explicit country code specified by user, use it right away
572 # regardless of whether extractor is geo bypassable or not
a06916d9 573 country = self.get_param('geo_bypass_country', None)
5f95927a
S
574
575 # Otherwise use random country code from geo bypass context but
576 # only if extractor is known as geo bypassable
577 if not country:
578 countries = geo_bypass_context.get('countries')
579 if self._GEO_BYPASS and countries:
580 country = random.choice(countries)
581
582 if country:
583 self._x_forwarded_for_ip = GeoUtils.random_ipv4(country)
0760b0a7 584 self._downloader.write_debug(
585 'Using fake IP %s (%s) as X-Forwarded-For' % (self._x_forwarded_for_ip, country.upper()))
d6983cb4
PH
586
587 def extract(self, url):
588 """Extracts URL information and returns it in list of dicts."""
3a5bcd03 589 try:
773f291d
S
590 for _ in range(2):
591 try:
592 self.initialize()
a06916d9 593 self.write_debug('Extracting URL: %s' % url)
0016b84e 594 ie_result = self._real_extract(url)
07cce701 595 if ie_result is None:
596 return None
0016b84e
S
597 if self._x_forwarded_for_ip:
598 ie_result['__x_forwarded_for_ip'] = self._x_forwarded_for_ip
53ed7066 599 subtitles = ie_result.get('subtitles')
600 if (subtitles and 'live_chat' in subtitles
a06916d9 601 and 'no-live-chat' in self.get_param('compat_opts', [])):
53ed7066 602 del subtitles['live_chat']
0016b84e 603 return ie_result
773f291d 604 except GeoRestrictedError as e:
4248dad9
S
605 if self.__maybe_fake_ip_and_retry(e.countries):
606 continue
773f291d 607 raise
0db3bae8 608 except UnsupportedError:
609 raise
1151c407 610 except ExtractorError as e:
0db3bae8 611 kwargs = {
612 'video_id': e.video_id or self.get_temp_id(url),
613 'ie': self.IE_NAME,
614 'tb': e.traceback,
615 'expected': e.expected,
616 'cause': e.cause
617 }
618 if hasattr(e, 'countries'):
619 kwargs['countries'] = e.countries
620 raise type(e)(e.msg, **kwargs)
3a5bcd03 621 except compat_http_client.IncompleteRead as e:
1151c407 622 raise ExtractorError('A network error has occurred.', cause=e, expected=True, video_id=self.get_temp_id(url))
9650885b 623 except (KeyError, StopIteration) as e:
1151c407 624 raise ExtractorError('An extractor error has occurred.', cause=e, video_id=self.get_temp_id(url))
d6983cb4 625
4248dad9 626 def __maybe_fake_ip_and_retry(self, countries):
a06916d9 627 if (not self.get_param('geo_bypass_country', None)
3089bc74 628 and self._GEO_BYPASS
a06916d9 629 and self.get_param('geo_bypass', True)
3089bc74
S
630 and not self._x_forwarded_for_ip
631 and countries):
eea0716c
S
632 country_code = random.choice(countries)
633 self._x_forwarded_for_ip = GeoUtils.random_ipv4(country_code)
4248dad9
S
634 if self._x_forwarded_for_ip:
635 self.report_warning(
eea0716c
S
636 'Video is geo restricted. Retrying extraction with fake IP %s (%s) as X-Forwarded-For.'
637 % (self._x_forwarded_for_ip, country_code.upper()))
4248dad9
S
638 return True
639 return False
640
d6983cb4
PH
641 def set_downloader(self, downloader):
642 """Sets the downloader for this IE."""
643 self._downloader = downloader
644
645 def _real_initialize(self):
646 """Real initialization process. Redefine in subclasses."""
647 pass
648
649 def _real_extract(self, url):
650 """Real extraction process. Redefine in subclasses."""
651 pass
652
56c73665
JMF
653 @classmethod
654 def ie_key(cls):
655 """A string for getting the InfoExtractor with get_info_extractor"""
3fb4e21b 656 return cls.__name__[:-2]
56c73665 657
d6983cb4
PH
658 @property
659 def IE_NAME(self):
dc519b54 660 return compat_str(type(self).__name__[:-2])
d6983cb4 661
d391b7e2
S
662 @staticmethod
663 def __can_accept_status_code(err, expected_status):
664 assert isinstance(err, compat_urllib_error.HTTPError)
665 if expected_status is None:
666 return False
d391b7e2
S
667 elif callable(expected_status):
668 return expected_status(err.code) is True
669 else:
6606817a 670 return err.code in variadic(expected_status)
d391b7e2
S
671
672 def _request_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True, data=None, headers={}, query={}, expected_status=None):
673 """
674 Return the response handle.
675
676 See _download_webpage docstring for arguments specification.
677 """
1cf376f5 678 if not self._downloader._first_webpage_request:
49a57e70 679 sleep_interval = self.get_param('sleep_interval_requests') or 0
1cf376f5 680 if sleep_interval > 0:
5ef7d9bd 681 self.to_screen('Sleeping %s seconds ...' % sleep_interval)
1cf376f5 682 time.sleep(sleep_interval)
683 else:
684 self._downloader._first_webpage_request = False
685
d6983cb4
PH
686 if note is None:
687 self.report_download_webpage(video_id)
688 elif note is not False:
7cc3570e 689 if video_id is None:
f1a9d64e 690 self.to_screen('%s' % (note,))
7cc3570e 691 else:
f1a9d64e 692 self.to_screen('%s: %s' % (video_id, note))
2132edaa
S
693
694 # Some sites check X-Forwarded-For HTTP header in order to figure out
695 # the origin of the client behind proxy. This allows bypassing geo
696 # restriction by faking this header's value to IP that belongs to some
697 # geo unrestricted country. We will do so once we encounter any
698 # geo restriction error.
699 if self._x_forwarded_for_ip:
700 if 'X-Forwarded-For' not in headers:
701 headers['X-Forwarded-For'] = self._x_forwarded_for_ip
702
41d06b04
S
703 if isinstance(url_or_request, compat_urllib_request.Request):
704 url_or_request = update_Request(
705 url_or_request, data=data, headers=headers, query=query)
706 else:
cdfee168 707 if query:
708 url_or_request = update_url_query(url_or_request, query)
2c0d9c62 709 if data is not None or headers:
41d06b04 710 url_or_request = sanitized_Request(url_or_request, data, headers)
d6983cb4 711 try:
dca08720 712 return self._downloader.urlopen(url_or_request)
3158150c 713 except network_exceptions as err:
d391b7e2
S
714 if isinstance(err, compat_urllib_error.HTTPError):
715 if self.__can_accept_status_code(err, expected_status):
95e42d73
XDG
716 # Retain reference to error to prevent file object from
717 # being closed before it can be read. Works around the
718 # effects of <https://bugs.python.org/issue15002>
719 # introduced in Python 3.4.1.
720 err.fp._error = err
d391b7e2
S
721 return err.fp
722
aa94a6d3
PH
723 if errnote is False:
724 return False
d6983cb4 725 if errnote is None:
f1a9d64e 726 errnote = 'Unable to download webpage'
7f8b2714 727
9b9c5355 728 errmsg = '%s: %s' % (errnote, error_to_compat_str(err))
7cc3570e
PH
729 if fatal:
730 raise ExtractorError(errmsg, sys.exc_info()[2], cause=err)
731 else:
6a39ee13 732 self.report_warning(errmsg)
7cc3570e 733 return False
d6983cb4 734
d391b7e2
S
735 def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None, fatal=True, encoding=None, data=None, headers={}, query={}, expected_status=None):
736 """
737 Return a tuple (page content as string, URL handle).
738
739 See _download_webpage docstring for arguments specification.
740 """
b9d3e163
PH
741 # Strip hashes from the URL (#1038)
742 if isinstance(url_or_request, (compat_str, str)):
743 url_or_request = url_or_request.partition('#')[0]
744
d391b7e2 745 urlh = self._request_webpage(url_or_request, video_id, note, errnote, fatal, data=data, headers=headers, query=query, expected_status=expected_status)
7cc3570e
PH
746 if urlh is False:
747 assert not fatal
748 return False
c9a77969 749 content = self._webpage_read_content(urlh, url_or_request, video_id, note, errnote, fatal, encoding=encoding)
23be51d8
PH
750 return (content, urlh)
751
c9a77969
YCH
752 @staticmethod
753 def _guess_encoding_from_content(content_type, webpage_bytes):
d6983cb4
PH
754 m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)
755 if m:
756 encoding = m.group(1)
757 else:
0d75ae2c 758 m = re.search(br'<meta[^>]+charset=[\'"]?([^\'")]+)[ /\'">]',
f143d86a
PH
759 webpage_bytes[:1024])
760 if m:
761 encoding = m.group(1).decode('ascii')
b60016e8
PH
762 elif webpage_bytes.startswith(b'\xff\xfe'):
763 encoding = 'utf-16'
f143d86a
PH
764 else:
765 encoding = 'utf-8'
c9a77969
YCH
766
767 return encoding
768
4457823d
S
769 def __check_blocked(self, content):
770 first_block = content[:512]
3089bc74
S
771 if ('<title>Access to this site is blocked</title>' in content
772 and 'Websense' in first_block):
4457823d
S
773 msg = 'Access to this webpage has been blocked by Websense filtering software in your network.'
774 blocked_iframe = self._html_search_regex(
775 r'<iframe src="([^"]+)"', content,
776 'Websense information URL', default=None)
777 if blocked_iframe:
778 msg += ' Visit %s for more details' % blocked_iframe
779 raise ExtractorError(msg, expected=True)
780 if '<title>The URL you requested has been blocked</title>' in first_block:
781 msg = (
782 'Access to this webpage has been blocked by Indian censorship. '
783 'Use a VPN or proxy server (with --proxy) to route around it.')
784 block_msg = self._html_search_regex(
785 r'</h1><p>(.*?)</p>',
786 content, 'block message', default=None)
787 if block_msg:
788 msg += ' (Message: "%s")' % block_msg.replace('\n', ' ')
789 raise ExtractorError(msg, expected=True)
3089bc74
S
790 if ('<title>TTK :: Доступ к ресурсу ограничен</title>' in content
791 and 'blocklist.rkn.gov.ru' in content):
4457823d
S
792 raise ExtractorError(
793 'Access to this webpage has been blocked by decision of the Russian government. '
794 'Visit http://blocklist.rkn.gov.ru/ for a block reason.',
795 expected=True)
796
c9a77969
YCH
797 def _webpage_read_content(self, urlh, url_or_request, video_id, note=None, errnote=None, fatal=True, prefix=None, encoding=None):
798 content_type = urlh.headers.get('Content-Type', '')
799 webpage_bytes = urlh.read()
800 if prefix is not None:
801 webpage_bytes = prefix + webpage_bytes
802 if not encoding:
803 encoding = self._guess_encoding_from_content(content_type, webpage_bytes)
a06916d9 804 if self.get_param('dump_intermediate_pages', False):
f610dbb0 805 self.to_screen('Dumping request to ' + urlh.geturl())
d6983cb4
PH
806 dump = base64.b64encode(webpage_bytes).decode('ascii')
807 self._downloader.to_screen(dump)
a06916d9 808 if self.get_param('write_pages', False):
f610dbb0 809 basen = '%s_%s' % (video_id, urlh.geturl())
bd6f722d 810 trim_length = self.get_param('trim_file_name') or 240
811 if len(basen) > trim_length:
f1a9d64e 812 h = '___' + hashlib.md5(basen.encode('utf-8')).hexdigest()
bd6f722d 813 basen = basen[:trim_length - len(h)] + h
c1bce22f 814 raw_filename = basen + '.dump'
d41e6efc 815 filename = sanitize_filename(raw_filename, restricted=True)
f1a9d64e 816 self.to_screen('Saving request to ' + filename)
5f58165d
S
817 # Working around MAX_PATH limitation on Windows (see
818 # http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx)
e9c0cdd3 819 if compat_os_name == 'nt':
5f58165d
S
820 absfilepath = os.path.abspath(filename)
821 if len(absfilepath) > 259:
822 filename = '\\\\?\\' + absfilepath
d41e6efc
PH
823 with open(filename, 'wb') as outf:
824 outf.write(webpage_bytes)
825
ec0fafbb
AA
826 try:
827 content = webpage_bytes.decode(encoding, 'replace')
828 except LookupError:
829 content = webpage_bytes.decode('utf-8', 'replace')
2410c43d 830
4457823d 831 self.__check_blocked(content)
2410c43d 832
23be51d8 833 return content
d6983cb4 834
d391b7e2
S
835 def _download_webpage(
836 self, url_or_request, video_id, note=None, errnote=None,
837 fatal=True, tries=1, timeout=5, encoding=None, data=None,
838 headers={}, query={}, expected_status=None):
839 """
840 Return the data of the page as a string.
841
842 Arguments:
843 url_or_request -- plain text URL as a string or
844 a compat_urllib_request.Requestobject
845 video_id -- Video/playlist/item identifier (string)
846
847 Keyword arguments:
848 note -- note printed before downloading (string)
849 errnote -- note printed in case of an error (string)
850 fatal -- flag denoting whether error should be considered fatal,
851 i.e. whether it should cause ExtractionError to be raised,
852 otherwise a warning will be reported and extraction continued
853 tries -- number of tries
854 timeout -- sleep interval between tries
855 encoding -- encoding for a page content decoding, guessed automatically
856 when not explicitly specified
857 data -- POST data (bytes)
858 headers -- HTTP headers (dict)
859 query -- URL query (dict)
860 expected_status -- allows to accept failed HTTP requests (non 2xx
861 status code) by explicitly specifying a set of accepted status
862 codes. Can be any of the following entities:
863 - an integer type specifying an exact failed status code to
864 accept
865 - a list or a tuple of integer types specifying a list of
866 failed status codes to accept
867 - a callable accepting an actual failed status code and
868 returning True if it should be accepted
869 Note that this argument does not affect success status codes (2xx)
870 which are always accepted.
871 """
872
995ad69c
TF
873 success = False
874 try_count = 0
875 while success is False:
876 try:
d391b7e2
S
877 res = self._download_webpage_handle(
878 url_or_request, video_id, note, errnote, fatal,
879 encoding=encoding, data=data, headers=headers, query=query,
880 expected_status=expected_status)
995ad69c
TF
881 success = True
882 except compat_http_client.IncompleteRead as e:
883 try_count += 1
884 if try_count >= tries:
885 raise e
886 self._sleep(timeout, video_id)
7cc3570e
PH
887 if res is False:
888 return res
889 else:
890 content, _ = res
891 return content
d6983cb4 892
e0d198c1
S
893 def _download_xml_handle(
894 self, url_or_request, video_id, note='Downloading XML',
895 errnote='Unable to download XML', transform_source=None,
d391b7e2
S
896 fatal=True, encoding=None, data=None, headers={}, query={},
897 expected_status=None):
898 """
ee0ba927 899 Return a tuple (xml as an compat_etree_Element, URL handle).
d391b7e2
S
900
901 See _download_webpage docstring for arguments specification.
902 """
e0d198c1
S
903 res = self._download_webpage_handle(
904 url_or_request, video_id, note, errnote, fatal=fatal,
d391b7e2
S
905 encoding=encoding, data=data, headers=headers, query=query,
906 expected_status=expected_status)
e0d198c1
S
907 if res is False:
908 return res
909 xml_string, urlh = res
910 return self._parse_xml(
911 xml_string, video_id, transform_source=transform_source,
912 fatal=fatal), urlh
913
d391b7e2
S
914 def _download_xml(
915 self, url_or_request, video_id,
916 note='Downloading XML', errnote='Unable to download XML',
917 transform_source=None, fatal=True, encoding=None,
918 data=None, headers={}, query={}, expected_status=None):
919 """
ee0ba927 920 Return the xml as an compat_etree_Element.
d391b7e2
S
921
922 See _download_webpage docstring for arguments specification.
923 """
e0d198c1
S
924 res = self._download_xml_handle(
925 url_or_request, video_id, note=note, errnote=errnote,
926 transform_source=transform_source, fatal=fatal, encoding=encoding,
d391b7e2
S
927 data=data, headers=headers, query=query,
928 expected_status=expected_status)
e0d198c1 929 return res if res is False else res[0]
e01c3d2e
S
930
931 def _parse_xml(self, xml_string, video_id, transform_source=None, fatal=True):
e2b38da9
PH
932 if transform_source:
933 xml_string = transform_source(xml_string)
e01c3d2e
S
934 try:
935 return compat_etree_fromstring(xml_string.encode('utf-8'))
936 except compat_xml_parse_error as ve:
937 errmsg = '%s: Failed to parse XML ' % video_id
938 if fatal:
939 raise ExtractorError(errmsg, cause=ve)
940 else:
941 self.report_warning(errmsg + str(ve))
267ed0c5 942
0fe7783e
S
943 def _download_json_handle(
944 self, url_or_request, video_id, note='Downloading JSON metadata',
945 errnote='Unable to download JSON metadata', transform_source=None,
d391b7e2
S
946 fatal=True, encoding=None, data=None, headers={}, query={},
947 expected_status=None):
948 """
949 Return a tuple (JSON object, URL handle).
950
951 See _download_webpage docstring for arguments specification.
952 """
0fe7783e 953 res = self._download_webpage_handle(
c9a77969 954 url_or_request, video_id, note, errnote, fatal=fatal,
d391b7e2
S
955 encoding=encoding, data=data, headers=headers, query=query,
956 expected_status=expected_status)
0fe7783e
S
957 if res is False:
958 return res
959 json_string, urlh = res
ebb64199 960 return self._parse_json(
0fe7783e
S
961 json_string, video_id, transform_source=transform_source,
962 fatal=fatal), urlh
963
964 def _download_json(
965 self, url_or_request, video_id, note='Downloading JSON metadata',
966 errnote='Unable to download JSON metadata', transform_source=None,
d391b7e2
S
967 fatal=True, encoding=None, data=None, headers={}, query={},
968 expected_status=None):
969 """
970 Return the JSON object as a dict.
971
972 See _download_webpage docstring for arguments specification.
973 """
0fe7783e
S
974 res = self._download_json_handle(
975 url_or_request, video_id, note=note, errnote=errnote,
976 transform_source=transform_source, fatal=fatal, encoding=encoding,
d391b7e2
S
977 data=data, headers=headers, query=query,
978 expected_status=expected_status)
0fe7783e 979 return res if res is False else res[0]
ebb64199
TF
980
981 def _parse_json(self, json_string, video_id, transform_source=None, fatal=True):
81c2f20b
PH
982 if transform_source:
983 json_string = transform_source(json_string)
3d3538e4
PH
984 try:
985 return json.loads(json_string)
986 except ValueError as ve:
e7b6d122
PH
987 errmsg = '%s: Failed to parse JSON ' % video_id
988 if fatal:
989 raise ExtractorError(errmsg, cause=ve)
990 else:
991 self.report_warning(errmsg + str(ve))
3d3538e4 992
adddc50c 993 def _parse_socket_response_as_json(self, data, video_id, transform_source=None, fatal=True):
994 return self._parse_json(
995 data[data.find('{'):data.rfind('}') + 1],
996 video_id, transform_source, fatal)
997
998 def _download_socket_json_handle(
999 self, url_or_request, video_id, note='Polling socket',
1000 errnote='Unable to poll socket', transform_source=None,
1001 fatal=True, encoding=None, data=None, headers={}, query={},
1002 expected_status=None):
1003 """
1004 Return a tuple (JSON object, URL handle).
1005
1006 See _download_webpage docstring for arguments specification.
1007 """
1008 res = self._download_webpage_handle(
1009 url_or_request, video_id, note, errnote, fatal=fatal,
1010 encoding=encoding, data=data, headers=headers, query=query,
1011 expected_status=expected_status)
1012 if res is False:
1013 return res
1014 webpage, urlh = res
1015 return self._parse_socket_response_as_json(
1016 webpage, video_id, transform_source=transform_source,
1017 fatal=fatal), urlh
1018
1019 def _download_socket_json(
1020 self, url_or_request, video_id, note='Polling socket',
1021 errnote='Unable to poll socket', transform_source=None,
1022 fatal=True, encoding=None, data=None, headers={}, query={},
1023 expected_status=None):
1024 """
1025 Return the JSON object as a dict.
1026
1027 See _download_webpage docstring for arguments specification.
1028 """
1029 res = self._download_socket_json_handle(
1030 url_or_request, video_id, note=note, errnote=errnote,
1031 transform_source=transform_source, fatal=fatal, encoding=encoding,
1032 data=data, headers=headers, query=query,
1033 expected_status=expected_status)
1034 return res if res is False else res[0]
1035
28f436ba 1036 def report_warning(self, msg, video_id=None, *args, only_once=False, **kwargs):
b868936c 1037 idstr = format_field(video_id, template='%s: ')
28f436ba 1038 msg = f'[{self.IE_NAME}] {idstr}{msg}'
1039 if only_once:
1040 if f'WARNING: {msg}' in self._printed_messages:
1041 return
1042 self._printed_messages.add(f'WARNING: {msg}')
1043 self._downloader.report_warning(msg, *args, **kwargs)
f45f96f8 1044
a06916d9 1045 def to_screen(self, msg, *args, **kwargs):
d6983cb4 1046 """Print msg to screen, prefixing it with '[ie_name]'"""
a06916d9 1047 self._downloader.to_screen('[%s] %s' % (self.IE_NAME, msg), *args, **kwargs)
1048
1049 def write_debug(self, msg, *args, **kwargs):
1050 self._downloader.write_debug('[%s] %s' % (self.IE_NAME, msg), *args, **kwargs)
1051
1052 def get_param(self, name, default=None, *args, **kwargs):
1053 if self._downloader:
1054 return self._downloader.params.get(name, default, *args, **kwargs)
1055 return default
d6983cb4 1056
88acdbc2 1057 def report_drm(self, video_id, partial=False):
1058 self.raise_no_formats('This video is DRM protected', expected=True, video_id=video_id)
1059
d6983cb4
PH
1060 def report_extraction(self, id_or_name):
1061 """Report information extraction."""
f1a9d64e 1062 self.to_screen('%s: Extracting information' % id_or_name)
d6983cb4
PH
1063
1064 def report_download_webpage(self, video_id):
1065 """Report webpage download."""
f1a9d64e 1066 self.to_screen('%s: Downloading webpage' % video_id)
d6983cb4
PH
1067
1068 def report_age_confirmation(self):
1069 """Report attempt to confirm age."""
f1a9d64e 1070 self.to_screen('Confirming age')
d6983cb4 1071
fc79158d
JMF
1072 def report_login(self):
1073 """Report attempt to log in."""
f1a9d64e 1074 self.to_screen('Logging in')
fc79158d 1075
b7da73eb 1076 def raise_login_required(
9d5d4d64 1077 self, msg='This video is only available for registered users',
1078 metadata_available=False, method='any'):
a06916d9 1079 if metadata_available and self.get_param('ignore_no_formats_error'):
b7da73eb 1080 self.report_warning(msg)
46890374 1081 if method is not None:
1082 msg = '%s. %s' % (msg, self._LOGIN_HINTS[method])
1083 raise ExtractorError(msg, expected=True)
43e7d3c9 1084
b7da73eb 1085 def raise_geo_restricted(
1086 self, msg='This video is not available from your location due to geo restriction',
1087 countries=None, metadata_available=False):
a06916d9 1088 if metadata_available and self.get_param('ignore_no_formats_error'):
b7da73eb 1089 self.report_warning(msg)
1090 else:
1091 raise GeoRestrictedError(msg, countries=countries)
1092
1093 def raise_no_formats(self, msg, expected=False, video_id=None):
a06916d9 1094 if expected and self.get_param('ignore_no_formats_error'):
b7da73eb 1095 self.report_warning(msg, video_id)
68f5867c
L
1096 elif isinstance(msg, ExtractorError):
1097 raise msg
b7da73eb 1098 else:
1099 raise ExtractorError(msg, expected=expected, video_id=video_id)
c430802e 1100
5f6a1245 1101 # Methods for following #608
c0d0b01f 1102 @staticmethod
ec3f6640 1103 def url_result(url, ie=None, video_id=None, video_title=None, **kwargs):
10952eb2 1104 """Returns a URL that points to a page that should be processed"""
5f6a1245 1105 # TODO: ie should be the class used for getting the info
d6983cb4
PH
1106 video_info = {'_type': 'url',
1107 'url': url,
1108 'ie_key': ie}
ec3f6640 1109 video_info.update(kwargs)
7012b23c
PH
1110 if video_id is not None:
1111 video_info['id'] = video_id
830d53bf
S
1112 if video_title is not None:
1113 video_info['title'] = video_title
d6983cb4 1114 return video_info
5f6a1245 1115
749ca5ec
S
1116 def playlist_from_matches(self, matches, playlist_id=None, playlist_title=None, getter=None, ie=None):
1117 urls = orderedSet(
46b18f23
JH
1118 self.url_result(self._proto_relative_url(getter(m) if getter else m), ie)
1119 for m in matches)
1120 return self.playlist_result(
749ca5ec 1121 urls, playlist_id=playlist_id, playlist_title=playlist_title)
46b18f23 1122
c0d0b01f 1123 @staticmethod
b60419c5 1124 def playlist_result(entries, playlist_id=None, playlist_title=None, playlist_description=None, **kwargs):
d6983cb4
PH
1125 """Returns a playlist"""
1126 video_info = {'_type': 'playlist',
1127 'entries': entries}
b60419c5 1128 video_info.update(kwargs)
d6983cb4
PH
1129 if playlist_id:
1130 video_info['id'] = playlist_id
1131 if playlist_title:
1132 video_info['title'] = playlist_title
ecc97af3 1133 if playlist_description is not None:
acf5cbfe 1134 video_info['description'] = playlist_description
d6983cb4
PH
1135 return video_info
1136
c342041f 1137 def _search_regex(self, pattern, string, name, default=NO_DEFAULT, fatal=True, flags=0, group=None):
d6983cb4
PH
1138 """
1139 Perform a regex search on the given string, using a single or a list of
1140 patterns returning the first matching group.
1141 In case of failure return a default value or raise a WARNING or a
55b3e45b 1142 RegexNotFoundError, depending on fatal, specifying the field name.
d6983cb4
PH
1143 """
1144 if isinstance(pattern, (str, compat_str, compiled_regex_type)):
1145 mobj = re.search(pattern, string, flags)
1146 else:
1147 for p in pattern:
1148 mobj = re.search(p, string, flags)
c3415d1b
PH
1149 if mobj:
1150 break
d6983cb4 1151
ec11a9f4 1152 _name = self._downloader._format_err(name, self._downloader.Styles.EMPHASIS)
d6983cb4
PH
1153
1154 if mobj:
711ede6e
PH
1155 if group is None:
1156 # return the first matching group
1157 return next(g for g in mobj.groups() if g is not None)
198f7ea8 1158 elif isinstance(group, (list, tuple)):
1159 return tuple(mobj.group(g) for g in group)
711ede6e
PH
1160 else:
1161 return mobj.group(group)
c342041f 1162 elif default is not NO_DEFAULT:
d6983cb4
PH
1163 return default
1164 elif fatal:
f1a9d64e 1165 raise RegexNotFoundError('Unable to extract %s' % _name)
d6983cb4 1166 else:
6a39ee13 1167 self.report_warning('unable to extract %s' % _name + bug_reports_message())
d6983cb4
PH
1168 return None
1169
c342041f 1170 def _html_search_regex(self, pattern, string, name, default=NO_DEFAULT, fatal=True, flags=0, group=None):
d6983cb4
PH
1171 """
1172 Like _search_regex, but strips HTML tags and unescapes entities.
1173 """
711ede6e 1174 res = self._search_regex(pattern, string, name, default, fatal, flags, group)
d6983cb4
PH
1175 if res:
1176 return clean_html(res).strip()
1177 else:
1178 return res
1179
2118fdd1
RA
1180 def _get_netrc_login_info(self, netrc_machine=None):
1181 username = None
1182 password = None
1183 netrc_machine = netrc_machine or self._NETRC_MACHINE
1184
a06916d9 1185 if self.get_param('usenetrc', False):
2118fdd1 1186 try:
0001fcb5 1187 netrc_file = compat_expanduser(self.get_param('netrc_location') or '~')
1188 if os.path.isdir(netrc_file):
1189 netrc_file = os.path.join(netrc_file, '.netrc')
1190 info = netrc.netrc(file=netrc_file).authenticators(netrc_machine)
2118fdd1
RA
1191 if info is not None:
1192 username = info[0]
1193 password = info[2]
1194 else:
dcce092e
S
1195 raise netrc.NetrcParseError(
1196 'No authenticators for %s' % netrc_machine)
2118fdd1 1197 except (IOError, netrc.NetrcParseError) as err:
6a39ee13 1198 self.report_warning(
dcce092e 1199 'parsing .netrc: %s' % error_to_compat_str(err))
2118fdd1 1200
dcce092e 1201 return username, password
2118fdd1 1202
1b6712ab 1203 def _get_login_info(self, username_option='username', password_option='password', netrc_machine=None):
fc79158d 1204 """
cf0649f8 1205 Get the login info as (username, password)
32443dd3
S
1206 First look for the manually specified credentials using username_option
1207 and password_option as keys in params dictionary. If no such credentials
1208 available look in the netrc file using the netrc_machine or _NETRC_MACHINE
1209 value.
fc79158d
JMF
1210 If there's no info available, return (None, None)
1211 """
fc79158d
JMF
1212
1213 # Attempt to use provided username and password or .netrc data
a06916d9 1214 username = self.get_param(username_option)
1215 if username is not None:
1216 password = self.get_param(password_option)
2118fdd1 1217 else:
1b6712ab 1218 username, password = self._get_netrc_login_info(netrc_machine)
5f6a1245 1219
2133565c 1220 return username, password
fc79158d 1221
e64b7569 1222 def _get_tfa_info(self, note='two-factor verification code'):
83317f69 1223 """
1224 Get the two-factor authentication info
1225 TODO - asking the user will be required for sms/phone verify
1226 currently just uses the command line option
1227 If there's no info available, return None
1228 """
83317f69 1229
a06916d9 1230 tfa = self.get_param('twofactor')
1231 if tfa is not None:
1232 return tfa
83317f69 1233
e64b7569 1234 return compat_getpass('Type %s and press [Return]: ' % note)
83317f69 1235
46720279
JMF
1236 # Helper functions for extracting OpenGraph info
1237 @staticmethod
ab2d5247 1238 def _og_regexes(prop):
448ef1f3 1239 content_re = r'content=(?:"([^"]+?)"|\'([^\']+?)\'|\s*([^\s"\'=<>`]+?))'
22f5f5c6 1240 property_re = (r'(?:name|property)=(?:\'og[:-]%(prop)s\'|"og[:-]%(prop)s"|\s*og[:-]%(prop)s\b)'
7a6d76a6 1241 % {'prop': re.escape(prop)})
78fb87b2 1242 template = r'<meta[^>]+?%s[^>]+?%s'
ab2d5247 1243 return [
78fb87b2
JMF
1244 template % (property_re, content_re),
1245 template % (content_re, property_re),
ab2d5247 1246 ]
46720279 1247
864f24bd
S
1248 @staticmethod
1249 def _meta_regex(prop):
1250 return r'''(?isx)<meta
8b9848ac 1251 (?=[^>]+(?:itemprop|name|property|id|http-equiv)=(["\']?)%s\1)
864f24bd
S
1252 [^>]+?content=(["\'])(?P<content>.*?)\2''' % re.escape(prop)
1253
3c4e6d83 1254 def _og_search_property(self, prop, html, name=None, **kargs):
6606817a 1255 prop = variadic(prop)
46720279 1256 if name is None:
b070564e
S
1257 name = 'OpenGraph %s' % prop[0]
1258 og_regexes = []
1259 for p in prop:
1260 og_regexes.extend(self._og_regexes(p))
1261 escaped = self._search_regex(og_regexes, html, name, flags=re.DOTALL, **kargs)
eb0a8398
PH
1262 if escaped is None:
1263 return None
1264 return unescapeHTML(escaped)
46720279
JMF
1265
1266 def _og_search_thumbnail(self, html, **kargs):
10952eb2 1267 return self._og_search_property('image', html, 'thumbnail URL', fatal=False, **kargs)
46720279
JMF
1268
1269 def _og_search_description(self, html, **kargs):
1270 return self._og_search_property('description', html, fatal=False, **kargs)
1271
1272 def _og_search_title(self, html, **kargs):
1273 return self._og_search_property('title', html, **kargs)
1274
8ffa13e0 1275 def _og_search_video_url(self, html, name='video url', secure=True, **kargs):
a3681973
PH
1276 regexes = self._og_regexes('video') + self._og_regexes('video:url')
1277 if secure:
1278 regexes = self._og_regexes('video:secure_url') + regexes
8ffa13e0 1279 return self._html_search_regex(regexes, html, name, **kargs)
46720279 1280
78338f71
JMF
1281 def _og_search_url(self, html, **kargs):
1282 return self._og_search_property('url', html, **kargs)
1283
40c696e5 1284 def _html_search_meta(self, name, html, display_name=None, fatal=False, **kwargs):
6606817a 1285 name = variadic(name)
59040888 1286 if display_name is None:
88d9f6c0 1287 display_name = name[0]
59040888 1288 return self._html_search_regex(
88d9f6c0 1289 [self._meta_regex(n) for n in name],
711ede6e 1290 html, display_name, fatal=fatal, group='content', **kwargs)
59040888
PH
1291
1292 def _dc_search_uploader(self, html):
1293 return self._html_search_meta('dc.creator', html, 'uploader')
1294
8dbe9899
PH
1295 def _rta_search(self, html):
1296 # See http://www.rtalabel.org/index.php?content=howtofaq#single
1297 if re.search(r'(?ix)<meta\s+name="rating"\s+'
1298 r' content="RTA-5042-1996-1400-1577-RTA"',
1299 html):
1300 return 18
1301 return 0
1302
59040888
PH
1303 def _media_rating_search(self, html):
1304 # See http://www.tjg-designs.com/WP/metadata-code-examples-adding-metadata-to-your-web-pages/
1305 rating = self._html_search_meta('rating', html)
1306
1307 if not rating:
1308 return None
1309
1310 RATING_TABLE = {
1311 'safe for kids': 0,
1312 'general': 8,
1313 '14 years': 14,
1314 'mature': 17,
1315 'restricted': 19,
1316 }
d800609c 1317 return RATING_TABLE.get(rating.lower())
59040888 1318
69319969 1319 def _family_friendly_search(self, html):
6ca7732d 1320 # See http://schema.org/VideoObject
ac8491fc
S
1321 family_friendly = self._html_search_meta(
1322 'isFamilyFriendly', html, default=None)
69319969
NJ
1323
1324 if not family_friendly:
1325 return None
1326
1327 RATING_TABLE = {
1328 '1': 0,
1329 'true': 0,
1330 '0': 18,
1331 'false': 18,
1332 }
d800609c 1333 return RATING_TABLE.get(family_friendly.lower())
69319969 1334
0c708f11
JMF
1335 def _twitter_search_player(self, html):
1336 return self._html_search_meta('twitter:player', html,
9e1a5b84 1337 'twitter card player')
0c708f11 1338
95b31e26 1339 def _search_json_ld(self, html, video_id, expected_type=None, **kwargs):
4433bb02 1340 json_ld_list = list(re.finditer(JSON_LD_RE, html))
321b5e08 1341 default = kwargs.get('default', NO_DEFAULT)
321b5e08
S
1342 # JSON-LD may be malformed and thus `fatal` should be respected.
1343 # At the same time `default` may be passed that assumes `fatal=False`
1344 # for _search_regex. Let's simulate the same behavior here as well.
dbf5416a 1345 fatal = kwargs.get('fatal', True) if default is NO_DEFAULT else False
4433bb02
S
1346 json_ld = []
1347 for mobj in json_ld_list:
1348 json_ld_item = self._parse_json(
1349 mobj.group('json_ld'), video_id, fatal=fatal)
1350 if not json_ld_item:
1351 continue
1352 if isinstance(json_ld_item, dict):
1353 json_ld.append(json_ld_item)
1354 elif isinstance(json_ld_item, (list, tuple)):
1355 json_ld.extend(json_ld_item)
1356 if json_ld:
1357 json_ld = self._json_ld(json_ld, video_id, fatal=fatal, expected_type=expected_type)
1358 if json_ld:
1359 return json_ld
1360 if default is not NO_DEFAULT:
1361 return default
1362 elif fatal:
1363 raise RegexNotFoundError('Unable to extract JSON-LD')
1364 else:
6a39ee13 1365 self.report_warning('unable to extract JSON-LD %s' % bug_reports_message())
4433bb02 1366 return {}
4ca2a3cf 1367
95b31e26 1368 def _json_ld(self, json_ld, video_id, fatal=True, expected_type=None):
4ca2a3cf
S
1369 if isinstance(json_ld, compat_str):
1370 json_ld = self._parse_json(json_ld, video_id, fatal=fatal)
1371 if not json_ld:
1372 return {}
1373 info = {}
46933a15
S
1374 if not isinstance(json_ld, (list, tuple, dict)):
1375 return info
1376 if isinstance(json_ld, dict):
1377 json_ld = [json_ld]
bae14048 1378
e7e4a6e0
S
1379 INTERACTION_TYPE_MAP = {
1380 'CommentAction': 'comment',
1381 'AgreeAction': 'like',
1382 'DisagreeAction': 'dislike',
1383 'LikeAction': 'like',
1384 'DislikeAction': 'dislike',
1385 'ListenAction': 'view',
1386 'WatchAction': 'view',
1387 'ViewAction': 'view',
1388 }
1389
29f7c58a 1390 def extract_interaction_type(e):
1391 interaction_type = e.get('interactionType')
1392 if isinstance(interaction_type, dict):
1393 interaction_type = interaction_type.get('@type')
1394 return str_or_none(interaction_type)
1395
e7e4a6e0
S
1396 def extract_interaction_statistic(e):
1397 interaction_statistic = e.get('interactionStatistic')
29f7c58a 1398 if isinstance(interaction_statistic, dict):
1399 interaction_statistic = [interaction_statistic]
e7e4a6e0
S
1400 if not isinstance(interaction_statistic, list):
1401 return
1402 for is_e in interaction_statistic:
1403 if not isinstance(is_e, dict):
1404 continue
1405 if is_e.get('@type') != 'InteractionCounter':
1406 continue
29f7c58a 1407 interaction_type = extract_interaction_type(is_e)
1408 if not interaction_type:
e7e4a6e0 1409 continue
ce5b9040
S
1410 # For interaction count some sites provide string instead of
1411 # an integer (as per spec) with non digit characters (e.g. ",")
1412 # so extracting count with more relaxed str_to_int
1413 interaction_count = str_to_int(is_e.get('userInteractionCount'))
e7e4a6e0
S
1414 if interaction_count is None:
1415 continue
1416 count_kind = INTERACTION_TYPE_MAP.get(interaction_type.split('/')[-1])
1417 if not count_kind:
1418 continue
1419 count_key = '%s_count' % count_kind
1420 if info.get(count_key) is not None:
1421 continue
1422 info[count_key] = interaction_count
1423
bae14048
S
1424 def extract_video_object(e):
1425 assert e['@type'] == 'VideoObject'
f7ad7160 1426 author = e.get('author')
bae14048 1427 info.update({
bebef109 1428 'url': url_or_none(e.get('contentUrl')),
bae14048
S
1429 'title': unescapeHTML(e.get('name')),
1430 'description': unescapeHTML(e.get('description')),
bebef109 1431 'thumbnail': url_or_none(e.get('thumbnailUrl') or e.get('thumbnailURL')),
bae14048
S
1432 'duration': parse_duration(e.get('duration')),
1433 'timestamp': unified_timestamp(e.get('uploadDate')),
f7ad7160 1434 # author can be an instance of 'Organization' or 'Person' types.
1435 # both types can have 'name' property(inherited from 'Thing' type). [1]
1436 # however some websites are using 'Text' type instead.
1437 # 1. https://schema.org/VideoObject
1438 'uploader': author.get('name') if isinstance(author, dict) else author if isinstance(author, compat_str) else None,
bae14048
S
1439 'filesize': float_or_none(e.get('contentSize')),
1440 'tbr': int_or_none(e.get('bitrate')),
1441 'width': int_or_none(e.get('width')),
1442 'height': int_or_none(e.get('height')),
33a81c2c 1443 'view_count': int_or_none(e.get('interactionCount')),
bae14048 1444 })
e7e4a6e0 1445 extract_interaction_statistic(e)
bae14048 1446
46933a15 1447 for e in json_ld:
4433bb02 1448 if '@context' in e:
46933a15
S
1449 item_type = e.get('@type')
1450 if expected_type is not None and expected_type != item_type:
4433bb02 1451 continue
c69701c6 1452 if item_type in ('TVEpisode', 'Episode'):
440863ad 1453 episode_name = unescapeHTML(e.get('name'))
46933a15 1454 info.update({
440863ad 1455 'episode': episode_name,
46933a15
S
1456 'episode_number': int_or_none(e.get('episodeNumber')),
1457 'description': unescapeHTML(e.get('description')),
1458 })
440863ad
S
1459 if not info.get('title') and episode_name:
1460 info['title'] = episode_name
46933a15 1461 part_of_season = e.get('partOfSeason')
c69701c6 1462 if isinstance(part_of_season, dict) and part_of_season.get('@type') in ('TVSeason', 'Season', 'CreativeWorkSeason'):
458fd30f
S
1463 info.update({
1464 'season': unescapeHTML(part_of_season.get('name')),
1465 'season_number': int_or_none(part_of_season.get('seasonNumber')),
1466 })
d16b3c66 1467 part_of_series = e.get('partOfSeries') or e.get('partOfTVSeries')
c69701c6 1468 if isinstance(part_of_series, dict) and part_of_series.get('@type') in ('TVSeries', 'Series', 'CreativeWorkSeries'):
46933a15 1469 info['series'] = unescapeHTML(part_of_series.get('name'))
391256dc
S
1470 elif item_type == 'Movie':
1471 info.update({
1472 'title': unescapeHTML(e.get('name')),
1473 'description': unescapeHTML(e.get('description')),
1474 'duration': parse_duration(e.get('duration')),
1475 'timestamp': unified_timestamp(e.get('dateCreated')),
1476 })
3931b845 1477 elif item_type in ('Article', 'NewsArticle'):
46933a15
S
1478 info.update({
1479 'timestamp': parse_iso8601(e.get('datePublished')),
1480 'title': unescapeHTML(e.get('headline')),
1481 'description': unescapeHTML(e.get('articleBody')),
1482 })
1483 elif item_type == 'VideoObject':
bae14048 1484 extract_video_object(e)
4433bb02
S
1485 if expected_type is None:
1486 continue
1487 else:
1488 break
c69701c6
S
1489 video = e.get('video')
1490 if isinstance(video, dict) and video.get('@type') == 'VideoObject':
1491 extract_video_object(video)
4433bb02
S
1492 if expected_type is None:
1493 continue
1494 else:
1495 break
4ca2a3cf
S
1496 return dict((k, v) for k, v in info.items() if v is not None)
1497
27713812 1498 @staticmethod
f8da79f8 1499 def _hidden_inputs(html):
586f1cc5 1500 html = re.sub(r'<!--(?:(?!<!--).)*-->', '', html)
201ea3ee 1501 hidden_inputs = {}
c8498368
S
1502 for input in re.findall(r'(?i)(<input[^>]+>)', html):
1503 attrs = extract_attributes(input)
1504 if not input:
201ea3ee 1505 continue
c8498368 1506 if attrs.get('type') not in ('hidden', 'submit'):
201ea3ee 1507 continue
c8498368
S
1508 name = attrs.get('name') or attrs.get('id')
1509 value = attrs.get('value')
1510 if name and value is not None:
1511 hidden_inputs[name] = value
201ea3ee 1512 return hidden_inputs
27713812 1513
cf61d96d
S
1514 def _form_hidden_inputs(self, form_id, html):
1515 form = self._search_regex(
73eb13df 1516 r'(?is)<form[^>]+?id=(["\'])%s\1[^>]*>(?P<form>.+?)</form>' % form_id,
cf61d96d
S
1517 html, '%s form' % form_id, group='form')
1518 return self._hidden_inputs(form)
1519
eb8a4433 1520 class FormatSort:
b050d210 1521 regex = r' *((?P<reverse>\+)?(?P<field>[a-zA-Z0-9_]+)((?P<separator>[~:])(?P<limit>.*?))?)? *$'
eb8a4433 1522
8326b00a 1523 default = ('hidden', 'aud_or_vid', 'hasvid', 'ie_pref', 'lang', 'quality',
176f1866 1524 'res', 'fps', 'hdr:12', 'codec:vp9.2', 'size', 'br', 'asr',
53ed7066 1525 'proto', 'ext', 'hasaud', 'source', 'format_id') # These must not be aliases
198e3a04 1526 ytdl_default = ('hasaud', 'lang', 'quality', 'tbr', 'filesize', 'vbr',
53ed7066 1527 'height', 'width', 'proto', 'vext', 'abr', 'aext',
1528 'fps', 'fs_approx', 'source', 'format_id')
eb8a4433 1529
1530 settings = {
1531 'vcodec': {'type': 'ordered', 'regex': True,
155d2b48 1532 'order': ['av0?1', 'vp0?9.2', 'vp0?9', '[hx]265|he?vc?', '[hx]264|avc', 'vp0?8', 'mp4v|h263', 'theora', '', None, 'none']},
eb8a4433 1533 'acodec': {'type': 'ordered', 'regex': True,
1534 'order': ['opus', 'vorbis', 'aac', 'mp?4a?', 'mp3', 'e?a?c-?3', 'dts', '', None, 'none']},
176f1866 1535 'hdr': {'type': 'ordered', 'regex': True, 'field': 'dynamic_range',
1536 'order': ['dv', '(hdr)?12', r'(hdr)?10\+', '(hdr)?10', 'hlg', '', 'sdr', None]},
f137c99e 1537 'proto': {'type': 'ordered', 'regex': True, 'field': 'protocol',
e36d50c5 1538 'order': ['(ht|f)tps', '(ht|f)tp$', 'm3u8.+', '.*dash', 'ws|websocket', '', 'mms|rtsp', 'none', 'f4']},
eb8a4433 1539 'vext': {'type': 'ordered', 'field': 'video_ext',
91ebc640 1540 'order': ('mp4', 'webm', 'flv', '', 'none'),
eb8a4433 1541 'order_free': ('webm', 'mp4', 'flv', '', 'none')},
1542 'aext': {'type': 'ordered', 'field': 'audio_ext',
1543 'order': ('m4a', 'aac', 'mp3', 'ogg', 'opus', 'webm', '', 'none'),
1544 'order_free': ('opus', 'ogg', 'webm', 'm4a', 'mp3', 'aac', '', 'none')},
1545 'hidden': {'visible': False, 'forced': True, 'type': 'extractor', 'max': -1000},
f5510afe 1546 'aud_or_vid': {'visible': False, 'forced': True, 'type': 'multiple',
8326b00a 1547 'field': ('vcodec', 'acodec'),
1548 'function': lambda it: int(any(v != 'none' for v in it))},
f983b875 1549 'ie_pref': {'priority': True, 'type': 'extractor'},
63be1aab 1550 'hasvid': {'priority': True, 'field': 'vcodec', 'type': 'boolean', 'not_in_list': ('none',)},
1551 'hasaud': {'field': 'acodec', 'type': 'boolean', 'not_in_list': ('none',)},
10beccc9 1552 'lang': {'convert': 'float', 'field': 'language_preference', 'default': -1},
1553 'quality': {'convert': 'float', 'default': -1},
eb8a4433 1554 'filesize': {'convert': 'bytes'},
f137c99e 1555 'fs_approx': {'convert': 'bytes', 'field': 'filesize_approx'},
1556 'id': {'convert': 'string', 'field': 'format_id'},
eb8a4433 1557 'height': {'convert': 'float_none'},
1558 'width': {'convert': 'float_none'},
1559 'fps': {'convert': 'float_none'},
1560 'tbr': {'convert': 'float_none'},
1561 'vbr': {'convert': 'float_none'},
1562 'abr': {'convert': 'float_none'},
1563 'asr': {'convert': 'float_none'},
10beccc9 1564 'source': {'convert': 'float', 'field': 'source_preference', 'default': -1},
63be1aab 1565
eb8a4433 1566 'codec': {'type': 'combined', 'field': ('vcodec', 'acodec')},
63be1aab 1567 'br': {'type': 'combined', 'field': ('tbr', 'vbr', 'abr'), 'same_limit': True},
1568 'size': {'type': 'combined', 'same_limit': True, 'field': ('filesize', 'fs_approx')},
1569 'ext': {'type': 'combined', 'field': ('vext', 'aext')},
f5510afe 1570 'res': {'type': 'multiple', 'field': ('height', 'width'),
dbf5416a 1571 'function': lambda it: (lambda l: min(l) if l else 0)(tuple(filter(None, it)))},
63be1aab 1572
1573 # Most of these exist only for compatibility reasons
1574 'dimension': {'type': 'alias', 'field': 'res'},
1575 'resolution': {'type': 'alias', 'field': 'res'},
1576 'extension': {'type': 'alias', 'field': 'ext'},
1577 'bitrate': {'type': 'alias', 'field': 'br'},
eb8a4433 1578 'total_bitrate': {'type': 'alias', 'field': 'tbr'},
1579 'video_bitrate': {'type': 'alias', 'field': 'vbr'},
1580 'audio_bitrate': {'type': 'alias', 'field': 'abr'},
1581 'framerate': {'type': 'alias', 'field': 'fps'},
63be1aab 1582 'language_preference': {'type': 'alias', 'field': 'lang'}, # not named as 'language' because such a field exists
1583 'protocol': {'type': 'alias', 'field': 'proto'},
1584 'source_preference': {'type': 'alias', 'field': 'source'},
1585 'filesize_approx': {'type': 'alias', 'field': 'fs_approx'},
1586 'filesize_estimate': {'type': 'alias', 'field': 'size'},
eb8a4433 1587 'samplerate': {'type': 'alias', 'field': 'asr'},
1588 'video_ext': {'type': 'alias', 'field': 'vext'},
1589 'audio_ext': {'type': 'alias', 'field': 'aext'},
1590 'video_codec': {'type': 'alias', 'field': 'vcodec'},
1591 'audio_codec': {'type': 'alias', 'field': 'acodec'},
63be1aab 1592 'video': {'type': 'alias', 'field': 'hasvid'},
1593 'has_video': {'type': 'alias', 'field': 'hasvid'},
1594 'audio': {'type': 'alias', 'field': 'hasaud'},
1595 'has_audio': {'type': 'alias', 'field': 'hasaud'},
1596 'extractor': {'type': 'alias', 'field': 'ie_pref'},
1597 'preference': {'type': 'alias', 'field': 'ie_pref'},
1598 'extractor_preference': {'type': 'alias', 'field': 'ie_pref'},
1599 'format_id': {'type': 'alias', 'field': 'id'},
1600 }
eb8a4433 1601
1602 _order = []
1603
1604 def _get_field_setting(self, field, key):
1605 if field not in self.settings:
1606 self.settings[field] = {}
1607 propObj = self.settings[field]
1608 if key not in propObj:
1609 type = propObj.get('type')
1610 if key == 'field':
1611 default = 'preference' if type == 'extractor' else (field,) if type in ('combined', 'multiple') else field
1612 elif key == 'convert':
1613 default = 'order' if type == 'ordered' else 'float_string' if field else 'ignore'
4bcc7bd1 1614 else:
f5510afe 1615 default = {'type': 'field', 'visible': True, 'order': [], 'not_in_list': (None,)}.get(key, None)
eb8a4433 1616 propObj[key] = default
1617 return propObj[key]
1618
1619 def _resolve_field_value(self, field, value, convertNone=False):
1620 if value is None:
1621 if not convertNone:
1622 return None
4bcc7bd1 1623 else:
eb8a4433 1624 value = value.lower()
1625 conversion = self._get_field_setting(field, 'convert')
1626 if conversion == 'ignore':
1627 return None
1628 if conversion == 'string':
1629 return value
1630 elif conversion == 'float_none':
1631 return float_or_none(value)
1632 elif conversion == 'bytes':
1633 return FileDownloader.parse_bytes(value)
1634 elif conversion == 'order':
da9be05e 1635 order_list = (self._use_free_order and self._get_field_setting(field, 'order_free')) or self._get_field_setting(field, 'order')
eb8a4433 1636 use_regex = self._get_field_setting(field, 'regex')
1637 list_length = len(order_list)
1638 empty_pos = order_list.index('') if '' in order_list else list_length + 1
1639 if use_regex and value is not None:
da9be05e 1640 for i, regex in enumerate(order_list):
eb8a4433 1641 if regex and re.match(regex, value):
1642 return list_length - i
1643 return list_length - empty_pos # not in list
1644 else: # not regex or value = None
1645 return list_length - (order_list.index(value) if value in order_list else empty_pos)
1646 else:
1647 if value.isnumeric():
1648 return float(value)
4bcc7bd1 1649 else:
eb8a4433 1650 self.settings[field]['convert'] = 'string'
1651 return value
1652
1653 def evaluate_params(self, params, sort_extractor):
1654 self._use_free_order = params.get('prefer_free_formats', False)
1655 self._sort_user = params.get('format_sort', [])
1656 self._sort_extractor = sort_extractor
1657
1658 def add_item(field, reverse, closest, limit_text):
1659 field = field.lower()
1660 if field in self._order:
1661 return
1662 self._order.append(field)
1663 limit = self._resolve_field_value(field, limit_text)
1664 data = {
1665 'reverse': reverse,
1666 'closest': False if limit is None else closest,
1667 'limit_text': limit_text,
1668 'limit': limit}
1669 if field in self.settings:
1670 self.settings[field].update(data)
1671 else:
1672 self.settings[field] = data
1673
1674 sort_list = (
1675 tuple(field for field in self.default if self._get_field_setting(field, 'forced'))
1676 + (tuple() if params.get('format_sort_force', False)
1677 else tuple(field for field in self.default if self._get_field_setting(field, 'priority')))
1678 + tuple(self._sort_user) + tuple(sort_extractor) + self.default)
1679
1680 for item in sort_list:
1681 match = re.match(self.regex, item)
1682 if match is None:
1683 raise ExtractorError('Invalid format sort string "%s" given by extractor' % item)
1684 field = match.group('field')
1685 if field is None:
1686 continue
1687 if self._get_field_setting(field, 'type') == 'alias':
1688 field = self._get_field_setting(field, 'field')
1689 reverse = match.group('reverse') is not None
b050d210 1690 closest = match.group('separator') == '~'
eb8a4433 1691 limit_text = match.group('limit')
1692
1693 has_limit = limit_text is not None
1694 has_multiple_fields = self._get_field_setting(field, 'type') == 'combined'
1695 has_multiple_limits = has_limit and has_multiple_fields and not self._get_field_setting(field, 'same_limit')
1696
1697 fields = self._get_field_setting(field, 'field') if has_multiple_fields else (field,)
b5ae35ee 1698 limits = limit_text.split(':') if has_multiple_limits else (limit_text,) if has_limit else tuple()
eb8a4433 1699 limit_count = len(limits)
1700 for (i, f) in enumerate(fields):
1701 add_item(f, reverse, closest,
1702 limits[i] if i < limit_count
1703 else limits[0] if has_limit and not has_multiple_limits
1704 else None)
1705
0760b0a7 1706 def print_verbose_info(self, write_debug):
b31fdeed 1707 if self._sort_user:
0760b0a7 1708 write_debug('Sort order given by user: %s' % ', '.join(self._sort_user))
eb8a4433 1709 if self._sort_extractor:
0760b0a7 1710 write_debug('Sort order given by extractor: %s' % ', '.join(self._sort_extractor))
1711 write_debug('Formats sorted by: %s' % ', '.join(['%s%s%s' % (
eb8a4433 1712 '+' if self._get_field_setting(field, 'reverse') else '', field,
1713 '%s%s(%s)' % ('~' if self._get_field_setting(field, 'closest') else ':',
1714 self._get_field_setting(field, 'limit_text'),
1715 self._get_field_setting(field, 'limit'))
1716 if self._get_field_setting(field, 'limit_text') is not None else '')
1717 for field in self._order if self._get_field_setting(field, 'visible')]))
1718
1719 def _calculate_field_preference_from_value(self, format, field, type, value):
1720 reverse = self._get_field_setting(field, 'reverse')
1721 closest = self._get_field_setting(field, 'closest')
1722 limit = self._get_field_setting(field, 'limit')
1723
1724 if type == 'extractor':
1725 maximum = self._get_field_setting(field, 'max')
1726 if value is None or (maximum is not None and value >= maximum):
f983b875 1727 value = -1
eb8a4433 1728 elif type == 'boolean':
1729 in_list = self._get_field_setting(field, 'in_list')
1730 not_in_list = self._get_field_setting(field, 'not_in_list')
1731 value = 0 if ((in_list is None or value in in_list) and (not_in_list is None or value not in not_in_list)) else -1
1732 elif type == 'ordered':
1733 value = self._resolve_field_value(field, value, True)
1734
1735 # try to convert to number
6a04a74e 1736 val_num = float_or_none(value, default=self._get_field_setting(field, 'default'))
eb8a4433 1737 is_num = self._get_field_setting(field, 'convert') != 'string' and val_num is not None
1738 if is_num:
1739 value = val_num
1740
1741 return ((-10, 0) if value is None
1742 else (1, value, 0) if not is_num # if a field has mixed strings and numbers, strings are sorted higher
1743 else (0, -abs(value - limit), value - limit if reverse else limit - value) if closest
1744 else (0, value, 0) if not reverse and (limit is None or value <= limit)
1745 else (0, -value, 0) if limit is None or (reverse and value == limit) or value > limit
1746 else (-1, value, 0))
1747
1748 def _calculate_field_preference(self, format, field):
1749 type = self._get_field_setting(field, 'type') # extractor, boolean, ordered, field, multiple
1750 get_value = lambda f: format.get(self._get_field_setting(f, 'field'))
1751 if type == 'multiple':
1752 type = 'field' # Only 'field' is allowed in multiple for now
1753 actual_fields = self._get_field_setting(field, 'field')
1754
f5510afe 1755 value = self._get_field_setting(field, 'function')(get_value(f) for f in actual_fields)
eb8a4433 1756 else:
1757 value = get_value(field)
1758 return self._calculate_field_preference_from_value(format, field, type, value)
1759
1760 def calculate_preference(self, format):
1761 # Determine missing protocol
1762 if not format.get('protocol'):
1763 format['protocol'] = determine_protocol(format)
1764
1765 # Determine missing ext
1766 if not format.get('ext') and 'url' in format:
1767 format['ext'] = determine_ext(format['url'])
1768 if format.get('vcodec') == 'none':
8326b00a 1769 format['audio_ext'] = format['ext'] if format.get('acodec') != 'none' else 'none'
eb8a4433 1770 format['video_ext'] = 'none'
1771 else:
1772 format['video_ext'] = format['ext']
1773 format['audio_ext'] = 'none'
1774 # if format.get('preference') is None and format.get('ext') in ('f4f', 'f4m'): # Not supported?
1775 # format['preference'] = -1000
1776
1777 # Determine missing bitrates
1778 if format.get('tbr') is None:
1779 if format.get('vbr') is not None and format.get('abr') is not None:
1780 format['tbr'] = format.get('vbr', 0) + format.get('abr', 0)
1781 else:
b5ae35ee 1782 if format.get('vcodec') != 'none' and format.get('vbr') is None:
eb8a4433 1783 format['vbr'] = format.get('tbr') - format.get('abr', 0)
b5ae35ee 1784 if format.get('acodec') != 'none' and format.get('abr') is None:
eb8a4433 1785 format['abr'] = format.get('tbr') - format.get('vbr', 0)
1786
1787 return tuple(self._calculate_field_preference(format, field) for field in self._order)
1788
1789 def _sort_formats(self, formats, field_preference=[]):
1790 if not formats:
88acdbc2 1791 return
eb8a4433 1792 format_sort = self.FormatSort() # params and to_screen are taken from the downloader
1793 format_sort.evaluate_params(self._downloader.params, field_preference)
a06916d9 1794 if self.get_param('verbose', False):
0760b0a7 1795 format_sort.print_verbose_info(self._downloader.write_debug)
eb8a4433 1796 formats.sort(key=lambda f: format_sort.calculate_preference(f))
59040888 1797
96a53167
S
1798 def _check_formats(self, formats, video_id):
1799 if formats:
1800 formats[:] = filter(
1801 lambda f: self._is_valid_url(
1802 f['url'], video_id,
1803 item='%s video format' % f.get('format_id') if f.get('format_id') else 'video'),
1804 formats)
1805
f5bdb444
S
1806 @staticmethod
1807 def _remove_duplicate_formats(formats):
1808 format_urls = set()
1809 unique_formats = []
1810 for f in formats:
1811 if f['url'] not in format_urls:
1812 format_urls.add(f['url'])
1813 unique_formats.append(f)
1814 formats[:] = unique_formats
1815
45024183 1816 def _is_valid_url(self, url, video_id, item='video', headers={}):
2f0f6578
S
1817 url = self._proto_relative_url(url, scheme='http:')
1818 # For now assume non HTTP(S) URLs always valid
1819 if not (url.startswith('http://') or url.startswith('https://')):
1820 return True
96a53167 1821 try:
45024183 1822 self._request_webpage(url, video_id, 'Checking %s URL' % item, headers=headers)
96a53167 1823 return True
8bdd16b4 1824 except ExtractorError as e:
25e911a9 1825 self.to_screen(
8bdd16b4 1826 '%s: %s URL is invalid, skipping: %s'
1827 % (video_id, item, error_to_compat_str(e.cause)))
25e911a9 1828 return False
96a53167 1829
20991253 1830 def http_scheme(self):
1ede5b24 1831 """ Either "http:" or "https:", depending on the user's preferences """
20991253
PH
1832 return (
1833 'http:'
a06916d9 1834 if self.get_param('prefer_insecure', False)
20991253
PH
1835 else 'https:')
1836
57c7411f
PH
1837 def _proto_relative_url(self, url, scheme=None):
1838 if url is None:
1839 return url
1840 if url.startswith('//'):
1841 if scheme is None:
1842 scheme = self.http_scheme()
1843 return scheme + url
1844 else:
1845 return url
1846
4094b6e3
PH
1847 def _sleep(self, timeout, video_id, msg_template=None):
1848 if msg_template is None:
f1a9d64e 1849 msg_template = '%(video_id)s: Waiting for %(timeout)s seconds'
4094b6e3
PH
1850 msg = msg_template % {'video_id': video_id, 'timeout': timeout}
1851 self.to_screen(msg)
1852 time.sleep(timeout)
1853
f983b875 1854 def _extract_f4m_formats(self, manifest_url, video_id, preference=None, quality=None, f4m_id=None,
4de61310 1855 transform_source=lambda s: fix_xml_ampersands(s).strip(),
7360c06f 1856 fatal=True, m3u8_id=None, data=None, headers={}, query={}):
f036a632
JMF
1857 manifest = self._download_xml(
1858 manifest_url, video_id, 'Downloading f4m manifest',
97f4aecf
S
1859 'Unable to download f4m manifest',
1860 # Some manifests may be malformed, e.g. prosiebensat1 generated manifests
067aa17e 1861 # (see https://github.com/ytdl-org/youtube-dl/issues/6215#issuecomment-121704244)
4de61310 1862 transform_source=transform_source,
7360c06f 1863 fatal=fatal, data=data, headers=headers, query=query)
4de61310
S
1864
1865 if manifest is False:
8d29e47f 1866 return []
31bb8d3f 1867
0fdbb332 1868 return self._parse_f4m_formats(
f983b875 1869 manifest, manifest_url, video_id, preference=preference, quality=quality, f4m_id=f4m_id,
448bb5f3 1870 transform_source=transform_source, fatal=fatal, m3u8_id=m3u8_id)
0fdbb332 1871
f983b875 1872 def _parse_f4m_formats(self, manifest, manifest_url, video_id, preference=None, quality=None, f4m_id=None,
0fdbb332 1873 transform_source=lambda s: fix_xml_ampersands(s).strip(),
448bb5f3 1874 fatal=True, m3u8_id=None):
ee0ba927 1875 if not isinstance(manifest, compat_etree_Element) and not fatal:
d9eb580a
S
1876 return []
1877
7a5c1cfe 1878 # currently yt-dlp cannot decode the playerVerificationChallenge as Akamai uses Adobe Alchemy
fb72ec58 1879 akamai_pv = manifest.find('{http://ns.adobe.com/f4m/1.0}pv-2.0')
1880 if akamai_pv is not None and ';' in akamai_pv.text:
1881 playerVerificationChallenge = akamai_pv.text.split(';')[0]
1882 if playerVerificationChallenge.strip() != '':
1883 return []
1884
31bb8d3f 1885 formats = []
7a47d07c 1886 manifest_version = '1.0'
b2527359 1887 media_nodes = manifest.findall('{http://ns.adobe.com/f4m/1.0}media')
34e48bed 1888 if not media_nodes:
7a47d07c 1889 manifest_version = '2.0'
34e48bed 1890 media_nodes = manifest.findall('{http://ns.adobe.com/f4m/2.0}media')
b22ca762 1891 # Remove unsupported DRM protected media from final formats
067aa17e 1892 # rendition (see https://github.com/ytdl-org/youtube-dl/issues/8573).
b22ca762
S
1893 media_nodes = remove_encrypted_media(media_nodes)
1894 if not media_nodes:
1895 return formats
48107c19
S
1896
1897 manifest_base_url = get_base_url(manifest)
0a5685b2 1898
a6571f10 1899 bootstrap_info = xpath_element(
0a5685b2
YCH
1900 manifest, ['{http://ns.adobe.com/f4m/1.0}bootstrapInfo', '{http://ns.adobe.com/f4m/2.0}bootstrapInfo'],
1901 'bootstrap info', default=None)
1902
edd6074c
RA
1903 vcodec = None
1904 mime_type = xpath_text(
1905 manifest, ['{http://ns.adobe.com/f4m/1.0}mimeType', '{http://ns.adobe.com/f4m/2.0}mimeType'],
1906 'base URL', default=None)
1907 if mime_type and mime_type.startswith('audio/'):
1908 vcodec = 'none'
1909
b2527359 1910 for i, media_el in enumerate(media_nodes):
77b8b4e6
S
1911 tbr = int_or_none(media_el.attrib.get('bitrate'))
1912 width = int_or_none(media_el.attrib.get('width'))
1913 height = int_or_none(media_el.attrib.get('height'))
1914 format_id = '-'.join(filter(None, [f4m_id, compat_str(i if tbr is None else tbr)]))
448bb5f3
YCH
1915 # If <bootstrapInfo> is present, the specified f4m is a
1916 # stream-level manifest, and only set-level manifests may refer to
1917 # external resources. See section 11.4 and section 4 of F4M spec
1918 if bootstrap_info is None:
1919 media_url = None
1920 # @href is introduced in 2.0, see section 11.6 of F4M spec
1921 if manifest_version == '2.0':
1922 media_url = media_el.attrib.get('href')
1923 if media_url is None:
1924 media_url = media_el.attrib.get('url')
31c746e5
S
1925 if not media_url:
1926 continue
cc357c4d
S
1927 manifest_url = (
1928 media_url if media_url.startswith('http://') or media_url.startswith('https://')
48107c19 1929 else ((manifest_base_url or '/'.join(manifest_url.split('/')[:-1])) + '/' + media_url))
70f0f5a8
S
1930 # If media_url is itself a f4m manifest do the recursive extraction
1931 # since bitrates in parent manifest (this one) and media_url manifest
1932 # may differ leading to inability to resolve the format by requested
1933 # bitrate in f4m downloader
240b6045
YCH
1934 ext = determine_ext(manifest_url)
1935 if ext == 'f4m':
77b8b4e6 1936 f4m_formats = self._extract_f4m_formats(
f983b875 1937 manifest_url, video_id, preference=preference, quality=quality, f4m_id=f4m_id,
77b8b4e6
S
1938 transform_source=transform_source, fatal=fatal)
1939 # Sometimes stream-level manifest contains single media entry that
1940 # does not contain any quality metadata (e.g. http://matchtv.ru/#live-player).
1941 # At the same time parent's media entry in set-level manifest may
1942 # contain it. We will copy it from parent in such cases.
1943 if len(f4m_formats) == 1:
1944 f = f4m_formats[0]
1945 f.update({
1946 'tbr': f.get('tbr') or tbr,
1947 'width': f.get('width') or width,
1948 'height': f.get('height') or height,
1949 'format_id': f.get('format_id') if not tbr else format_id,
edd6074c 1950 'vcodec': vcodec,
77b8b4e6
S
1951 })
1952 formats.extend(f4m_formats)
70f0f5a8 1953 continue
240b6045
YCH
1954 elif ext == 'm3u8':
1955 formats.extend(self._extract_m3u8_formats(
1956 manifest_url, video_id, 'mp4', preference=preference,
f983b875 1957 quality=quality, m3u8_id=m3u8_id, fatal=fatal))
240b6045 1958 continue
31bb8d3f 1959 formats.append({
77b8b4e6 1960 'format_id': format_id,
31bb8d3f 1961 'url': manifest_url,
30d0b549 1962 'manifest_url': manifest_url,
a6571f10 1963 'ext': 'flv' if bootstrap_info is not None else None,
187ee66c 1964 'protocol': 'f4m',
b2527359 1965 'tbr': tbr,
77b8b4e6
S
1966 'width': width,
1967 'height': height,
edd6074c 1968 'vcodec': vcodec,
60ca389c 1969 'preference': preference,
f983b875 1970 'quality': quality,
31bb8d3f 1971 })
31bb8d3f
JMF
1972 return formats
1973
f983b875 1974 def _m3u8_meta_format(self, m3u8_url, ext=None, preference=None, quality=None, m3u8_id=None):
16da9bbc 1975 return {
f207019c 1976 'format_id': '-'.join(filter(None, [m3u8_id, 'meta'])),
704df56d
PH
1977 'url': m3u8_url,
1978 'ext': ext,
1979 'protocol': 'm3u8',
37768f92 1980 'preference': preference - 100 if preference else -100,
f983b875 1981 'quality': quality,
704df56d
PH
1982 'resolution': 'multiple',
1983 'format_note': 'Quality selection URL',
16da9bbc
YCH
1984 }
1985
b5ae35ee 1986 def _report_ignoring_subs(self, name):
1987 self.report_warning(bug_reports_message(
1988 f'Ignoring subtitle tracks found in the {name} manifest; '
1989 'if any subtitle tracks are missing,'
1990 ), only_once=True)
1991
a0c3b2d5
F
1992 def _extract_m3u8_formats(self, *args, **kwargs):
1993 fmts, subs = self._extract_m3u8_formats_and_subtitles(*args, **kwargs)
1994 if subs:
b5ae35ee 1995 self._report_ignoring_subs('HLS')
a0c3b2d5
F
1996 return fmts
1997
1998 def _extract_m3u8_formats_and_subtitles(
177877c5 1999 self, m3u8_url, video_id, ext=None, entry_protocol='m3u8_native',
a0c3b2d5
F
2000 preference=None, quality=None, m3u8_id=None, note=None,
2001 errnote=None, fatal=True, live=False, data=None, headers={},
2002 query={}):
2003
dbd82a1d 2004 res = self._download_webpage_handle(
81515ad9 2005 m3u8_url, video_id,
37a3bb66 2006 note='Downloading m3u8 information' if note is None else note,
2007 errnote='Failed to download m3u8 information' if errnote is None else errnote,
7360c06f 2008 fatal=fatal, data=data, headers=headers, query=query)
cb252080 2009
dbd82a1d 2010 if res is False:
a0c3b2d5 2011 return [], {}
cb252080 2012
dbd82a1d 2013 m3u8_doc, urlh = res
37113045 2014 m3u8_url = urlh.geturl()
9cdffeeb 2015
a0c3b2d5 2016 return self._parse_m3u8_formats_and_subtitles(
cb252080 2017 m3u8_doc, m3u8_url, ext=ext, entry_protocol=entry_protocol,
310c2ed2 2018 preference=preference, quality=quality, m3u8_id=m3u8_id,
2019 note=note, errnote=errnote, fatal=fatal, live=live, data=data,
2020 headers=headers, query=query, video_id=video_id)
cb252080 2021
a0c3b2d5 2022 def _parse_m3u8_formats_and_subtitles(
177877c5 2023 self, m3u8_doc, m3u8_url, ext=None, entry_protocol='m3u8_native',
a0c3b2d5
F
2024 preference=None, quality=None, m3u8_id=None, live=False, note=None,
2025 errnote=None, fatal=True, data=None, headers={}, query={},
2026 video_id=None):
60755938 2027 formats, subtitles = [], {}
a0c3b2d5 2028
08a00eef 2029 if '#EXT-X-FAXS-CM:' in m3u8_doc: # Adobe Flash Access
60755938 2030 return formats, subtitles
08a00eef 2031
ba107574 2032 has_drm = re.search(r'#EXT-X-(?:SESSION-)?KEY:.*?URI="skd://', m3u8_doc)
a0c3b2d5 2033
60755938 2034 def format_url(url):
2035 return url if re.match(r'^https?://', url) else compat_urlparse.urljoin(m3u8_url, url)
2036
2037 if self.get_param('hls_split_discontinuity', False):
2038 def _extract_m3u8_playlist_indices(manifest_url=None, m3u8_doc=None):
2039 if not m3u8_doc:
2040 if not manifest_url:
2041 return []
2042 m3u8_doc = self._download_webpage(
2043 manifest_url, video_id, fatal=fatal, data=data, headers=headers,
2044 note=False, errnote='Failed to download m3u8 playlist information')
2045 if m3u8_doc is False:
2046 return []
2047 return range(1 + sum(line.startswith('#EXT-X-DISCONTINUITY') for line in m3u8_doc.splitlines()))
0def7587 2048
60755938 2049 else:
2050 def _extract_m3u8_playlist_indices(*args, **kwargs):
2051 return [None]
310c2ed2 2052
cb252080
S
2053 # References:
2054 # 1. https://tools.ietf.org/html/draft-pantos-http-live-streaming-21
067aa17e
S
2055 # 2. https://github.com/ytdl-org/youtube-dl/issues/12211
2056 # 3. https://github.com/ytdl-org/youtube-dl/issues/18923
cb252080
S
2057
2058 # We should try extracting formats only from master playlists [1, 4.3.4],
2059 # i.e. playlists that describe available qualities. On the other hand
2060 # media playlists [1, 4.3.3] should be returned as is since they contain
2061 # just the media without qualities renditions.
9cdffeeb 2062 # Fortunately, master playlist can be easily distinguished from media
cb252080 2063 # playlist based on particular tags availability. As of [1, 4.3.3, 4.3.4]
a0566bbf 2064 # master playlist tags MUST NOT appear in a media playlist and vice versa.
cb252080
S
2065 # As of [1, 4.3.3.1] #EXT-X-TARGETDURATION tag is REQUIRED for every
2066 # media playlist and MUST NOT appear in master playlist thus we can
2067 # clearly detect media playlist with this criterion.
2068
9cdffeeb 2069 if '#EXT-X-TARGETDURATION' in m3u8_doc: # media playlist, return as is
60755938 2070 formats = [{
2071 'format_id': '-'.join(map(str, filter(None, [m3u8_id, idx]))),
2072 'format_index': idx,
2073 'url': m3u8_url,
2074 'ext': ext,
2075 'protocol': entry_protocol,
2076 'preference': preference,
2077 'quality': quality,
88acdbc2 2078 'has_drm': has_drm,
60755938 2079 } for idx in _extract_m3u8_playlist_indices(m3u8_doc=m3u8_doc)]
310c2ed2 2080
a0c3b2d5 2081 return formats, subtitles
cb252080
S
2082
2083 groups = {}
2084 last_stream_inf = {}
2085
2086 def extract_media(x_media_line):
2087 media = parse_m3u8_attributes(x_media_line)
2088 # As per [1, 4.3.4.1] TYPE, GROUP-ID and NAME are REQUIRED
2089 media_type, group_id, name = media.get('TYPE'), media.get('GROUP-ID'), media.get('NAME')
2090 if not (media_type and group_id and name):
2091 return
2092 groups.setdefault(group_id, []).append(media)
a0c3b2d5
F
2093 # <https://tools.ietf.org/html/rfc8216#section-4.3.4.1>
2094 if media_type == 'SUBTITLES':
3907333c 2095 # According to RFC 8216 §4.3.4.2.1, URI is REQUIRED in the
2096 # EXT-X-MEDIA tag if the media type is SUBTITLES.
2097 # However, lack of URI has been spotted in the wild.
2098 # e.g. NebulaIE; see https://github.com/yt-dlp/yt-dlp/issues/339
2099 if not media.get('URI'):
2100 return
a0c3b2d5
F
2101 url = format_url(media['URI'])
2102 sub_info = {
2103 'url': url,
2104 'ext': determine_ext(url),
2105 }
4a2f19ab
F
2106 if sub_info['ext'] == 'm3u8':
2107 # Per RFC 8216 §3.1, the only possible subtitle format m3u8
2108 # files may contain is WebVTT:
2109 # <https://tools.ietf.org/html/rfc8216#section-3.1>
2110 sub_info['ext'] = 'vtt'
2111 sub_info['protocol'] = 'm3u8_native'
37a3bb66 2112 lang = media.get('LANGUAGE') or 'und'
a0c3b2d5 2113 subtitles.setdefault(lang, []).append(sub_info)
cb252080
S
2114 if media_type not in ('VIDEO', 'AUDIO'):
2115 return
2116 media_url = media.get('URI')
2117 if media_url:
310c2ed2 2118 manifest_url = format_url(media_url)
60755938 2119 formats.extend({
2120 'format_id': '-'.join(map(str, filter(None, (m3u8_id, group_id, name, idx)))),
2121 'format_note': name,
2122 'format_index': idx,
2123 'url': manifest_url,
2124 'manifest_url': m3u8_url,
2125 'language': media.get('LANGUAGE'),
2126 'ext': ext,
2127 'protocol': entry_protocol,
2128 'preference': preference,
2129 'quality': quality,
2130 'vcodec': 'none' if media_type == 'AUDIO' else None,
2131 } for idx in _extract_m3u8_playlist_indices(manifest_url))
cb252080
S
2132
2133 def build_stream_name():
2134 # Despite specification does not mention NAME attribute for
3019cb0c
S
2135 # EXT-X-STREAM-INF tag it still sometimes may be present (see [1]
2136 # or vidio test in TestInfoExtractor.test_parse_m3u8_formats)
ddd258f9 2137 # 1. http://www.vidio.com/watch/165683-dj_ambred-booyah-live-2015
cb252080
S
2138 stream_name = last_stream_inf.get('NAME')
2139 if stream_name:
2140 return stream_name
2141 # If there is no NAME in EXT-X-STREAM-INF it will be obtained
2142 # from corresponding rendition group
2143 stream_group_id = last_stream_inf.get('VIDEO')
2144 if not stream_group_id:
2145 return
2146 stream_group = groups.get(stream_group_id)
2147 if not stream_group:
2148 return stream_group_id
2149 rendition = stream_group[0]
2150 return rendition.get('NAME') or stream_group_id
2151
379306ef 2152 # parse EXT-X-MEDIA tags before EXT-X-STREAM-INF in order to have the
2bfc1d9d
RA
2153 # chance to detect video only formats when EXT-X-STREAM-INF tags
2154 # precede EXT-X-MEDIA tags in HLS manifest such as [3].
2155 for line in m3u8_doc.splitlines():
2156 if line.startswith('#EXT-X-MEDIA:'):
2157 extract_media(line)
2158
704df56d
PH
2159 for line in m3u8_doc.splitlines():
2160 if line.startswith('#EXT-X-STREAM-INF:'):
cb252080 2161 last_stream_inf = parse_m3u8_attributes(line)
704df56d
PH
2162 elif line.startswith('#') or not line.strip():
2163 continue
2164 else:
9c99bef7 2165 tbr = float_or_none(
3089bc74
S
2166 last_stream_inf.get('AVERAGE-BANDWIDTH')
2167 or last_stream_inf.get('BANDWIDTH'), scale=1000)
30d0b549 2168 manifest_url = format_url(line.strip())
5ef62fc4 2169
60755938 2170 for idx in _extract_m3u8_playlist_indices(manifest_url):
2171 format_id = [m3u8_id, None, idx]
310c2ed2 2172 # Bandwidth of live streams may differ over time thus making
2173 # format_id unpredictable. So it's better to keep provided
2174 # format_id intact.
2175 if not live:
60755938 2176 stream_name = build_stream_name()
2177 format_id[1] = stream_name if stream_name else '%d' % (tbr if tbr else len(formats))
310c2ed2 2178 f = {
60755938 2179 'format_id': '-'.join(map(str, filter(None, format_id))),
2180 'format_index': idx,
310c2ed2 2181 'url': manifest_url,
2182 'manifest_url': m3u8_url,
2183 'tbr': tbr,
2184 'ext': ext,
2185 'fps': float_or_none(last_stream_inf.get('FRAME-RATE')),
2186 'protocol': entry_protocol,
2187 'preference': preference,
2188 'quality': quality,
2189 }
2190 resolution = last_stream_inf.get('RESOLUTION')
2191 if resolution:
2192 mobj = re.search(r'(?P<width>\d+)[xX](?P<height>\d+)', resolution)
2193 if mobj:
2194 f['width'] = int(mobj.group('width'))
2195 f['height'] = int(mobj.group('height'))
2196 # Unified Streaming Platform
2197 mobj = re.search(
2198 r'audio.*?(?:%3D|=)(\d+)(?:-video.*?(?:%3D|=)(\d+))?', f['url'])
2199 if mobj:
2200 abr, vbr = mobj.groups()
2201 abr, vbr = float_or_none(abr, 1000), float_or_none(vbr, 1000)
2202 f.update({
2203 'vbr': vbr,
2204 'abr': abr,
2205 })
2206 codecs = parse_codecs(last_stream_inf.get('CODECS'))
2207 f.update(codecs)
2208 audio_group_id = last_stream_inf.get('AUDIO')
2209 # As per [1, 4.3.4.1.1] any EXT-X-STREAM-INF tag which
2210 # references a rendition group MUST have a CODECS attribute.
2211 # However, this is not always respected, for example, [2]
2212 # contains EXT-X-STREAM-INF tag which references AUDIO
2213 # rendition group but does not have CODECS and despite
2214 # referencing an audio group it represents a complete
2215 # (with audio and video) format. So, for such cases we will
2216 # ignore references to rendition groups and treat them
2217 # as complete formats.
2218 if audio_group_id and codecs and f.get('vcodec') != 'none':
2219 audio_group = groups.get(audio_group_id)
2220 if audio_group and audio_group[0].get('URI'):
2221 # TODO: update acodec for audio only formats with
2222 # the same GROUP-ID
2223 f['acodec'] = 'none'
fc21af50 2224 if not f.get('ext'):
2225 f['ext'] = 'm4a' if f.get('vcodec') == 'none' else 'mp4'
310c2ed2 2226 formats.append(f)
2227
2228 # for DailyMotion
2229 progressive_uri = last_stream_inf.get('PROGRESSIVE-URI')
2230 if progressive_uri:
2231 http_f = f.copy()
2232 del http_f['manifest_url']
2233 http_f.update({
2234 'format_id': f['format_id'].replace('hls-', 'http-'),
2235 'protocol': 'http',
2236 'url': progressive_uri,
2237 })
2238 formats.append(http_f)
5ef62fc4 2239
cb252080 2240 last_stream_inf = {}
a0c3b2d5 2241 return formats, subtitles
704df56d 2242
3cf4b91d
C
2243 def _extract_m3u8_vod_duration(
2244 self, m3u8_vod_url, video_id, note=None, errnote=None, data=None, headers={}, query={}):
2245
2246 m3u8_vod = self._download_webpage(
2247 m3u8_vod_url, video_id,
2248 note='Downloading m3u8 VOD manifest' if note is None else note,
2249 errnote='Failed to download VOD manifest' if errnote is None else errnote,
2250 fatal=False, data=data, headers=headers, query=query)
2251
2252 return self._parse_m3u8_vod_duration(m3u8_vod or '', video_id)
2253
2254 def _parse_m3u8_vod_duration(self, m3u8_vod, video_id):
2255 if '#EXT-X-PLAYLIST-TYPE:VOD' not in m3u8_vod:
2256 return None
2257
2258 return int(sum(
2259 float(line[len('#EXTINF:'):].split(',')[0])
2260 for line in m3u8_vod.splitlines() if line.startswith('#EXTINF:'))) or None
2261
a107193e
S
2262 @staticmethod
2263 def _xpath_ns(path, namespace=None):
2264 if not namespace:
2265 return path
2266 out = []
2267 for c in path.split('/'):
2268 if not c or c == '.':
2269 out.append(c)
2270 else:
2271 out.append('{%s}%s' % (namespace, c))
2272 return '/'.join(out)
2273
da1c94ee 2274 def _extract_smil_formats_and_subtitles(self, smil_url, video_id, fatal=True, f4m_params=None, transform_source=None):
09f572fb 2275 smil = self._download_smil(smil_url, video_id, fatal=fatal, transform_source=transform_source)
a107193e 2276
995029a1
PH
2277 if smil is False:
2278 assert not fatal
2279 return []
e89a2aab 2280
17712eeb 2281 namespace = self._parse_smil_namespace(smil)
a107193e 2282
da1c94ee 2283 fmts = self._parse_smil_formats(
a107193e 2284 smil, smil_url, video_id, namespace=namespace, f4m_params=f4m_params)
da1c94ee
F
2285 subs = self._parse_smil_subtitles(
2286 smil, namespace=namespace)
2287
2288 return fmts, subs
2289
2290 def _extract_smil_formats(self, *args, **kwargs):
2291 fmts, subs = self._extract_smil_formats_and_subtitles(*args, **kwargs)
2292 if subs:
b5ae35ee 2293 self._report_ignoring_subs('SMIL')
da1c94ee 2294 return fmts
a107193e
S
2295
2296 def _extract_smil_info(self, smil_url, video_id, fatal=True, f4m_params=None):
2297 smil = self._download_smil(smil_url, video_id, fatal=fatal)
2298 if smil is False:
2299 return {}
2300 return self._parse_smil(smil, smil_url, video_id, f4m_params=f4m_params)
2301
09f572fb 2302 def _download_smil(self, smil_url, video_id, fatal=True, transform_source=None):
a107193e
S
2303 return self._download_xml(
2304 smil_url, video_id, 'Downloading SMIL file',
09f572fb 2305 'Unable to download SMIL file', fatal=fatal, transform_source=transform_source)
a107193e
S
2306
2307 def _parse_smil(self, smil, smil_url, video_id, f4m_params=None):
17712eeb 2308 namespace = self._parse_smil_namespace(smil)
a107193e
S
2309
2310 formats = self._parse_smil_formats(
2311 smil, smil_url, video_id, namespace=namespace, f4m_params=f4m_params)
2312 subtitles = self._parse_smil_subtitles(smil, namespace=namespace)
2313
2314 video_id = os.path.splitext(url_basename(smil_url))[0]
2315 title = None
2316 description = None
647eab45 2317 upload_date = None
a107193e
S
2318 for meta in smil.findall(self._xpath_ns('./head/meta', namespace)):
2319 name = meta.attrib.get('name')
2320 content = meta.attrib.get('content')
2321 if not name or not content:
2322 continue
2323 if not title and name == 'title':
2324 title = content
2325 elif not description and name in ('description', 'abstract'):
2326 description = content
647eab45
S
2327 elif not upload_date and name == 'date':
2328 upload_date = unified_strdate(content)
a107193e 2329
1e5bcdec
S
2330 thumbnails = [{
2331 'id': image.get('type'),
2332 'url': image.get('src'),
2333 'width': int_or_none(image.get('width')),
2334 'height': int_or_none(image.get('height')),
2335 } for image in smil.findall(self._xpath_ns('.//image', namespace)) if image.get('src')]
2336
a107193e
S
2337 return {
2338 'id': video_id,
2339 'title': title or video_id,
2340 'description': description,
647eab45 2341 'upload_date': upload_date,
1e5bcdec 2342 'thumbnails': thumbnails,
a107193e
S
2343 'formats': formats,
2344 'subtitles': subtitles,
2345 }
2346
17712eeb
S
2347 def _parse_smil_namespace(self, smil):
2348 return self._search_regex(
2349 r'(?i)^{([^}]+)?}smil$', smil.tag, 'namespace', default=None)
2350
f877c6ae 2351 def _parse_smil_formats(self, smil, smil_url, video_id, namespace=None, f4m_params=None, transform_rtmp_url=None):
a107193e
S
2352 base = smil_url
2353 for meta in smil.findall(self._xpath_ns('./head/meta', namespace)):
2354 b = meta.get('base') or meta.get('httpBase')
2355 if b:
2356 base = b
2357 break
e89a2aab
S
2358
2359 formats = []
2360 rtmp_count = 0
a107193e 2361 http_count = 0
7f32e5dc 2362 m3u8_count = 0
9359f3d4 2363 imgs_count = 0
a107193e 2364
9359f3d4 2365 srcs = set()
ad96b4c8
YCH
2366 media = smil.findall(self._xpath_ns('.//video', namespace)) + smil.findall(self._xpath_ns('.//audio', namespace))
2367 for medium in media:
2368 src = medium.get('src')
81e1c4e2 2369 if not src or src in srcs:
a107193e 2370 continue
9359f3d4 2371 srcs.add(src)
a107193e 2372
ad96b4c8
YCH
2373 bitrate = float_or_none(medium.get('system-bitrate') or medium.get('systemBitrate'), 1000)
2374 filesize = int_or_none(medium.get('size') or medium.get('fileSize'))
2375 width = int_or_none(medium.get('width'))
2376 height = int_or_none(medium.get('height'))
2377 proto = medium.get('proto')
2378 ext = medium.get('ext')
a107193e 2379 src_ext = determine_ext(src)
ad96b4c8 2380 streamer = medium.get('streamer') or base
a107193e
S
2381
2382 if proto == 'rtmp' or streamer.startswith('rtmp'):
2383 rtmp_count += 1
2384 formats.append({
2385 'url': streamer,
2386 'play_path': src,
2387 'ext': 'flv',
2388 'format_id': 'rtmp-%d' % (rtmp_count if bitrate is None else bitrate),
2389 'tbr': bitrate,
2390 'filesize': filesize,
2391 'width': width,
2392 'height': height,
2393 })
f877c6ae
YCH
2394 if transform_rtmp_url:
2395 streamer, src = transform_rtmp_url(streamer, src)
2396 formats[-1].update({
2397 'url': streamer,
2398 'play_path': src,
2399 })
a107193e
S
2400 continue
2401
2402 src_url = src if src.startswith('http') else compat_urlparse.urljoin(base, src)
c349456e 2403 src_url = src_url.strip()
a107193e
S
2404
2405 if proto == 'm3u8' or src_ext == 'm3u8':
7f32e5dc 2406 m3u8_formats = self._extract_m3u8_formats(
2407 src_url, video_id, ext or 'mp4', m3u8_id='hls', fatal=False)
2408 if len(m3u8_formats) == 1:
2409 m3u8_count += 1
2410 m3u8_formats[0].update({
2411 'format_id': 'hls-%d' % (m3u8_count if bitrate is None else bitrate),
2412 'tbr': bitrate,
2413 'width': width,
2414 'height': height,
2415 })
2416 formats.extend(m3u8_formats)
bd21ead2 2417 elif src_ext == 'f4m':
a107193e
S
2418 f4m_url = src_url
2419 if not f4m_params:
2420 f4m_params = {
2421 'hdcore': '3.2.0',
2422 'plugin': 'flowplayer-3.2.0.1',
2423 }
2424 f4m_url += '&' if '?' in f4m_url else '?'
15707c7e 2425 f4m_url += compat_urllib_parse_urlencode(f4m_params)
7e5edcfd 2426 formats.extend(self._extract_f4m_formats(f4m_url, video_id, f4m_id='hds', fatal=False))
bd21ead2
RA
2427 elif src_ext == 'mpd':
2428 formats.extend(self._extract_mpd_formats(
2429 src_url, video_id, mpd_id='dash', fatal=False))
2430 elif re.search(r'\.ism/[Mm]anifest', src_url):
2431 formats.extend(self._extract_ism_formats(
2432 src_url, video_id, ism_id='mss', fatal=False))
2433 elif src_url.startswith('http') and self._is_valid_url(src, video_id):
a107193e
S
2434 http_count += 1
2435 formats.append({
2436 'url': src_url,
2437 'ext': ext or src_ext or 'flv',
2438 'format_id': 'http-%d' % (bitrate or http_count),
2439 'tbr': bitrate,
2440 'filesize': filesize,
2441 'width': width,
2442 'height': height,
2443 })
63757032 2444
9359f3d4
F
2445 for medium in smil.findall(self._xpath_ns('.//imagestream', namespace)):
2446 src = medium.get('src')
2447 if not src or src in srcs:
2448 continue
2449 srcs.add(src)
2450
2451 imgs_count += 1
2452 formats.append({
2453 'format_id': 'imagestream-%d' % (imgs_count),
2454 'url': src,
2455 'ext': mimetype2ext(medium.get('type')),
2456 'acodec': 'none',
2457 'vcodec': 'none',
2458 'width': int_or_none(medium.get('width')),
2459 'height': int_or_none(medium.get('height')),
2460 'format_note': 'SMIL storyboards',
2461 })
2462
e89a2aab
S
2463 return formats
2464
ce00af87 2465 def _parse_smil_subtitles(self, smil, namespace=None, subtitles_lang='en'):
d413095f 2466 urls = []
a107193e
S
2467 subtitles = {}
2468 for num, textstream in enumerate(smil.findall(self._xpath_ns('.//textstream', namespace))):
2469 src = textstream.get('src')
d413095f 2470 if not src or src in urls:
a107193e 2471 continue
d413095f 2472 urls.append(src)
df634be2 2473 ext = textstream.get('ext') or mimetype2ext(textstream.get('type')) or determine_ext(src)
03bc7237 2474 lang = textstream.get('systemLanguage') or textstream.get('systemLanguageName') or textstream.get('lang') or subtitles_lang
a107193e
S
2475 subtitles.setdefault(lang, []).append({
2476 'url': src,
2477 'ext': ext,
2478 })
2479 return subtitles
63757032 2480
47a5cb77 2481 def _extract_xspf_playlist(self, xspf_url, playlist_id, fatal=True):
942acef5 2482 xspf = self._download_xml(
47a5cb77 2483 xspf_url, playlist_id, 'Downloading xpsf playlist',
942acef5
S
2484 'Unable to download xspf manifest', fatal=fatal)
2485 if xspf is False:
2486 return []
47a5cb77
S
2487 return self._parse_xspf(
2488 xspf, playlist_id, xspf_url=xspf_url,
2489 xspf_base_url=base_url(xspf_url))
8d6765cf 2490
47a5cb77 2491 def _parse_xspf(self, xspf_doc, playlist_id, xspf_url=None, xspf_base_url=None):
8d6765cf
S
2492 NS_MAP = {
2493 'xspf': 'http://xspf.org/ns/0/',
2494 's1': 'http://static.streamone.nl/player/ns/0',
2495 }
2496
2497 entries = []
47a5cb77 2498 for track in xspf_doc.findall(xpath_with_ns('./xspf:trackList/xspf:track', NS_MAP)):
8d6765cf 2499 title = xpath_text(
98044462 2500 track, xpath_with_ns('./xspf:title', NS_MAP), 'title', default=playlist_id)
8d6765cf
S
2501 description = xpath_text(
2502 track, xpath_with_ns('./xspf:annotation', NS_MAP), 'description')
2503 thumbnail = xpath_text(
2504 track, xpath_with_ns('./xspf:image', NS_MAP), 'thumbnail')
2505 duration = float_or_none(
2506 xpath_text(track, xpath_with_ns('./xspf:duration', NS_MAP), 'duration'), 1000)
2507
47a5cb77
S
2508 formats = []
2509 for location in track.findall(xpath_with_ns('./xspf:location', NS_MAP)):
2510 format_url = urljoin(xspf_base_url, location.text)
2511 if not format_url:
2512 continue
2513 formats.append({
2514 'url': format_url,
2515 'manifest_url': xspf_url,
2516 'format_id': location.get(xpath_with_ns('s1:label', NS_MAP)),
2517 'width': int_or_none(location.get(xpath_with_ns('s1:width', NS_MAP))),
2518 'height': int_or_none(location.get(xpath_with_ns('s1:height', NS_MAP))),
2519 })
8d6765cf
S
2520 self._sort_formats(formats)
2521
2522 entries.append({
2523 'id': playlist_id,
2524 'title': title,
2525 'description': description,
2526 'thumbnail': thumbnail,
2527 'duration': duration,
2528 'formats': formats,
2529 })
2530 return entries
2531
171e59ed
F
2532 def _extract_mpd_formats(self, *args, **kwargs):
2533 fmts, subs = self._extract_mpd_formats_and_subtitles(*args, **kwargs)
2534 if subs:
b5ae35ee 2535 self._report_ignoring_subs('DASH')
171e59ed
F
2536 return fmts
2537
2538 def _extract_mpd_formats_and_subtitles(
2539 self, mpd_url, video_id, mpd_id=None, note=None, errnote=None,
2540 fatal=True, data=None, headers={}, query={}):
47a5cb77 2541 res = self._download_xml_handle(
1bac3455 2542 mpd_url, video_id,
37a3bb66 2543 note='Downloading MPD manifest' if note is None else note,
2544 errnote='Failed to download MPD manifest' if errnote is None else errnote,
7360c06f 2545 fatal=fatal, data=data, headers=headers, query=query)
1bac3455 2546 if res is False:
171e59ed 2547 return [], {}
47a5cb77 2548 mpd_doc, urlh = res
c25720ef 2549 if mpd_doc is None:
171e59ed 2550 return [], {}
02dc0a36 2551 mpd_base_url = base_url(urlh.geturl())
1bac3455 2552
171e59ed 2553 return self._parse_mpd_formats_and_subtitles(
545cc85d 2554 mpd_doc, mpd_id, mpd_base_url, mpd_url)
2d2fa82d 2555
171e59ed
F
2556 def _parse_mpd_formats(self, *args, **kwargs):
2557 fmts, subs = self._parse_mpd_formats_and_subtitles(*args, **kwargs)
2558 if subs:
b5ae35ee 2559 self._report_ignoring_subs('DASH')
171e59ed
F
2560 return fmts
2561
2562 def _parse_mpd_formats_and_subtitles(
2563 self, mpd_doc, mpd_id=None, mpd_base_url='', mpd_url=None):
f0948348
S
2564 """
2565 Parse formats from MPD manifest.
2566 References:
2567 1. MPEG-DASH Standard, ISO/IEC 23009-1:2014(E),
2568 http://standards.iso.org/ittf/PubliclyAvailableStandards/c065274_ISO_IEC_23009-1_2014.zip
2569 2. https://en.wikipedia.org/wiki/Dynamic_Adaptive_Streaming_over_HTTP
2570 """
a06916d9 2571 if not self.get_param('dynamic_mpd', True):
78895bd3 2572 if mpd_doc.get('type') == 'dynamic':
171e59ed 2573 return [], {}
2d2fa82d 2574
91cb6b50 2575 namespace = self._search_regex(r'(?i)^{([^}]+)?}MPD$', mpd_doc.tag, 'namespace', default=None)
f14be228 2576
2577 def _add_ns(path):
2578 return self._xpath_ns(path, namespace)
2579
675d0016 2580 def is_drm_protected(element):
2581 return element.find(_add_ns('ContentProtection')) is not None
2582
1bac3455 2583 def extract_multisegment_info(element, ms_parent_info):
2584 ms_info = ms_parent_info.copy()
b4c1d6e8
S
2585
2586 # As per [1, 5.3.9.2.2] SegmentList and SegmentTemplate share some
2587 # common attributes and elements. We will only extract relevant
2588 # for us.
2589 def extract_common(source):
2590 segment_timeline = source.find(_add_ns('SegmentTimeline'))
2591 if segment_timeline is not None:
2592 s_e = segment_timeline.findall(_add_ns('S'))
2593 if s_e:
2594 ms_info['total_number'] = 0
2595 ms_info['s'] = []
2596 for s in s_e:
2597 r = int(s.get('r', 0))
2598 ms_info['total_number'] += 1 + r
2599 ms_info['s'].append({
2600 't': int(s.get('t', 0)),
2601 # @d is mandatory (see [1, 5.3.9.6.2, Table 17, page 60])
2602 'd': int(s.attrib['d']),
2603 'r': r,
2604 })
2605 start_number = source.get('startNumber')
2606 if start_number:
2607 ms_info['start_number'] = int(start_number)
2608 timescale = source.get('timescale')
2609 if timescale:
2610 ms_info['timescale'] = int(timescale)
2611 segment_duration = source.get('duration')
2612 if segment_duration:
48504785 2613 ms_info['segment_duration'] = float(segment_duration)
b4c1d6e8
S
2614
2615 def extract_Initialization(source):
2616 initialization = source.find(_add_ns('Initialization'))
2617 if initialization is not None:
2618 ms_info['initialization_url'] = initialization.attrib['sourceURL']
2619
f14be228 2620 segment_list = element.find(_add_ns('SegmentList'))
1bac3455 2621 if segment_list is not None:
b4c1d6e8
S
2622 extract_common(segment_list)
2623 extract_Initialization(segment_list)
f14be228 2624 segment_urls_e = segment_list.findall(_add_ns('SegmentURL'))
1bac3455 2625 if segment_urls_e:
2626 ms_info['segment_urls'] = [segment.attrib['media'] for segment in segment_urls_e]
1bac3455 2627 else:
f14be228 2628 segment_template = element.find(_add_ns('SegmentTemplate'))
1bac3455 2629 if segment_template is not None:
b4c1d6e8 2630 extract_common(segment_template)
e228616c
S
2631 media = segment_template.get('media')
2632 if media:
2633 ms_info['media'] = media
1bac3455 2634 initialization = segment_template.get('initialization')
2635 if initialization:
e228616c 2636 ms_info['initialization'] = initialization
1bac3455 2637 else:
b4c1d6e8 2638 extract_Initialization(segment_template)
1bac3455 2639 return ms_info
b323e170 2640
1bac3455 2641 mpd_duration = parse_duration(mpd_doc.get('mediaPresentationDuration'))
6251555f 2642 formats, subtitles = [], {}
2643 stream_numbers = {'audio': 0, 'video': 0}
f14be228 2644 for period in mpd_doc.findall(_add_ns('Period')):
1bac3455 2645 period_duration = parse_duration(period.get('duration')) or mpd_duration
2646 period_ms_info = extract_multisegment_info(period, {
2647 'start_number': 1,
2648 'timescale': 1,
2649 })
f14be228 2650 for adaptation_set in period.findall(_add_ns('AdaptationSet')):
1bac3455 2651 adaption_set_ms_info = extract_multisegment_info(adaptation_set, period_ms_info)
f14be228 2652 for representation in adaptation_set.findall(_add_ns('Representation')):
1bac3455 2653 representation_attrib = adaptation_set.attrib.copy()
2654 representation_attrib.update(representation.attrib)
f0948348 2655 # According to [1, 5.3.7.2, Table 9, page 41], @mimeType is mandatory
a6c8b759 2656 mime_type = representation_attrib['mimeType']
171e59ed
F
2657 content_type = representation_attrib.get('contentType', mime_type.split('/')[0])
2658
be2fc5b2 2659 codecs = representation_attrib.get('codecs', '')
2660 if content_type not in ('video', 'audio', 'text'):
2661 if mime_type == 'image/jpeg':
a8731fcc 2662 content_type = mime_type
2663 elif codecs.split('.')[0] == 'stpp':
be2fc5b2 2664 content_type = 'text'
6993f78d 2665 elif mimetype2ext(mime_type) in ('tt', 'dfxp', 'ttml', 'xml', 'json'):
2666 content_type = 'text'
cdb19aa4 2667 else:
be2fc5b2 2668 self.report_warning('Unknown MIME type %s in DASH manifest' % mime_type)
2669 continue
2670
2671 base_url = ''
2672 for element in (representation, adaptation_set, period, mpd_doc):
2673 base_url_e = element.find(_add_ns('BaseURL'))
2674 if base_url_e is not None:
2675 base_url = base_url_e.text + base_url
2676 if re.match(r'^https?://', base_url):
2677 break
f9cc0161
D
2678 if mpd_base_url and base_url.startswith('/'):
2679 base_url = compat_urlparse.urljoin(mpd_base_url, base_url)
2680 elif mpd_base_url and not re.match(r'^https?://', base_url):
2681 if not mpd_base_url.endswith('/'):
be2fc5b2 2682 mpd_base_url += '/'
2683 base_url = mpd_base_url + base_url
2684 representation_id = representation_attrib.get('id')
2685 lang = representation_attrib.get('lang')
2686 url_el = representation.find(_add_ns('BaseURL'))
2687 filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength') if url_el is not None else None)
2688 bandwidth = int_or_none(representation_attrib.get('bandwidth'))
2689 if representation_id is not None:
2690 format_id = representation_id
2691 else:
2692 format_id = content_type
2693 if mpd_id:
2694 format_id = mpd_id + '-' + format_id
2695 if content_type in ('video', 'audio'):
2696 f = {
2697 'format_id': format_id,
2698 'manifest_url': mpd_url,
2699 'ext': mimetype2ext(mime_type),
2700 'width': int_or_none(representation_attrib.get('width')),
2701 'height': int_or_none(representation_attrib.get('height')),
2702 'tbr': float_or_none(bandwidth, 1000),
2703 'asr': int_or_none(representation_attrib.get('audioSamplingRate')),
2704 'fps': int_or_none(representation_attrib.get('frameRate')),
2705 'language': lang if lang not in ('mul', 'und', 'zxx', 'mis') else None,
2706 'format_note': 'DASH %s' % content_type,
2707 'filesize': filesize,
2708 'container': mimetype2ext(mime_type) + '_dash',
6251555f 2709 'manifest_stream_number': stream_numbers[content_type]
be2fc5b2 2710 }
2711 f.update(parse_codecs(codecs))
6251555f 2712 stream_numbers[content_type] += 1
be2fc5b2 2713 elif content_type == 'text':
2714 f = {
2715 'ext': mimetype2ext(mime_type),
2716 'manifest_url': mpd_url,
2717 'filesize': filesize,
2718 }
2719 elif content_type == 'image/jpeg':
2720 # See test case in VikiIE
2721 # https://www.viki.com/videos/1175236v-choosing-spouse-by-lottery-episode-1
2722 f = {
2723 'format_id': format_id,
2724 'ext': 'mhtml',
2725 'manifest_url': mpd_url,
2726 'format_note': 'DASH storyboards (jpeg)',
2727 'acodec': 'none',
2728 'vcodec': 'none',
2729 }
88acdbc2 2730 if is_drm_protected(adaptation_set) or is_drm_protected(representation):
2731 f['has_drm'] = True
be2fc5b2 2732 representation_ms_info = extract_multisegment_info(representation, adaption_set_ms_info)
2733
2734 def prepare_template(template_name, identifiers):
2735 tmpl = representation_ms_info[template_name]
2736 # First of, % characters outside $...$ templates
2737 # must be escaped by doubling for proper processing
2738 # by % operator string formatting used further (see
2739 # https://github.com/ytdl-org/youtube-dl/issues/16867).
2740 t = ''
2741 in_template = False
2742 for c in tmpl:
2743 t += c
2744 if c == '$':
2745 in_template = not in_template
2746 elif c == '%' and not in_template:
eca1f0d1 2747 t += c
be2fc5b2 2748 # Next, $...$ templates are translated to their
2749 # %(...) counterparts to be used with % operator
2750 if representation_id is not None:
2751 t = t.replace('$RepresentationID$', representation_id)
2752 t = re.sub(r'\$(%s)\$' % '|'.join(identifiers), r'%(\1)d', t)
2753 t = re.sub(r'\$(%s)%%([^$]+)\$' % '|'.join(identifiers), r'%(\1)\2', t)
2754 t.replace('$$', '$')
2755 return t
2756
2757 # @initialization is a regular template like @media one
2758 # so it should be handled just the same way (see
2759 # https://github.com/ytdl-org/youtube-dl/issues/11605)
2760 if 'initialization' in representation_ms_info:
2761 initialization_template = prepare_template(
2762 'initialization',
2763 # As per [1, 5.3.9.4.2, Table 15, page 54] $Number$ and
2764 # $Time$ shall not be included for @initialization thus
2765 # only $Bandwidth$ remains
2766 ('Bandwidth', ))
2767 representation_ms_info['initialization_url'] = initialization_template % {
2768 'Bandwidth': bandwidth,
2769 }
2770
2771 def location_key(location):
2772 return 'url' if re.match(r'^https?://', location) else 'path'
2773
2774 if 'segment_urls' not in representation_ms_info and 'media' in representation_ms_info:
2775
2776 media_template = prepare_template('media', ('Number', 'Bandwidth', 'Time'))
2777 media_location_key = location_key(media_template)
2778
2779 # As per [1, 5.3.9.4.4, Table 16, page 55] $Number$ and $Time$
2780 # can't be used at the same time
2781 if '%(Number' in media_template and 's' not in representation_ms_info:
2782 segment_duration = None
2783 if 'total_number' not in representation_ms_info and 'segment_duration' in representation_ms_info:
2784 segment_duration = float_or_none(representation_ms_info['segment_duration'], representation_ms_info['timescale'])
2785 representation_ms_info['total_number'] = int(math.ceil(float(period_duration) / segment_duration))
2786 representation_ms_info['fragments'] = [{
2787 media_location_key: media_template % {
2788 'Number': segment_number,
2789 'Bandwidth': bandwidth,
2790 },
2791 'duration': segment_duration,
2792 } for segment_number in range(
2793 representation_ms_info['start_number'],
2794 representation_ms_info['total_number'] + representation_ms_info['start_number'])]
2795 else:
2796 # $Number*$ or $Time$ in media template with S list available
2797 # Example $Number*$: http://www.svtplay.se/klipp/9023742/stopptid-om-bjorn-borg
2798 # Example $Time$: https://play.arkena.com/embed/avp/v2/player/media/b41dda37-d8e7-4d3f-b1b5-9a9db578bdfe/1/129411
2799 representation_ms_info['fragments'] = []
2800 segment_time = 0
2801 segment_d = None
2802 segment_number = representation_ms_info['start_number']
2803
2804 def add_segment_url():
2805 segment_url = media_template % {
2806 'Time': segment_time,
2807 'Bandwidth': bandwidth,
2808 'Number': segment_number,
2809 }
2810 representation_ms_info['fragments'].append({
2811 media_location_key: segment_url,
2812 'duration': float_or_none(segment_d, representation_ms_info['timescale']),
2813 })
2814
2815 for num, s in enumerate(representation_ms_info['s']):
2816 segment_time = s.get('t') or segment_time
2817 segment_d = s['d']
2818 add_segment_url()
2819 segment_number += 1
2820 for r in range(s.get('r', 0)):
2821 segment_time += segment_d
f0948348 2822 add_segment_url()
b4c1d6e8 2823 segment_number += 1
be2fc5b2 2824 segment_time += segment_d
2825 elif 'segment_urls' in representation_ms_info and 's' in representation_ms_info:
2826 # No media template
2827 # Example: https://www.youtube.com/watch?v=iXZV5uAYMJI
2828 # or any YouTube dashsegments video
2829 fragments = []
2830 segment_index = 0
2831 timescale = representation_ms_info['timescale']
2832 for s in representation_ms_info['s']:
2833 duration = float_or_none(s['d'], timescale)
2834 for r in range(s.get('r', 0) + 1):
2835 segment_uri = representation_ms_info['segment_urls'][segment_index]
2836 fragments.append({
2837 location_key(segment_uri): segment_uri,
2838 'duration': duration,
2839 })
2840 segment_index += 1
2841 representation_ms_info['fragments'] = fragments
2842 elif 'segment_urls' in representation_ms_info:
2843 # Segment URLs with no SegmentTimeline
2844 # Example: https://www.seznam.cz/zpravy/clanek/cesko-zasahne-vitr-o-sile-vichrice-muze-byt-i-zivotu-nebezpecny-39091
2845 # https://github.com/ytdl-org/youtube-dl/pull/14844
2846 fragments = []
2847 segment_duration = float_or_none(
2848 representation_ms_info['segment_duration'],
2849 representation_ms_info['timescale']) if 'segment_duration' in representation_ms_info else None
2850 for segment_url in representation_ms_info['segment_urls']:
2851 fragment = {
2852 location_key(segment_url): segment_url,
2853 }
2854 if segment_duration:
2855 fragment['duration'] = segment_duration
2856 fragments.append(fragment)
2857 representation_ms_info['fragments'] = fragments
2858 # If there is a fragments key available then we correctly recognized fragmented media.
2859 # Otherwise we will assume unfragmented media with direct access. Technically, such
2860 # assumption is not necessarily correct since we may simply have no support for
2861 # some forms of fragmented media renditions yet, but for now we'll use this fallback.
2862 if 'fragments' in representation_ms_info:
2863 f.update({
2864 # NB: mpd_url may be empty when MPD manifest is parsed from a string
2865 'url': mpd_url or base_url,
2866 'fragment_base_url': base_url,
2867 'fragments': [],
2868 'protocol': 'http_dash_segments' if mime_type != 'image/jpeg' else 'mhtml',
2869 })
2870 if 'initialization_url' in representation_ms_info:
2871 initialization_url = representation_ms_info['initialization_url']
2872 if not f.get('url'):
2873 f['url'] = initialization_url
2874 f['fragments'].append({location_key(initialization_url): initialization_url})
2875 f['fragments'].extend(representation_ms_info['fragments'])
17b598d3 2876 else:
be2fc5b2 2877 # Assuming direct URL to unfragmented media.
2878 f['url'] = base_url
2879 if content_type in ('video', 'audio') or mime_type == 'image/jpeg':
2880 formats.append(f)
2881 elif content_type == 'text':
2882 subtitles.setdefault(lang or 'und', []).append(f)
2883
171e59ed 2884 return formats, subtitles
17b598d3 2885
fd76a142
F
2886 def _extract_ism_formats(self, *args, **kwargs):
2887 fmts, subs = self._extract_ism_formats_and_subtitles(*args, **kwargs)
2888 if subs:
b5ae35ee 2889 self._report_ignoring_subs('ISM')
fd76a142
F
2890 return fmts
2891
2892 def _extract_ism_formats_and_subtitles(self, ism_url, video_id, ism_id=None, note=None, errnote=None, fatal=True, data=None, headers={}, query={}):
47a5cb77 2893 res = self._download_xml_handle(
b2758123 2894 ism_url, video_id,
37a3bb66 2895 note='Downloading ISM manifest' if note is None else note,
2896 errnote='Failed to download ISM manifest' if errnote is None else errnote,
7360c06f 2897 fatal=fatal, data=data, headers=headers, query=query)
b2758123 2898 if res is False:
fd76a142 2899 return [], {}
47a5cb77 2900 ism_doc, urlh = res
13b08034 2901 if ism_doc is None:
fd76a142 2902 return [], {}
b2758123 2903
fd76a142 2904 return self._parse_ism_formats_and_subtitles(ism_doc, urlh.geturl(), ism_id)
b2758123 2905
fd76a142 2906 def _parse_ism_formats_and_subtitles(self, ism_doc, ism_url, ism_id=None):
76d5a363
S
2907 """
2908 Parse formats from ISM manifest.
2909 References:
2910 1. [MS-SSTR]: Smooth Streaming Protocol,
2911 https://msdn.microsoft.com/en-us/library/ff469518.aspx
2912 """
06869367 2913 if ism_doc.get('IsLive') == 'TRUE':
fd76a142 2914 return [], {}
b2758123 2915
b2758123
RA
2916 duration = int(ism_doc.attrib['Duration'])
2917 timescale = int_or_none(ism_doc.get('TimeScale')) or 10000000
2918
2919 formats = []
fd76a142 2920 subtitles = {}
b2758123
RA
2921 for stream in ism_doc.findall('StreamIndex'):
2922 stream_type = stream.get('Type')
fd76a142 2923 if stream_type not in ('video', 'audio', 'text'):
b2758123
RA
2924 continue
2925 url_pattern = stream.attrib['Url']
2926 stream_timescale = int_or_none(stream.get('TimeScale')) or timescale
2927 stream_name = stream.get('Name')
fd76a142 2928 stream_language = stream.get('Language', 'und')
b2758123 2929 for track in stream.findall('QualityLevel'):
e2efe599 2930 fourcc = track.get('FourCC') or ('AACL' if track.get('AudioTag') == '255' else None)
b2758123 2931 # TODO: add support for WVC1 and WMAP
66a1b864 2932 if fourcc not in ('H264', 'AVC1', 'AACL', 'TTML'):
b2758123
RA
2933 self.report_warning('%s is not a supported codec' % fourcc)
2934 continue
2935 tbr = int(track.attrib['Bitrate']) // 1000
76d5a363
S
2936 # [1] does not mention Width and Height attributes. However,
2937 # they're often present while MaxWidth and MaxHeight are
2938 # missing, so should be used as fallbacks
2939 width = int_or_none(track.get('MaxWidth') or track.get('Width'))
2940 height = int_or_none(track.get('MaxHeight') or track.get('Height'))
b2758123
RA
2941 sampling_rate = int_or_none(track.get('SamplingRate'))
2942
2943 track_url_pattern = re.sub(r'{[Bb]itrate}', track.attrib['Bitrate'], url_pattern)
2944 track_url_pattern = compat_urlparse.urljoin(ism_url, track_url_pattern)
2945
2946 fragments = []
2947 fragment_ctx = {
2948 'time': 0,
2949 }
2950 stream_fragments = stream.findall('c')
2951 for stream_fragment_index, stream_fragment in enumerate(stream_fragments):
2952 fragment_ctx['time'] = int_or_none(stream_fragment.get('t')) or fragment_ctx['time']
2953 fragment_repeat = int_or_none(stream_fragment.get('r')) or 1
2954 fragment_ctx['duration'] = int_or_none(stream_fragment.get('d'))
2955 if not fragment_ctx['duration']:
2956 try:
2957 next_fragment_time = int(stream_fragment[stream_fragment_index + 1].attrib['t'])
2958 except IndexError:
2959 next_fragment_time = duration
1616f9b4 2960 fragment_ctx['duration'] = (next_fragment_time - fragment_ctx['time']) / fragment_repeat
b2758123
RA
2961 for _ in range(fragment_repeat):
2962 fragments.append({
1616f9b4 2963 'url': re.sub(r'{start[ _]time}', compat_str(fragment_ctx['time']), track_url_pattern),
b2758123
RA
2964 'duration': fragment_ctx['duration'] / stream_timescale,
2965 })
2966 fragment_ctx['time'] += fragment_ctx['duration']
2967
2968 format_id = []
2969 if ism_id:
2970 format_id.append(ism_id)
2971 if stream_name:
2972 format_id.append(stream_name)
2973 format_id.append(compat_str(tbr))
2974
fd76a142
F
2975 if stream_type == 'text':
2976 subtitles.setdefault(stream_language, []).append({
2977 'ext': 'ismt',
2978 'protocol': 'ism',
2979 'url': ism_url,
2980 'manifest_url': ism_url,
2981 'fragments': fragments,
2982 '_download_params': {
2983 'stream_type': stream_type,
2984 'duration': duration,
2985 'timescale': stream_timescale,
2986 'fourcc': fourcc,
2987 'language': stream_language,
2988 'codec_private_data': track.get('CodecPrivateData'),
2989 }
2990 })
2991 elif stream_type in ('video', 'audio'):
2992 formats.append({
2993 'format_id': '-'.join(format_id),
2994 'url': ism_url,
2995 'manifest_url': ism_url,
2996 'ext': 'ismv' if stream_type == 'video' else 'isma',
2997 'width': width,
2998 'height': height,
2999 'tbr': tbr,
3000 'asr': sampling_rate,
3001 'vcodec': 'none' if stream_type == 'audio' else fourcc,
3002 'acodec': 'none' if stream_type == 'video' else fourcc,
3003 'protocol': 'ism',
3004 'fragments': fragments,
88acdbc2 3005 'has_drm': ism_doc.find('Protection') is not None,
fd76a142
F
3006 '_download_params': {
3007 'stream_type': stream_type,
3008 'duration': duration,
3009 'timescale': stream_timescale,
3010 'width': width or 0,
3011 'height': height or 0,
3012 'fourcc': fourcc,
3013 'language': stream_language,
3014 'codec_private_data': track.get('CodecPrivateData'),
3015 'sampling_rate': sampling_rate,
3016 'channels': int_or_none(track.get('Channels', 2)),
3017 'bits_per_sample': int_or_none(track.get('BitsPerSample', 16)),
3018 'nal_unit_length_field': int_or_none(track.get('NALUnitLengthField', 4)),
3019 },
3020 })
3021 return formats, subtitles
b2758123 3022
f983b875 3023 def _parse_html5_media_entries(self, base_url, webpage, video_id, m3u8_id=None, m3u8_entry_protocol='m3u8', mpd_id=None, preference=None, quality=None):
6780154e
S
3024 def absolute_url(item_url):
3025 return urljoin(base_url, item_url)
59bbe491 3026
3027 def parse_content_type(content_type):
3028 if not content_type:
3029 return {}
3030 ctr = re.search(r'(?P<mimetype>[^/]+/[^;]+)(?:;\s*codecs="?(?P<codecs>[^"]+))?', content_type)
3031 if ctr:
3032 mimetype, codecs = ctr.groups()
3033 f = parse_codecs(codecs)
3034 f['ext'] = mimetype2ext(mimetype)
3035 return f
3036 return {}
3037
868f79db 3038 def _media_formats(src, cur_media_type, type_info={}):
520251c0 3039 full_url = absolute_url(src)
82889d4a 3040 ext = type_info.get('ext') or determine_ext(full_url)
87a449c1 3041 if ext == 'm3u8':
520251c0
YCH
3042 is_plain_url = False
3043 formats = self._extract_m3u8_formats(
ad120ae1 3044 full_url, video_id, ext='mp4',
eeb0a956 3045 entry_protocol=m3u8_entry_protocol, m3u8_id=m3u8_id,
f983b875 3046 preference=preference, quality=quality, fatal=False)
87a449c1
S
3047 elif ext == 'mpd':
3048 is_plain_url = False
3049 formats = self._extract_mpd_formats(
b359e977 3050 full_url, video_id, mpd_id=mpd_id, fatal=False)
520251c0
YCH
3051 else:
3052 is_plain_url = True
3053 formats = [{
3054 'url': full_url,
3055 'vcodec': 'none' if cur_media_type == 'audio' else None,
3056 }]
3057 return is_plain_url, formats
3058
59bbe491 3059 entries = []
4328ddf8
S
3060 # amp-video and amp-audio are very similar to their HTML5 counterparts
3061 # so we wll include them right here (see
3062 # https://www.ampproject.org/docs/reference/components/amp-video)
29f7c58a 3063 # For dl8-* tags see https://delight-vr.com/documentation/dl8-video/
3064 _MEDIA_TAG_NAME_RE = r'(?:(?:amp|dl8(?:-live)?)-)?(video|audio)'
3065 media_tags = [(media_tag, media_tag_name, media_type, '')
3066 for media_tag, media_tag_name, media_type
3067 in re.findall(r'(?s)(<(%s)[^>]*/>)' % _MEDIA_TAG_NAME_RE, webpage)]
2aec7256
S
3068 media_tags.extend(re.findall(
3069 # We only allow video|audio followed by a whitespace or '>'.
3070 # Allowing more characters may end up in significant slow down (see
067aa17e 3071 # https://github.com/ytdl-org/youtube-dl/issues/11979, example URL:
2aec7256 3072 # http://www.porntrex.com/maps/videositemap.xml).
29f7c58a 3073 r'(?s)(<(?P<tag>%s)(?:\s+[^>]*)?>)(.*?)</(?P=tag)>' % _MEDIA_TAG_NAME_RE, webpage))
3074 for media_tag, _, media_type, media_content in media_tags:
59bbe491 3075 media_info = {
3076 'formats': [],
3077 'subtitles': {},
3078 }
3079 media_attributes = extract_attributes(media_tag)
f856816b 3080 src = strip_or_none(media_attributes.get('src'))
59bbe491 3081 if src:
dedb1770 3082 _, formats = _media_formats(src, media_type)
520251c0 3083 media_info['formats'].extend(formats)
6780154e 3084 media_info['thumbnail'] = absolute_url(media_attributes.get('poster'))
59bbe491 3085 if media_content:
3086 for source_tag in re.findall(r'<source[^>]+>', media_content):
d493f15c
S
3087 s_attr = extract_attributes(source_tag)
3088 # data-video-src and data-src are non standard but seen
3089 # several times in the wild
f856816b 3090 src = strip_or_none(dict_get(s_attr, ('src', 'data-video-src', 'data-src')))
59bbe491 3091 if not src:
3092 continue
d493f15c 3093 f = parse_content_type(s_attr.get('type'))
868f79db 3094 is_plain_url, formats = _media_formats(src, media_type, f)
520251c0 3095 if is_plain_url:
d493f15c
S
3096 # width, height, res, label and title attributes are
3097 # all not standard but seen several times in the wild
3098 labels = [
3099 s_attr.get(lbl)
3100 for lbl in ('label', 'title')
3101 if str_or_none(s_attr.get(lbl))
3102 ]
3103 width = int_or_none(s_attr.get('width'))
3089bc74
S
3104 height = (int_or_none(s_attr.get('height'))
3105 or int_or_none(s_attr.get('res')))
d493f15c
S
3106 if not width or not height:
3107 for lbl in labels:
3108 resolution = parse_resolution(lbl)
3109 if not resolution:
3110 continue
3111 width = width or resolution.get('width')
3112 height = height or resolution.get('height')
3113 for lbl in labels:
3114 tbr = parse_bitrate(lbl)
3115 if tbr:
3116 break
3117 else:
3118 tbr = None
1ed45499 3119 f.update({
d493f15c
S
3120 'width': width,
3121 'height': height,
3122 'tbr': tbr,
3123 'format_id': s_attr.get('label') or s_attr.get('title'),
1ed45499 3124 })
520251c0
YCH
3125 f.update(formats[0])
3126 media_info['formats'].append(f)
3127 else:
3128 media_info['formats'].extend(formats)
59bbe491 3129 for track_tag in re.findall(r'<track[^>]+>', media_content):
3130 track_attributes = extract_attributes(track_tag)
3131 kind = track_attributes.get('kind')
5968d7d2 3132 if not kind or kind in ('subtitles', 'captions'):
f856816b 3133 src = strip_or_none(track_attributes.get('src'))
59bbe491 3134 if not src:
3135 continue
3136 lang = track_attributes.get('srclang') or track_attributes.get('lang') or track_attributes.get('label')
3137 media_info['subtitles'].setdefault(lang, []).append({
3138 'url': absolute_url(src),
3139 })
5e8e2fa5
S
3140 for f in media_info['formats']:
3141 f.setdefault('http_headers', {})['Referer'] = base_url
5968d7d2 3142 if media_info['formats'] or media_info['subtitles']:
59bbe491 3143 entries.append(media_info)
3144 return entries
3145
f6a1d69a
F
3146 def _extract_akamai_formats(self, *args, **kwargs):
3147 fmts, subs = self._extract_akamai_formats_and_subtitles(*args, **kwargs)
3148 if subs:
b5ae35ee 3149 self._report_ignoring_subs('akamai')
f6a1d69a
F
3150 return fmts
3151
3152 def _extract_akamai_formats_and_subtitles(self, manifest_url, video_id, hosts={}):
29f7c58a 3153 signed = 'hdnea=' in manifest_url
3154 if not signed:
3155 # https://learn.akamai.com/en-us/webhelp/media-services-on-demand/stream-packaging-user-guide/GUID-BE6C0F73-1E06-483B-B0EA-57984B91B7F9.html
3156 manifest_url = re.sub(
3157 r'(?:b=[\d,-]+|(?:__a__|attributes)=off|__b__=\d+)&?',
3158 '', manifest_url).strip('?')
3159
c7c43a93 3160 formats = []
f6a1d69a 3161 subtitles = {}
70c5802b 3162
e71a4509 3163 hdcore_sign = 'hdcore=3.7.0'
ff6f9a67 3164 f4m_url = re.sub(r'(https?://[^/]+)/i/', r'\1/z/', manifest_url).replace('/master.m3u8', '/manifest.f4m')
c4251b9a
RA
3165 hds_host = hosts.get('hds')
3166 if hds_host:
3167 f4m_url = re.sub(r'(https?://)[^/]+', r'\1' + hds_host, f4m_url)
e71a4509
RA
3168 if 'hdcore=' not in f4m_url:
3169 f4m_url += ('&' if '?' in f4m_url else '?') + hdcore_sign
3170 f4m_formats = self._extract_f4m_formats(
3171 f4m_url, video_id, f4m_id='hds', fatal=False)
3172 for entry in f4m_formats:
3173 entry.update({'extra_param_to_segment_url': hdcore_sign})
3174 formats.extend(f4m_formats)
70c5802b 3175
c4251b9a
RA
3176 m3u8_url = re.sub(r'(https?://[^/]+)/z/', r'\1/i/', manifest_url).replace('/manifest.f4m', '/master.m3u8')
3177 hls_host = hosts.get('hls')
3178 if hls_host:
3179 m3u8_url = re.sub(r'(https?://)[^/]+', r'\1' + hls_host, m3u8_url)
f6a1d69a 3180 m3u8_formats, m3u8_subtitles = self._extract_m3u8_formats_and_subtitles(
c7c43a93 3181 m3u8_url, video_id, 'mp4', 'm3u8_native',
29f7c58a 3182 m3u8_id='hls', fatal=False)
3183 formats.extend(m3u8_formats)
f6a1d69a 3184 subtitles = self._merge_subtitles(subtitles, m3u8_subtitles)
70c5802b 3185
3186 http_host = hosts.get('http')
29f7c58a 3187 if http_host and m3u8_formats and not signed:
3188 REPL_REGEX = r'https?://[^/]+/i/([^,]+),([^/]+),([^/]+)\.csmil/.+'
70c5802b 3189 qualities = re.match(REPL_REGEX, m3u8_url).group(2).split(',')
3190 qualities_length = len(qualities)
29f7c58a 3191 if len(m3u8_formats) in (qualities_length, qualities_length + 1):
70c5802b 3192 i = 0
29f7c58a 3193 for f in m3u8_formats:
3194 if f['vcodec'] != 'none':
70c5802b 3195 for protocol in ('http', 'https'):
3196 http_f = f.copy()
3197 del http_f['manifest_url']
3198 http_url = re.sub(
29f7c58a 3199 REPL_REGEX, protocol + r'://%s/\g<1>%s\3' % (http_host, qualities[i]), f['url'])
70c5802b 3200 http_f.update({
3201 'format_id': http_f['format_id'].replace('hls-', protocol + '-'),
3202 'url': http_url,
3203 'protocol': protocol,
3204 })
29f7c58a 3205 formats.append(http_f)
70c5802b 3206 i += 1
70c5802b 3207
f6a1d69a 3208 return formats, subtitles
c7c43a93 3209
6ad02195 3210 def _extract_wowza_formats(self, url, video_id, m3u8_entry_protocol='m3u8_native', skip_protocols=[]):
044eeb14 3211 query = compat_urlparse.urlparse(url).query
6ad02195 3212 url = re.sub(r'/(?:manifest|playlist|jwplayer)\.(?:m3u8|f4m|mpd|smil)', '', url)
240f2622
S
3213 mobj = re.search(
3214 r'(?:(?:http|rtmp|rtsp)(?P<s>s)?:)?(?P<url>//[^?]+)', url)
3215 url_base = mobj.group('url')
3216 http_base_url = '%s%s:%s' % ('http', mobj.group('s') or '', url_base)
6ad02195 3217 formats = []
044eeb14
S
3218
3219 def manifest_url(manifest):
3220 m_url = '%s/%s' % (http_base_url, manifest)
3221 if query:
3222 m_url += '?%s' % query
3223 return m_url
3224
6ad02195
RA
3225 if 'm3u8' not in skip_protocols:
3226 formats.extend(self._extract_m3u8_formats(
044eeb14 3227 manifest_url('playlist.m3u8'), video_id, 'mp4',
6ad02195
RA
3228 m3u8_entry_protocol, m3u8_id='hls', fatal=False))
3229 if 'f4m' not in skip_protocols:
3230 formats.extend(self._extract_f4m_formats(
044eeb14 3231 manifest_url('manifest.f4m'),
6ad02195 3232 video_id, f4m_id='hds', fatal=False))
0384932e
RA
3233 if 'dash' not in skip_protocols:
3234 formats.extend(self._extract_mpd_formats(
044eeb14 3235 manifest_url('manifest.mpd'),
0384932e 3236 video_id, mpd_id='dash', fatal=False))
6ad02195 3237 if re.search(r'(?:/smil:|\.smil)', url_base):
6ad02195
RA
3238 if 'smil' not in skip_protocols:
3239 rtmp_formats = self._extract_smil_formats(
044eeb14 3240 manifest_url('jwplayer.smil'),
6ad02195
RA
3241 video_id, fatal=False)
3242 for rtmp_format in rtmp_formats:
3243 rtsp_format = rtmp_format.copy()
3244 rtsp_format['url'] = '%s/%s' % (rtmp_format['url'], rtmp_format['play_path'])
3245 del rtsp_format['play_path']
3246 del rtsp_format['ext']
3247 rtsp_format.update({
3248 'url': rtsp_format['url'].replace('rtmp://', 'rtsp://'),
3249 'format_id': rtmp_format['format_id'].replace('rtmp', 'rtsp'),
3250 'protocol': 'rtsp',
3251 })
3252 formats.extend([rtmp_format, rtsp_format])
3253 else:
3254 for protocol in ('rtmp', 'rtsp'):
3255 if protocol not in skip_protocols:
3256 formats.append({
f2e2f0c7 3257 'url': '%s:%s' % (protocol, url_base),
6ad02195
RA
3258 'format_id': protocol,
3259 'protocol': protocol,
3260 })
3261 return formats
3262
c73e330e 3263 def _find_jwplayer_data(self, webpage, video_id=None, transform_source=js_to_json):
a4a554a7 3264 mobj = re.search(
ac9c69ac 3265 r'(?s)jwplayer\((?P<quote>[\'"])[^\'" ]+(?P=quote)\)(?!</script>).*?\.setup\s*\((?P<options>[^)]+)\)',
a4a554a7
YCH
3266 webpage)
3267 if mobj:
c73e330e
RU
3268 try:
3269 jwplayer_data = self._parse_json(mobj.group('options'),
3270 video_id=video_id,
3271 transform_source=transform_source)
3272 except ExtractorError:
3273 pass
3274 else:
3275 if isinstance(jwplayer_data, dict):
3276 return jwplayer_data
a4a554a7
YCH
3277
3278 def _extract_jwplayer_data(self, webpage, video_id, *args, **kwargs):
c73e330e
RU
3279 jwplayer_data = self._find_jwplayer_data(
3280 webpage, video_id, transform_source=js_to_json)
a4a554a7
YCH
3281 return self._parse_jwplayer_data(
3282 jwplayer_data, video_id, *args, **kwargs)
3283
3284 def _parse_jwplayer_data(self, jwplayer_data, video_id=None, require_title=True,
3285 m3u8_id=None, mpd_id=None, rtmp_params=None, base_url=None):
3286 # JWPlayer backward compatibility: flattened playlists
3287 # https://github.com/jwplayer/jwplayer/blob/v7.4.3/src/js/api/config.js#L81-L96
3288 if 'playlist' not in jwplayer_data:
3289 jwplayer_data = {'playlist': [jwplayer_data]}
3290
3291 entries = []
3292
3293 # JWPlayer backward compatibility: single playlist item
3294 # https://github.com/jwplayer/jwplayer/blob/v7.7.0/src/js/playlist/playlist.js#L10
3295 if not isinstance(jwplayer_data['playlist'], list):
3296 jwplayer_data['playlist'] = [jwplayer_data['playlist']]
3297
3298 for video_data in jwplayer_data['playlist']:
3299 # JWPlayer backward compatibility: flattened sources
3300 # https://github.com/jwplayer/jwplayer/blob/v7.4.3/src/js/playlist/item.js#L29-L35
3301 if 'sources' not in video_data:
3302 video_data['sources'] = [video_data]
3303
3304 this_video_id = video_id or video_data['mediaid']
3305
1a2192cb
S
3306 formats = self._parse_jwplayer_formats(
3307 video_data['sources'], video_id=this_video_id, m3u8_id=m3u8_id,
3308 mpd_id=mpd_id, rtmp_params=rtmp_params, base_url=base_url)
a4a554a7
YCH
3309
3310 subtitles = {}
3311 tracks = video_data.get('tracks')
3312 if tracks and isinstance(tracks, list):
3313 for track in tracks:
96a2daa1
S
3314 if not isinstance(track, dict):
3315 continue
f4b74272
S
3316 track_kind = track.get('kind')
3317 if not track_kind or not isinstance(track_kind, compat_str):
3318 continue
3319 if track_kind.lower() not in ('captions', 'subtitles'):
a4a554a7
YCH
3320 continue
3321 track_url = urljoin(base_url, track.get('file'))
3322 if not track_url:
3323 continue
3324 subtitles.setdefault(track.get('label') or 'en', []).append({
3325 'url': self._proto_relative_url(track_url)
3326 })
3327
50d808f5 3328 entry = {
a4a554a7 3329 'id': this_video_id,
50d808f5 3330 'title': unescapeHTML(video_data['title'] if require_title else video_data.get('title')),
f81dd65b 3331 'description': clean_html(video_data.get('description')),
6945b9e7 3332 'thumbnail': urljoin(base_url, self._proto_relative_url(video_data.get('image'))),
a4a554a7
YCH
3333 'timestamp': int_or_none(video_data.get('pubdate')),
3334 'duration': float_or_none(jwplayer_data.get('duration') or video_data.get('duration')),
3335 'subtitles': subtitles,
50d808f5
RA
3336 }
3337 # https://github.com/jwplayer/jwplayer/blob/master/src/js/utils/validator.js#L32
3338 if len(formats) == 1 and re.search(r'^(?:http|//).*(?:youtube\.com|youtu\.be)/.+', formats[0]['url']):
3339 entry.update({
3340 '_type': 'url_transparent',
3341 'url': formats[0]['url'],
3342 })
3343 else:
3344 self._sort_formats(formats)
3345 entry['formats'] = formats
3346 entries.append(entry)
a4a554a7
YCH
3347 if len(entries) == 1:
3348 return entries[0]
3349 else:
3350 return self.playlist_result(entries)
3351
ed0cf9b3
S
3352 def _parse_jwplayer_formats(self, jwplayer_sources_data, video_id=None,
3353 m3u8_id=None, mpd_id=None, rtmp_params=None, base_url=None):
bf1b87cd 3354 urls = []
ed0cf9b3 3355 formats = []
1a2192cb 3356 for source in jwplayer_sources_data:
0a268c6e
S
3357 if not isinstance(source, dict):
3358 continue
6945b9e7
RA
3359 source_url = urljoin(
3360 base_url, self._proto_relative_url(source.get('file')))
3361 if not source_url or source_url in urls:
bf1b87cd
RA
3362 continue
3363 urls.append(source_url)
ed0cf9b3
S
3364 source_type = source.get('type') or ''
3365 ext = mimetype2ext(source_type) or determine_ext(source_url)
3366 if source_type == 'hls' or ext == 'm3u8':
3367 formats.extend(self._extract_m3u8_formats(
0236cd0d
S
3368 source_url, video_id, 'mp4', entry_protocol='m3u8_native',
3369 m3u8_id=m3u8_id, fatal=False))
0d9c48de 3370 elif source_type == 'dash' or ext == 'mpd':
ed0cf9b3
S
3371 formats.extend(self._extract_mpd_formats(
3372 source_url, video_id, mpd_id=mpd_id, fatal=False))
b51dc9db
S
3373 elif ext == 'smil':
3374 formats.extend(self._extract_smil_formats(
3375 source_url, video_id, fatal=False))
ed0cf9b3 3376 # https://github.com/jwplayer/jwplayer/blob/master/src/js/providers/default.js#L67
0236cd0d
S
3377 elif source_type.startswith('audio') or ext in (
3378 'oga', 'aac', 'mp3', 'mpeg', 'vorbis'):
ed0cf9b3
S
3379 formats.append({
3380 'url': source_url,
3381 'vcodec': 'none',
3382 'ext': ext,
3383 })
3384 else:
3385 height = int_or_none(source.get('height'))
3386 if height is None:
3387 # Often no height is provided but there is a label in
0236cd0d 3388 # format like "1080p", "720p SD", or 1080.
ed0cf9b3 3389 height = int_or_none(self._search_regex(
0236cd0d 3390 r'^(\d{3,4})[pP]?(?:\b|$)', compat_str(source.get('label') or ''),
ed0cf9b3
S
3391 'height', default=None))
3392 a_format = {
3393 'url': source_url,
3394 'width': int_or_none(source.get('width')),
3395 'height': height,
0236cd0d 3396 'tbr': int_or_none(source.get('bitrate')),
ed0cf9b3
S
3397 'ext': ext,
3398 }
3399 if source_url.startswith('rtmp'):
3400 a_format['ext'] = 'flv'
ed0cf9b3
S
3401 # See com/longtailvideo/jwplayer/media/RTMPMediaProvider.as
3402 # of jwplayer.flash.swf
3403 rtmp_url_parts = re.split(
3404 r'((?:mp4|mp3|flv):)', source_url, 1)
3405 if len(rtmp_url_parts) == 3:
3406 rtmp_url, prefix, play_path = rtmp_url_parts
3407 a_format.update({
3408 'url': rtmp_url,
3409 'play_path': prefix + play_path,
3410 })
3411 if rtmp_params:
3412 a_format.update(rtmp_params)
3413 formats.append(a_format)
3414 return formats
3415
f4b1c7ad
PH
3416 def _live_title(self, name):
3417 """ Generate the title for a live video """
3418 now = datetime.datetime.now()
611c1dd9 3419 now_str = now.strftime('%Y-%m-%d %H:%M')
f4b1c7ad
PH
3420 return name + ' ' + now_str
3421
b14f3a4c
PH
3422 def _int(self, v, name, fatal=False, **kwargs):
3423 res = int_or_none(v, **kwargs)
3424 if 'get_attr' in kwargs:
3425 print(getattr(v, kwargs['get_attr']))
3426 if res is None:
3427 msg = 'Failed to extract %s: Could not parse value %r' % (name, v)
3428 if fatal:
3429 raise ExtractorError(msg)
3430 else:
6a39ee13 3431 self.report_warning(msg)
b14f3a4c
PH
3432 return res
3433
3434 def _float(self, v, name, fatal=False, **kwargs):
3435 res = float_or_none(v, **kwargs)
3436 if res is None:
3437 msg = 'Failed to extract %s: Could not parse value %r' % (name, v)
3438 if fatal:
3439 raise ExtractorError(msg)
3440 else:
6a39ee13 3441 self.report_warning(msg)
b14f3a4c
PH
3442 return res
3443
40e41780
TF
3444 def _set_cookie(self, domain, name, value, expire_time=None, port=None,
3445 path='/', secure=False, discard=False, rest={}, **kwargs):
6c22cee6 3446 cookie = compat_cookiejar_Cookie(
4ed2d7b7 3447 0, name, value, port, port is not None, domain, True,
40e41780
TF
3448 domain.startswith('.'), path, True, secure, expire_time,
3449 discard, None, None, rest)
42939b61
JMF
3450 self._downloader.cookiejar.set_cookie(cookie)
3451
799207e8 3452 def _get_cookies(self, url):
f7ad7160 3453 """ Return a compat_cookies_SimpleCookie with the cookies for the url """
5c2266df 3454 req = sanitized_Request(url)
799207e8 3455 self._downloader.cookiejar.add_cookie_header(req)
f7ad7160 3456 return compat_cookies_SimpleCookie(req.get_header('Cookie'))
799207e8 3457
e3c1266f 3458 def _apply_first_set_cookie_header(self, url_handle, cookie):
ce2fe4c0
S
3459 """
3460 Apply first Set-Cookie header instead of the last. Experimental.
3461
3462 Some sites (e.g. [1-3]) may serve two cookies under the same name
3463 in Set-Cookie header and expect the first (old) one to be set rather
3464 than second (new). However, as of RFC6265 the newer one cookie
3465 should be set into cookie store what actually happens.
3466 We will workaround this issue by resetting the cookie to
3467 the first one manually.
3468 1. https://new.vk.com/
3469 2. https://github.com/ytdl-org/youtube-dl/issues/9841#issuecomment-227871201
3470 3. https://learning.oreilly.com/
3471 """
e3c1266f
S
3472 for header, cookies in url_handle.headers.items():
3473 if header.lower() != 'set-cookie':
3474 continue
3475 if sys.version_info[0] >= 3:
3476 cookies = cookies.encode('iso-8859-1')
3477 cookies = cookies.decode('utf-8')
3478 cookie_value = re.search(
3479 r'%s=(.+?);.*?\b[Dd]omain=(.+?)(?:[,;]|$)' % cookie, cookies)
3480 if cookie_value:
3481 value, domain = cookie_value.groups()
3482 self._set_cookie(domain, cookie, value)
3483 break
3484
05900629
PH
3485 def get_testcases(self, include_onlymatching=False):
3486 t = getattr(self, '_TEST', None)
3487 if t:
3488 assert not hasattr(self, '_TESTS'), \
3489 '%s has _TEST and _TESTS' % type(self).__name__
3490 tests = [t]
3491 else:
3492 tests = getattr(self, '_TESTS', [])
3493 for t in tests:
3494 if not include_onlymatching and t.get('only_matching', False):
3495 continue
3496 t['name'] = type(self).__name__[:-len('IE')]
3497 yield t
3498
3499 def is_suitable(self, age_limit):
3500 """ Test whether the extractor is generally suitable for the given
3501 age limit (i.e. pornographic sites are not, all others usually are) """
3502
3503 any_restricted = False
3504 for tc in self.get_testcases(include_onlymatching=False):
40090e8d 3505 if tc.get('playlist', []):
05900629
PH
3506 tc = tc['playlist'][0]
3507 is_restricted = age_restricted(
3508 tc.get('info_dict', {}).get('age_limit'), age_limit)
3509 if not is_restricted:
3510 return True
3511 any_restricted = any_restricted or is_restricted
3512 return not any_restricted
3513
a504ced0 3514 def extract_subtitles(self, *args, **kwargs):
a06916d9 3515 if (self.get_param('writesubtitles', False)
3516 or self.get_param('listsubtitles')):
9868ea49
JMF
3517 return self._get_subtitles(*args, **kwargs)
3518 return {}
a504ced0
JMF
3519
3520 def _get_subtitles(self, *args, **kwargs):
611c1dd9 3521 raise NotImplementedError('This method must be implemented by subclasses')
a504ced0 3522
a2160aa4 3523 def extract_comments(self, *args, **kwargs):
3524 if not self.get_param('getcomments'):
3525 return None
3526 generator = self._get_comments(*args, **kwargs)
3527
3528 def extractor():
3529 comments = []
3530 try:
3531 while True:
3532 comments.append(next(generator))
3533 except KeyboardInterrupt:
3534 interrupted = True
3535 self.to_screen('Interrupted by user')
3536 except StopIteration:
3537 interrupted = False
3538 comment_count = len(comments)
3539 self.to_screen(f'Extracted {comment_count} comments')
3540 return {
3541 'comments': comments,
3542 'comment_count': None if interrupted else comment_count
3543 }
3544 return extractor
3545
3546 def _get_comments(self, *args, **kwargs):
3547 raise NotImplementedError('This method must be implemented by subclasses')
3548
912e0b7e
YCH
3549 @staticmethod
3550 def _merge_subtitle_items(subtitle_list1, subtitle_list2):
3551 """ Merge subtitle items for one language. Items with duplicated URLs
3552 will be dropped. """
3553 list1_urls = set([item['url'] for item in subtitle_list1])
3554 ret = list(subtitle_list1)
3555 ret.extend([item for item in subtitle_list2 if item['url'] not in list1_urls])
3556 return ret
3557
3558 @classmethod
46890374 3559 def _merge_subtitles(cls, *dicts, target=None):
19bb3920 3560 """ Merge subtitle dictionaries, language by language. """
19bb3920
F
3561 if target is None:
3562 target = {}
3563 for d in dicts:
3564 for lang, subs in d.items():
3565 target[lang] = cls._merge_subtitle_items(target.get(lang, []), subs)
3566 return target
912e0b7e 3567
360e1ca5 3568 def extract_automatic_captions(self, *args, **kwargs):
a06916d9 3569 if (self.get_param('writeautomaticsub', False)
3570 or self.get_param('listsubtitles')):
9868ea49
JMF
3571 return self._get_automatic_captions(*args, **kwargs)
3572 return {}
360e1ca5
JMF
3573
3574 def _get_automatic_captions(self, *args, **kwargs):
611c1dd9 3575 raise NotImplementedError('This method must be implemented by subclasses')
360e1ca5 3576
d77ab8e2 3577 def mark_watched(self, *args, **kwargs):
1813a6cc 3578 if not self.get_param('mark_watched', False):
3579 return
3580 if (self._get_login_info()[0] is not None
3581 or self.get_param('cookiefile')
3582 or self.get_param('cookiesfrombrowser')):
d77ab8e2
S
3583 self._mark_watched(*args, **kwargs)
3584
3585 def _mark_watched(self, *args, **kwargs):
3586 raise NotImplementedError('This method must be implemented by subclasses')
3587
38cce791
YCH
3588 def geo_verification_headers(self):
3589 headers = {}
a06916d9 3590 geo_verification_proxy = self.get_param('geo_verification_proxy')
38cce791
YCH
3591 if geo_verification_proxy:
3592 headers['Ytdl-request-proxy'] = geo_verification_proxy
3593 return headers
3594
98763ee3
YCH
3595 def _generic_id(self, url):
3596 return compat_urllib_parse_unquote(os.path.splitext(url.rstrip('/').split('/')[-1])[0])
3597
3598 def _generic_title(self, url):
3599 return compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0])
3600
c224251a 3601 @staticmethod
b0089e89 3602 def _availability(is_private=None, needs_premium=None, needs_subscription=None, needs_auth=None, is_unlisted=None):
c224251a
M
3603 all_known = all(map(
3604 lambda x: x is not None,
3605 (is_private, needs_premium, needs_subscription, needs_auth, is_unlisted)))
3606 return (
3607 'private' if is_private
3608 else 'premium_only' if needs_premium
3609 else 'subscriber_only' if needs_subscription
3610 else 'needs_auth' if needs_auth
3611 else 'unlisted' if is_unlisted
3612 else 'public' if all_known
3613 else None)
3614
4bb6b02f 3615 def _configuration_arg(self, key, default=NO_DEFAULT, casesense=False):
3616 '''
3617 @returns A list of values for the extractor argument given by "key"
3618 or "default" if no such key is present
3619 @param default The default value to return when the key is not present (default: [])
3620 @param casesense When false, the values are converted to lower case
3621 '''
3622 val = traverse_obj(
5d3a0e79 3623 self._downloader.params, ('extractor_args', self.ie_key().lower(), key))
4bb6b02f 3624 if val is None:
3625 return [] if default is NO_DEFAULT else default
3626 return list(val) if casesense else [x.lower() for x in val]
5d3a0e79 3627
8dbe9899 3628
d6983cb4
PH
3629class SearchInfoExtractor(InfoExtractor):
3630 """
3631 Base class for paged search queries extractors.
10952eb2 3632 They accept URLs in the format _SEARCH_KEY(|all|[0-9]):{query}
96565c7e 3633 Instances should define _SEARCH_KEY and optionally _MAX_RESULTS
d6983cb4
PH
3634 """
3635
96565c7e 3636 _MAX_RESULTS = float('inf')
3637
d6983cb4
PH
3638 @classmethod
3639 def _make_valid_url(cls):
3640 return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
3641
3642 @classmethod
3643 def suitable(cls, url):
3644 return re.match(cls._make_valid_url(), url) is not None
3645
3646 def _real_extract(self, query):
3647 mobj = re.match(self._make_valid_url(), query)
3648 if mobj is None:
f1a9d64e 3649 raise ExtractorError('Invalid search query "%s"' % query)
d6983cb4
PH
3650
3651 prefix = mobj.group('prefix')
3652 query = mobj.group('query')
3653 if prefix == '':
3654 return self._get_n_results(query, 1)
3655 elif prefix == 'all':
3656 return self._get_n_results(query, self._MAX_RESULTS)
3657 else:
3658 n = int(prefix)
3659 if n <= 0:
f1a9d64e 3660 raise ExtractorError('invalid download number %s for query "%s"' % (n, query))
d6983cb4 3661 elif n > self._MAX_RESULTS:
6a39ee13 3662 self.report_warning('%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
d6983cb4
PH
3663 n = self._MAX_RESULTS
3664 return self._get_n_results(query, n)
3665
3666 def _get_n_results(self, query, n):
cc16383f 3667 """Get a specified number of results for a query.
3668 Either this function or _search_results must be overridden by subclasses """
3669 return self.playlist_result(
3670 itertools.islice(self._search_results(query), 0, None if n == float('inf') else n),
3671 query, query)
3672
3673 def _search_results(self, query):
3674 """Returns an iterator of search results"""
611c1dd9 3675 raise NotImplementedError('This method must be implemented by subclasses')
0f818663
PH
3676
3677 @property
3678 def SEARCH_KEY(self):
3679 return self._SEARCH_KEY