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