1 from __future__
import unicode_literals
15 from ..compat
import (
18 compat_etree_fromstring
,
24 compat_urllib_parse_unquote
,
25 compat_urllib_parse_urlencode
,
26 compat_urllib_request
,
29 from ..downloader
.f4m
import remove_encrypted_media
59 parse_m3u8_attributes
,
66 class InfoExtractor(object):
67 """Information Extractor class.
69 Information extractors are the classes that, given a URL, extract
70 information about the video (or videos) the URL refers to. This
71 information includes the real video URL, the video title, author and
72 others. The information is stored in a dictionary which is then
73 passed to the YoutubeDL. The YoutubeDL processes this
74 information possibly downloading the video to the file system, among
75 other possible outcomes.
77 The type field determines the type of the result.
78 By far the most common value (and the default if _type is missing) is
79 "video", which indicates a single video.
81 For a video, the dictionaries must include the following fields:
84 title: Video title, unescaped.
86 Additionally, it must contain either a formats entry or a url one:
88 formats: A list of dictionaries for each format available, ordered
89 from worst to best quality.
92 * url Mandatory. The URL of the video file
94 The URL of the manifest file in case of
95 fragmented media (DASH, hls, hds)
96 * ext Will be calculated from URL if missing
97 * format A human-readable description of the format
98 ("mp4 container with h264/opus").
99 Calculated from the format_id, width, height.
100 and format_note fields if missing.
101 * format_id A short description of the format
102 ("mp4_h264_opus" or "19").
103 Technically optional, but strongly recommended.
104 * format_note Additional info about the format
105 ("3D" or "DASH video")
106 * width Width of the video, if known
107 * height Height of the video, if known
108 * resolution Textual description of width and height
109 * tbr Average bitrate of audio and video in KBit/s
110 * abr Average audio bitrate in KBit/s
111 * acodec Name of the audio codec in use
112 * asr Audio sampling rate in Hertz
113 * vbr Average video bitrate in KBit/s
115 * vcodec Name of the video codec in use
116 * container Name of the container format
117 * filesize The number of bytes, if known in advance
118 * filesize_approx An estimate for the number of bytes
119 * player_url SWF Player URL (used for rtmpdump).
120 * protocol The protocol that will be used for the actual
121 download, lower-case.
122 "http", "https", "rtsp", "rtmp", "rtmpe",
123 "m3u8", "m3u8_native" or "http_dash_segments".
125 Base URL for fragments. Each fragment's path
126 value (if present) will be relative to
128 * fragments A list of fragments of a fragmented media.
129 Each fragment entry must contain either an url
130 or a path. If an url is present it should be
131 considered by a client. Otherwise both path and
132 fragment_base_url must be present. Here is
133 the list of all potential fields:
134 * "url" - fragment's URL
135 * "path" - fragment's path relative to
137 * "duration" (optional, int or float)
138 * "filesize" (optional, int)
139 * preference Order number of this format. If this field is
140 present and not None, the formats get sorted
141 by this field, regardless of all other values.
142 -1 for default (order by other properties),
143 -2 or smaller for less than default.
144 < -1000 to hide the format (if there is
145 another one which is strictly better)
146 * language Language code, e.g. "de" or "en-US".
147 * language_preference Is this in the language mentioned in
149 10 if it's what the URL is about,
150 -1 for default (don't know),
151 -10 otherwise, other values reserved for now.
152 * quality Order number of the video quality of this
153 format, irrespective of the file format.
154 -1 for default (order by other properties),
155 -2 or smaller for less than default.
156 * source_preference Order number for this video source
157 (quality takes higher priority)
158 -1 for default (order by other properties),
159 -2 or smaller for less than default.
160 * http_headers A dictionary of additional HTTP headers
161 to add to the request.
162 * stretched_ratio If given and not 1, indicates that the
163 video's pixels are not square.
164 width : height ratio as float.
165 * no_resume The server does not support resuming the
166 (HTTP or RTMP) download. Boolean.
168 url: Final video URL.
169 ext: Video filename extension.
170 format: The video format, defaults to ext (used for --get-format)
171 player_url: SWF Player URL (used for rtmpdump).
173 The following fields are optional:
175 alt_title: A secondary title of the video.
176 display_id An alternative identifier for the video, not necessarily
177 unique, but available before title. Typically, id is
178 something like "4234987", title "Dancing naked mole rats",
179 and display_id "dancing-naked-mole-rats"
180 thumbnails: A list of dictionaries, with the following entries:
181 * "id" (optional, string) - Thumbnail format ID
183 * "preference" (optional, int) - quality of the image
184 * "width" (optional, int)
185 * "height" (optional, int)
186 * "resolution" (optional, string "{width}x{height"},
188 * "filesize" (optional, int)
189 thumbnail: Full URL to a video thumbnail image.
190 description: Full video description.
191 uploader: Full name of the video uploader.
192 license: License name the video is licensed under.
193 creator: The creator of the video.
194 release_date: The date (YYYYMMDD) when the video was released.
195 timestamp: UNIX timestamp of the moment the video became available.
196 upload_date: Video upload date (YYYYMMDD).
197 If not explicitly set, calculated from timestamp.
198 uploader_id: Nickname or id of the video uploader.
199 uploader_url: Full URL to a personal webpage of the video uploader.
200 location: Physical location where the video was filmed.
201 subtitles: The available subtitles as a dictionary in the format
202 {tag: subformats}. "tag" is usually a language code, and
203 "subformats" is a list sorted from lower to higher
204 preference, each element is a dictionary with the "ext"
206 * "data": The subtitles file contents
207 * "url": A URL pointing to the subtitles file
208 "ext" will be calculated from URL if missing
209 automatic_captions: Like 'subtitles', used by the YoutubeIE for
210 automatically generated captions
211 duration: Length of the video in seconds, as an integer or float.
212 view_count: How many users have watched the video on the platform.
213 like_count: Number of positive ratings of the video
214 dislike_count: Number of negative ratings of the video
215 repost_count: Number of reposts of the video
216 average_rating: Average rating give by users, the scale used depends on the webpage
217 comment_count: Number of comments on the video
218 comments: A list of comments, each with one or more of the following
219 properties (all but one of text or html optional):
220 * "author" - human-readable name of the comment author
221 * "author_id" - user ID of the comment author
223 * "html" - Comment as HTML
224 * "text" - Plain text of the comment
225 * "timestamp" - UNIX timestamp of comment
226 * "parent" - ID of the comment this one is replying to.
227 Set to "root" to indicate that this is a
228 comment to the original video.
229 age_limit: Age restriction for the video, as an integer (years)
230 webpage_url: The URL to the video webpage, if given to youtube-dl it
231 should allow to get the same result again. (It will be set
232 by YoutubeDL if it's missing)
233 categories: A list of categories that the video falls in, for example
235 tags: A list of tags assigned to the video, e.g. ["sweden", "pop music"]
236 is_live: True, False, or None (=unknown). Whether this video is a
237 live stream that goes on instead of a fixed-length video.
238 start_time: Time in seconds where the reproduction should start, as
239 specified in the URL.
240 end_time: Time in seconds where the reproduction should end, as
241 specified in the URL.
243 The following fields should only be used when the video belongs to some logical
246 chapter: Name or title of the chapter the video belongs to.
247 chapter_number: Number of the chapter the video belongs to, as an integer.
248 chapter_id: Id of the chapter the video belongs to, as a unicode string.
250 The following fields should only be used when the video is an episode of some
251 series, programme or podcast:
253 series: Title of the series or programme the video episode belongs to.
254 season: Title of the season the video episode belongs to.
255 season_number: Number of the season the video episode belongs to, as an integer.
256 season_id: Id of the season the video episode belongs to, as a unicode string.
257 episode: Title of the video episode. Unlike mandatory video title field,
258 this field should denote the exact title of the video episode
259 without any kind of decoration.
260 episode_number: Number of the video episode within a season, as an integer.
261 episode_id: Id of the video episode, as a unicode string.
263 The following fields should only be used when the media is a track or a part of
266 track: Title of the track.
267 track_number: Number of the track within an album or a disc, as an integer.
268 track_id: Id of the track (useful in case of custom indexing, e.g. 6.iii),
270 artist: Artist(s) of the track.
271 genre: Genre(s) of the track.
272 album: Title of the album the track belongs to.
273 album_type: Type of the album (e.g. "Demo", "Full-length", "Split", "Compilation", etc).
274 album_artist: List of all artists appeared on the album (e.g.
275 "Ash Borer / Fell Voices" or "Various Artists", useful for splits
277 disc_number: Number of the disc or other physical medium the track belongs to,
279 release_year: Year (YYYY) when the album was released.
281 Unless mentioned otherwise, the fields should be Unicode strings.
283 Unless mentioned otherwise, None is equivalent to absence of information.
286 _type "playlist" indicates multiple videos.
287 There must be a key "entries", which is a list, an iterable, or a PagedList
288 object, each element of which is a valid dictionary by this specification.
290 Additionally, playlists can have "title", "description" and "id" attributes
291 with the same semantics as videos (see above).
294 _type "multi_video" indicates that there are multiple videos that
295 form a single show, for examples multiple acts of an opera or TV episode.
296 It must have an entries key like a playlist and contain all the keys
297 required for a video at the same time.
300 _type "url" indicates that the video must be extracted from another
301 location, possibly by a different extractor. Its only required key is:
302 "url" - the next URL to extract.
303 The key "ie_key" can be set to the class name (minus the trailing "IE",
304 e.g. "Youtube") if the extractor class is known in advance.
305 Additionally, the dictionary may have any properties of the resolved entity
306 known in advance, for example "title" if the title of the referred video is
310 _type "url_transparent" entities have the same specification as "url", but
311 indicate that the given additional information is more precise than the one
312 associated with the resolved URL.
313 This is useful when a site employs a video service that hosts the video and
314 its technical metadata, but that video service does not embed a useful
315 title, description etc.
318 Subclasses of this one should re-define the _real_initialize() and
319 _real_extract() methods and define a _VALID_URL regexp.
320 Probably, they should also be added to the list of extractors.
322 Finally, the _WORKING attribute should be set to False for broken IEs
323 in order to warn the users and skip the tests.
330 def __init__(self
, downloader
=None):
331 """Constructor. Receives an optional downloader."""
333 self
.set_downloader(downloader
)
336 def suitable(cls
, url
):
337 """Receives a URL and returns True if suitable for this IE."""
339 # This does not use has/getattr intentionally - we want to know whether
340 # we have cached the regexp for *this* class, whereas getattr would also
341 # match the superclass
342 if '_VALID_URL_RE' not in cls
.__dict
__:
343 cls
._VALID
_URL
_RE
= re
.compile(cls
._VALID
_URL
)
344 return cls
._VALID
_URL
_RE
.match(url
) is not None
347 def _match_id(cls
, url
):
348 if '_VALID_URL_RE' not in cls
.__dict
__:
349 cls
._VALID
_URL
_RE
= re
.compile(cls
._VALID
_URL
)
350 m
= cls
._VALID
_URL
_RE
.match(url
)
356 """Getter method for _WORKING."""
359 def initialize(self
):
360 """Initializes an instance (authentication, etc)."""
362 self
._real
_initialize
()
365 def extract(self
, url
):
366 """Extracts URL information and returns it in list of dicts."""
369 return self
._real
_extract
(url
)
370 except ExtractorError
:
372 except compat_http_client
.IncompleteRead
as e
:
373 raise ExtractorError('A network error has occurred.', cause
=e
, expected
=True)
374 except (KeyError, StopIteration) as e
:
375 raise ExtractorError('An extractor error has occurred.', cause
=e
)
377 def set_downloader(self
, downloader
):
378 """Sets the downloader for this IE."""
379 self
._downloader
= downloader
381 def _real_initialize(self
):
382 """Real initialization process. Redefine in subclasses."""
385 def _real_extract(self
, url
):
386 """Real extraction process. Redefine in subclasses."""
391 """A string for getting the InfoExtractor with get_info_extractor"""
392 return compat_str(cls
.__name
__[:-2])
396 return compat_str(type(self
).__name
__[:-2])
398 def _request_webpage(self
, url_or_request
, video_id
, note
=None, errnote
=None, fatal
=True, data
=None, headers
={}, query
={}):
399 """ Returns the response handle """
401 self
.report_download_webpage(video_id
)
402 elif note
is not False:
404 self
.to_screen('%s' % (note
,))
406 self
.to_screen('%s: %s' % (video_id
, note
))
407 if isinstance(url_or_request
, compat_urllib_request
.Request
):
408 url_or_request
= update_Request(
409 url_or_request
, data
=data
, headers
=headers
, query
=query
)
412 url_or_request
= update_url_query(url_or_request
, query
)
413 if data
is not None or headers
:
414 url_or_request
= sanitized_Request(url_or_request
, data
, headers
)
416 return self
._downloader
.urlopen(url_or_request
)
417 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
421 errnote
= 'Unable to download webpage'
423 errmsg
= '%s: %s' % (errnote
, error_to_compat_str(err
))
425 raise ExtractorError(errmsg
, sys
.exc_info()[2], cause
=err
)
427 self
._downloader
.report_warning(errmsg
)
430 def _download_webpage_handle(self
, url_or_request
, video_id
, note
=None, errnote
=None, fatal
=True, encoding
=None, data
=None, headers
={}, query
={}):
431 """ Returns a tuple (page content as string, URL handle) """
432 # Strip hashes from the URL (#1038)
433 if isinstance(url_or_request
, (compat_str
, str)):
434 url_or_request
= url_or_request
.partition('#')[0]
436 urlh
= self
._request
_webpage
(url_or_request
, video_id
, note
, errnote
, fatal
, data
=data
, headers
=headers
, query
=query
)
440 content
= self
._webpage
_read
_content
(urlh
, url_or_request
, video_id
, note
, errnote
, fatal
, encoding
=encoding
)
441 return (content
, urlh
)
444 def _guess_encoding_from_content(content_type
, webpage_bytes
):
445 m
= re
.match(r
'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type
)
447 encoding
= m
.group(1)
449 m
= re
.search(br
'<meta[^>]+charset=[\'"]?([^\'")]+)[ /\'">]',
450 webpage_bytes[:1024])
452 encoding = m.group(1).decode('ascii')
453 elif webpage_bytes.startswith(b'\xff\xfe'):
460 def _webpage_read_content(self, urlh, url_or_request, video_id, note=None, errnote=None, fatal=True, prefix=None, encoding=None):
461 content_type = urlh.headers.get('Content-Type', '')
462 webpage_bytes = urlh.read()
463 if prefix is not None:
464 webpage_bytes = prefix + webpage_bytes
466 encoding = self._guess_encoding_from_content(content_type, webpage_bytes)
467 if self._downloader.params.get('dump_intermediate_pages', False):
469 url = url_or_request.get_full_url()
470 except AttributeError:
472 self.to_screen('Dumping request to ' + url)
473 dump = base64.b64encode(webpage_bytes).decode('ascii')
474 self._downloader.to_screen(dump)
475 if self._downloader.params.get('write_pages', False):
477 url = url_or_request.get_full_url()
478 except AttributeError:
480 basen = '%s_%s' % (video_id, url)
482 h = '___' + hashlib.md5(basen.encode('utf-8')).hexdigest()
483 basen = basen[:240 - len(h)] + h
484 raw_filename = basen + '.dump'
485 filename = sanitize_filename(raw_filename, restricted=True)
486 self.to_screen('Saving request to ' + filename)
487 # Working around MAX_PATH limitation on Windows (see
488 # http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx)
489 if compat_os_name == 'nt':
490 absfilepath = os.path.abspath(filename)
491 if len(absfilepath) > 259:
492 filename = '\\\\?\\' + absfilepath
493 with open(filename, 'wb') as outf:
494 outf.write(webpage_bytes)
497 content = webpage_bytes.decode(encoding, 'replace')
499 content = webpage_bytes.decode('utf-8', 'replace')
501 if ('<title>Access to this site is blocked</title>' in content and
502 'Websense' in content[:512]):
503 msg = 'Access to this webpage has been blocked by Websense filtering software in your network.'
504 blocked_iframe = self._html_search_regex(
505 r'<iframe src="([^
"]+)"', content,
506 'Websense information URL
', default=None)
508 msg += ' Visit
%s for more details
' % blocked_iframe
509 raise ExtractorError(msg, expected=True)
510 if '<title
>The URL you requested has been blocked
</title
>' in content[:512]:
512 'Access to this webpage has been blocked by Indian censorship
. '
513 'Use a VPN
or proxy
server (with --proxy
) to route around it
.')
514 block_msg = self._html_search_regex(
515 r'</h1
><p
>(.*?
)</p
>',
516 content, 'block message
', default=None)
518 msg += ' (Message
: "%s")' % block_msg.replace('\n', ' ')
519 raise ExtractorError(msg, expected=True)
523 def _download_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True, tries=1, timeout=5, encoding=None, data=None, headers={}, query={}):
524 """ Returns the data of the page as a string """
527 while success is False:
529 res = self._download_webpage_handle(url_or_request, video_id, note, errnote, fatal, encoding=encoding, data=data, headers=headers, query=query)
531 except compat_http_client.IncompleteRead as e:
533 if try_count >= tries:
535 self._sleep(timeout, video_id)
542 def _download_xml(self, url_or_request, video_id,
543 note='Downloading XML
', errnote='Unable to download XML
',
544 transform_source=None, fatal=True, encoding=None, data=None, headers={}, query={}):
545 """Return the xml as an xml.etree.ElementTree.Element"""
546 xml_string = self._download_webpage(
547 url_or_request, video_id, note, errnote, fatal=fatal, encoding=encoding, data=data, headers=headers, query=query)
548 if xml_string is False:
551 xml_string = transform_source(xml_string)
552 return compat_etree_fromstring(xml_string.encode('utf
-8'))
554 def _download_json(self, url_or_request, video_id,
555 note='Downloading JSON metadata
',
556 errnote='Unable to download JSON metadata
',
557 transform_source=None,
558 fatal=True, encoding=None, data=None, headers={}, query={}):
559 json_string = self._download_webpage(
560 url_or_request, video_id, note, errnote, fatal=fatal,
561 encoding=encoding, data=data, headers=headers, query=query)
562 if (not fatal) and json_string is False:
564 return self._parse_json(
565 json_string, video_id, transform_source=transform_source, fatal=fatal)
567 def _parse_json(self, json_string, video_id, transform_source=None, fatal=True):
569 json_string = transform_source(json_string)
571 return json.loads(json_string)
572 except ValueError as ve:
573 errmsg = '%s: Failed to parse JSON
' % video_id
575 raise ExtractorError(errmsg, cause=ve)
577 self.report_warning(errmsg + str(ve))
579 def report_warning(self, msg, video_id=None):
580 idstr = '' if video_id is None else '%s: ' % video_id
581 self._downloader.report_warning(
582 '[%s] %s%s' % (self.IE_NAME, idstr, msg))
584 def to_screen(self, msg):
585 """Print msg to screen, prefixing it with '[ie_name
]'"""
586 self._downloader.to_screen('[%s] %s' % (self.IE_NAME, msg))
588 def report_extraction(self, id_or_name):
589 """Report information extraction."""
590 self.to_screen('%s: Extracting information
' % id_or_name)
592 def report_download_webpage(self, video_id):
593 """Report webpage download."""
594 self.to_screen('%s: Downloading webpage
' % video_id)
596 def report_age_confirmation(self):
597 """Report attempt to confirm age."""
598 self.to_screen('Confirming age
')
600 def report_login(self):
601 """Report attempt to log in."""
602 self.to_screen('Logging
in')
605 def raise_login_required(msg='This video
is only available
for registered users
'):
606 raise ExtractorError(
607 '%s. Use
--username
and --password
or --netrc to provide account credentials
.' % msg,
611 def raise_geo_restricted(msg='This video
is not available
from your location due to geo restriction
'):
612 raise ExtractorError(
613 '%s. You might want to use
--proxy to workaround
.' % msg,
616 # Methods for following #608
618 def url_result(url, ie=None, video_id=None, video_title=None):
619 """Returns a URL that points to a page that should be processed"""
620 # TODO: ie should be the class used for getting the info
621 video_info = {'_type
': 'url
',
624 if video_id is not None:
625 video_info['id'] = video_id
626 if video_title is not None:
627 video_info['title
'] = video_title
631 def playlist_result(entries, playlist_id=None, playlist_title=None, playlist_description=None):
632 """Returns a playlist"""
633 video_info = {'_type
': 'playlist
',
636 video_info['id'] = playlist_id
638 video_info['title
'] = playlist_title
639 if playlist_description:
640 video_info['description
'] = playlist_description
643 def _search_regex(self, pattern, string, name, default=NO_DEFAULT, fatal=True, flags=0, group=None):
645 Perform a regex search on the given string, using a single or a list of
646 patterns returning the first matching group.
647 In case of failure return a default value or raise a WARNING or a
648 RegexNotFoundError, depending on fatal, specifying the field name.
650 if isinstance(pattern, (str, compat_str, compiled_regex_type)):
651 mobj = re.search(pattern, string, flags)
654 mobj = re.search(p, string, flags)
658 if not self._downloader.params.get('no_color
') and compat_os_name != 'nt
' and sys.stderr.isatty():
659 _name = '\033[0;34m
%s\033[0m
' % name
665 # return the first matching group
666 return next(g for g in mobj.groups() if g is not None)
668 return mobj.group(group)
669 elif default is not NO_DEFAULT:
672 raise RegexNotFoundError('Unable to extract
%s' % _name)
674 self._downloader.report_warning('unable to extract
%s' % _name + bug_reports_message())
677 def _html_search_regex(self, pattern, string, name, default=NO_DEFAULT, fatal=True, flags=0, group=None):
679 Like _search_regex, but strips HTML tags and unescapes entities.
681 res = self._search_regex(pattern, string, name, default, fatal, flags, group)
683 return clean_html(res).strip()
687 def _get_netrc_login_info(self, netrc_machine=None):
690 netrc_machine = netrc_machine or self._NETRC_MACHINE
692 if self._downloader.params.get('usenetrc
', False):
694 info = netrc.netrc().authenticators(netrc_machine)
699 raise netrc.NetrcParseError(
700 'No authenticators
for %s' % netrc_machine)
701 except (IOError, netrc.NetrcParseError) as err:
702 self._downloader.report_warning(
703 'parsing
.netrc
: %s' % error_to_compat_str(err))
705 return username, password
707 def _get_login_info(self, username_option='username
', password_option='password
', netrc_machine=None):
709 Get the login info as (username, password)
710 First look for the manually specified credentials using username_option
711 and password_option as keys in params dictionary. If no such credentials
712 available look in the netrc file using the netrc_machine or _NETRC_MACHINE
714 If there's no info available
, return (None, None)
716 if self._downloader is None:
719 downloader_params = self._downloader.params
721 # Attempt to use provided username and password or .netrc data
722 if downloader_params.get(username_option) is not None:
723 username = downloader_params[username_option]
724 password = downloader_params[password_option]
726 username, password = self._get_netrc_login_info(netrc_machine)
728 return username, password
730 def _get_tfa_info(self, note='two-factor verification code'):
732 Get the two
-factor authentication info
733 TODO
- asking the user will be required
for sms
/phone verify
734 currently just uses the command line option
735 If there
's no info available, return None
737 if self._downloader is None:
739 downloader_params = self._downloader.params
741 if downloader_params.get('twofactor
') is not None:
742 return downloader_params['twofactor
']
744 return compat_getpass('Type
%s and press
[Return
]: ' % note)
746 # Helper functions for extracting OpenGraph info
748 def _og_regexes(prop):
749 content_re = r'content
=(?
:"([^"]+?
)"|\'([^\']+?)\'|\s*([^\s"\'=<>`
]+?
))'
750 property_re = (r'(?
:name|
property)=(?
:\'og
:%(prop)s\'|
"og:%(prop)s"|\s
*og
:%(prop)s\b)'
751 % {'prop
': re.escape(prop)})
752 template = r'<meta
[^
>]+?
%s[^
>]+?
%s'
754 template % (property_re, content_re),
755 template % (content_re, property_re),
759 def _meta_regex(prop):
760 return r'''(?isx)<meta
761 (?=[^>]+(?:itemprop|name|property|id|http-equiv)=(["\']?)%s\1)
762 [^>]+?content=(["\'])(?P<content>.*?)\2''' % re.escape(prop)
764 def _og_search_property(self, prop, html, name=None, **kargs):
765 if not isinstance(prop, (list, tuple)):
768 name = 'OpenGraph
%s' % prop[0]
771 og_regexes.extend(self._og_regexes(p))
772 escaped = self._search_regex(og_regexes, html, name, flags=re.DOTALL, **kargs)
775 return unescapeHTML(escaped)
777 def _og_search_thumbnail(self, html, **kargs):
778 return self._og_search_property('image
', html, 'thumbnail URL
', fatal=False, **kargs)
780 def _og_search_description(self, html, **kargs):
781 return self._og_search_property('description
', html, fatal=False, **kargs)
783 def _og_search_title(self, html, **kargs):
784 return self._og_search_property('title
', html, **kargs)
786 def _og_search_video_url(self, html, name='video url
', secure=True, **kargs):
787 regexes = self._og_regexes('video
') + self._og_regexes('video
:url
')
789 regexes = self._og_regexes('video
:secure_url
') + regexes
790 return self._html_search_regex(regexes, html, name, **kargs)
792 def _og_search_url(self, html, **kargs):
793 return self._og_search_property('url
', html, **kargs)
795 def _html_search_meta(self, name, html, display_name=None, fatal=False, **kwargs):
796 if not isinstance(name, (list, tuple)):
798 if display_name is None:
799 display_name = name[0]
800 return self._html_search_regex(
801 [self._meta_regex(n) for n in name],
802 html, display_name, fatal=fatal, group='content
', **kwargs)
804 def _dc_search_uploader(self, html):
805 return self._html_search_meta('dc
.creator
', html, 'uploader
')
807 def _rta_search(self, html):
808 # See http://www.rtalabel.org/index.php?content=howtofaq#single
809 if re.search(r'(?ix
)<meta\s
+name
="rating"\s
+'
810 r' content
="RTA-5042-1996-1400-1577-RTA"',
815 def _media_rating_search(self, html):
816 # See http://www.tjg-designs.com/WP/metadata-code-examples-adding-metadata-to-your-web-pages/
817 rating = self._html_search_meta('rating
', html)
829 return RATING_TABLE.get(rating.lower())
831 def _family_friendly_search(self, html):
832 # See http://schema.org/VideoObject
833 family_friendly = self._html_search_meta('isFamilyFriendly
', html)
835 if not family_friendly:
844 return RATING_TABLE.get(family_friendly.lower())
846 def _twitter_search_player(self, html):
847 return self._html_search_meta('twitter
:player
', html,
848 'twitter card player
')
850 def _search_json_ld(self, html, video_id, expected_type=None, **kwargs):
851 json_ld = self._search_regex(
852 r'(?s
)<script
[^
>]+type=(["\'])application/ld\+json\1[^>]*>(?P<json_ld>.+?)</script>',
853 html, 'JSON-LD', group='json_ld', **kwargs)
854 default = kwargs.get('default', NO_DEFAULT)
856 return default if default is not NO_DEFAULT else {}
857 # JSON-LD may be malformed and thus `fatal` should be respected.
858 # At the same time `default` may be passed that assumes `fatal=False`
859 # for _search_regex. Let's simulate the same behavior here as well.
860 fatal = kwargs.get('fatal', True) if default == NO_DEFAULT else False
861 return self._json_ld(json_ld, video_id, fatal=fatal, expected_type=expected_type)
863 def _json_ld(self, json_ld, video_id, fatal=True, expected_type=None):
864 if isinstance(json_ld, compat_str):
865 json_ld = self._parse_json(json_ld, video_id, fatal=fatal)
869 if not isinstance(json_ld, (list, tuple, dict)):
871 if isinstance(json_ld, dict):
874 if e.get('@context') == 'http://schema.org':
875 item_type = e.get('@type')
876 if expected_type is not None and expected_type != item_type:
878 if item_type == 'TVEpisode':
880 'episode': unescapeHTML(e.get('name')),
881 'episode_number': int_or_none(e.get('episodeNumber')),
882 'description': unescapeHTML(e.get('description')),
884 part_of_season = e.get('partOfSeason')
885 if isinstance(part_of_season, dict) and part_of_season.get('@type') == 'TVSeason':
886 info['season_number'] = int_or_none(part_of_season.get('seasonNumber'))
887 part_of_series = e.get('partOfSeries') or e.get('partOfTVSeries')
888 if isinstance(part_of_series, dict) and part_of_series.get('@type') == 'TVSeries':
889 info['series'] = unescapeHTML(part_of_series.get('name'))
890 elif item_type == 'Article':
892 'timestamp': parse_iso8601(e.get('datePublished')),
893 'title': unescapeHTML(e.get('headline')),
894 'description': unescapeHTML(e.get('articleBody')),
896 elif item_type == 'VideoObject':
898 'url': e.get('contentUrl'),
899 'title': unescapeHTML(e.get('name')),
900 'description': unescapeHTML(e.get('description')),
901 'thumbnail': e.get('thumbnailUrl') or e.get('thumbnailURL'),
902 'duration': parse_duration(e.get('duration')),
903 'timestamp': unified_timestamp(e.get('uploadDate')),
904 'filesize': float_or_none(e.get('contentSize')),
905 'tbr': int_or_none(e.get('bitrate')),
906 'width': int_or_none(e.get('width')),
907 'height': int_or_none(e.get('height')),
910 return dict((k, v) for k, v in info.items() if v is not None)
913 def _hidden_inputs(html):
914 html = re.sub(r'<!--(?:(?!<!--).)*-->', '', html)
916 for input in re.findall(r'(?i)(<input[^>]+>)', html):
917 attrs = extract_attributes(input)
920 if attrs.get('type') not in ('hidden', 'submit'):
922 name = attrs.get('name') or attrs.get('id')
923 value = attrs.get('value')
924 if name and value is not None:
925 hidden_inputs[name] = value
928 def _form_hidden_inputs(self, form_id, html):
929 form = self._search_regex(
930 r'(?is)<form[^>]+?id=(["\'])%s\
1[^
>]*>(?P
<form
>.+?
)</form
>' % form_id,
931 html, '%s form
' % form_id, group='form
')
932 return self._hidden_inputs(form)
934 def _sort_formats(self, formats, field_preference=None):
936 raise ExtractorError('No video formats found
')
939 # Automatically determine tbr when missing based on abr and vbr (improves
940 # formats sorting in some cases)
941 if 'tbr
' not in f and f.get('abr
') is not None and f.get('vbr
') is not None:
942 f['tbr
'] = f['abr
'] + f['vbr
']
945 # TODO remove the following workaround
946 from ..utils import determine_ext
947 if not f.get('ext
') and 'url
' in f:
948 f['ext
'] = determine_ext(f['url
'])
950 if isinstance(field_preference, (list, tuple)):
953 if f.get(field) is not None
954 else ('' if field == 'format_id
' else -1)
955 for field in field_preference)
957 preference = f.get('preference
')
958 if preference is None:
960 if f.get('ext
') in ['f4f
', 'f4m
']: # Not yet supported
963 protocol = f.get('protocol
') or determine_protocol(f)
964 proto_preference = 0 if protocol in ['http
', 'https
'] else (-0.5 if protocol == 'rtsp
' else -0.1)
966 if f.get('vcodec
') == 'none
': # audio only
968 if self._downloader.params.get('prefer_free_formats
'):
969 ORDER = ['aac
', 'mp3
', 'm4a
', 'webm
', 'ogg
', 'opus
']
971 ORDER = ['webm
', 'opus
', 'ogg
', 'mp3
', 'aac
', 'm4a
']
974 audio_ext_preference = ORDER.index(f['ext
'])
976 audio_ext_preference = -1
978 if f.get('acodec
') == 'none
': # video only
980 if self._downloader.params.get('prefer_free_formats
'):
981 ORDER = ['flv
', 'mp4
', 'webm
']
983 ORDER = ['webm
', 'flv
', 'mp4
']
985 ext_preference = ORDER.index(f['ext
'])
988 audio_ext_preference = 0
992 f.get('language_preference
') if f.get('language_preference
') is not None else -1,
993 f.get('quality
') if f.get('quality
') is not None else -1,
994 f.get('tbr
') if f.get('tbr
') is not None else -1,
995 f.get('filesize
') if f.get('filesize
') is not None else -1,
996 f.get('vbr
') if f.get('vbr
') is not None else -1,
997 f.get('height
') if f.get('height
') is not None else -1,
998 f.get('width
') if f.get('width
') is not None else -1,
1001 f.get('abr
') if f.get('abr
') is not None else -1,
1002 audio_ext_preference,
1003 f.get('fps
') if f.get('fps
') is not None else -1,
1004 f.get('filesize_approx
') if f.get('filesize_approx
') is not None else -1,
1005 f.get('source_preference
') if f.get('source_preference
') is not None else -1,
1006 f.get('format_id
') if f.get('format_id
') is not None else '',
1008 formats.sort(key=_formats_key)
1010 def _check_formats(self, formats, video_id):
1012 formats[:] = filter(
1013 lambda f: self._is_valid_url(
1015 item='%s video format
' % f.get('format_id
') if f.get('format_id
') else 'video
'),
1019 def _remove_duplicate_formats(formats):
1023 if f['url
'] not in format_urls:
1024 format_urls.add(f['url
'])
1025 unique_formats.append(f)
1026 formats[:] = unique_formats
1028 def _is_valid_url(self, url, video_id, item='video
', headers={}):
1029 url = self._proto_relative_url(url, scheme='http
:')
1030 # For now assume non HTTP(S) URLs always valid
1031 if not (url.startswith('http
://') or url.startswith('https
://')):
1034 self._request_webpage(url, video_id, 'Checking
%s URL
' % item, headers=headers)
1036 except ExtractorError as e:
1037 if isinstance(e.cause, compat_urllib_error.URLError):
1039 '%s: %s URL
is invalid
, skipping
' % (video_id, item))
1043 def http_scheme(self):
1044 """ Either "http:" or "https:", depending on the user's preferences
"""
1047 if self._downloader.params.get('prefer_insecure', False)
1050 def _proto_relative_url(self, url, scheme=None):
1053 if url.startswith('//'):
1055 scheme = self.http_scheme()
1060 def _sleep(self, timeout, video_id, msg_template=None):
1061 if msg_template is None:
1062 msg_template = '%(video_id)s: Waiting for %(timeout)s seconds'
1063 msg = msg_template % {'video_id': video_id, 'timeout': timeout}
1067 def _extract_f4m_formats(self, manifest_url, video_id, preference=None, f4m_id=None,
1068 transform_source=lambda s: fix_xml_ampersands(s).strip(),
1069 fatal=True, m3u8_id=None):
1070 manifest = self._download_xml(
1071 manifest_url, video_id, 'Downloading f4m manifest',
1072 'Unable to download f4m manifest',
1073 # Some manifests may be malformed, e.g. prosiebensat1 generated manifests
1074 # (see https://github.com/rg3/youtube-dl/issues/6215#issuecomment-121704244)
1075 transform_source=transform_source,
1078 if manifest is False:
1081 return self._parse_f4m_formats(
1082 manifest, manifest_url, video_id, preference=preference, f4m_id=f4m_id,
1083 transform_source=transform_source, fatal=fatal, m3u8_id=m3u8_id)
1085 def _parse_f4m_formats(self, manifest, manifest_url, video_id, preference=None, f4m_id=None,
1086 transform_source=lambda s: fix_xml_ampersands(s).strip(),
1087 fatal=True, m3u8_id=None):
1088 # currently youtube-dl cannot decode the playerVerificationChallenge as Akamai uses Adobe Alchemy
1089 akamai_pv = manifest.find('{http://ns.adobe.com/f4m/1.0}pv-2.0')
1090 if akamai_pv is not None and ';' in akamai_pv.text:
1091 playerVerificationChallenge = akamai_pv.text.split(';')[0]
1092 if playerVerificationChallenge.strip() != '':
1096 manifest_version = '1.0'
1097 media_nodes = manifest.findall('{http://ns.adobe.com/f4m/1.0}media')
1099 manifest_version = '2.0'
1100 media_nodes = manifest.findall('{http://ns.adobe.com/f4m/2.0}media')
1101 # Remove unsupported DRM protected media from final formats
1102 # rendition (see https://github.com/rg3/youtube-dl/issues/8573).
1103 media_nodes = remove_encrypted_media(media_nodes)
1106 base_url = xpath_text(
1107 manifest, ['{http://ns.adobe.com/f4m/1.0}baseURL', '{http://ns.adobe.com/f4m/2.0}baseURL'],
1108 'base URL', default=None)
1110 base_url = base_url.strip()
1112 bootstrap_info = xpath_element(
1113 manifest, ['{http://ns.adobe.com/f4m/1.0}bootstrapInfo', '{http://ns.adobe.com/f4m/2.0}bootstrapInfo'],
1114 'bootstrap info', default=None)
1117 mime_type = xpath_text(
1118 manifest, ['{http://ns.adobe.com/f4m/1.0}mimeType', '{http://ns.adobe.com/f4m/2.0}mimeType'],
1119 'base URL', default=None)
1120 if mime_type and mime_type.startswith('audio/'):
1123 for i, media_el in enumerate(media_nodes):
1124 tbr = int_or_none(media_el.attrib.get('bitrate'))
1125 width = int_or_none(media_el.attrib.get('width'))
1126 height = int_or_none(media_el.attrib.get('height'))
1127 format_id = '-'.join(filter(None, [f4m_id, compat_str(i if tbr is None else tbr)]))
1128 # If <bootstrapInfo> is present, the specified f4m is a
1129 # stream-level manifest, and only set-level manifests may refer to
1130 # external resources. See section 11.4 and section 4 of F4M spec
1131 if bootstrap_info is None:
1133 # @href is introduced in 2.0, see section 11.6 of F4M spec
1134 if manifest_version == '2.0':
1135 media_url = media_el.attrib.get('href')
1136 if media_url is None:
1137 media_url = media_el.attrib.get('url')
1141 media_url if media_url.startswith('http://') or media_url.startswith('https://')
1142 else ((base_url or '/'.join(manifest_url.split('/')[:-1])) + '/' + media_url))
1143 # If media_url is itself a f4m manifest do the recursive extraction
1144 # since bitrates in parent manifest (this one) and media_url manifest
1145 # may differ leading to inability to resolve the format by requested
1146 # bitrate in f4m downloader
1147 ext = determine_ext(manifest_url)
1149 f4m_formats = self._extract_f4m_formats(
1150 manifest_url, video_id, preference=preference, f4m_id=f4m_id,
1151 transform_source=transform_source, fatal=fatal)
1152 # Sometimes stream-level manifest contains single media entry that
1153 # does not contain any quality metadata (e.g. http://matchtv.ru/#live-player).
1154 # At the same time parent's media entry in set-level manifest may
1155 # contain it. We will copy it from parent in such cases.
1156 if len(f4m_formats) == 1:
1159 'tbr': f.get('tbr') or tbr,
1160 'width': f.get('width') or width,
1161 'height': f.get('height') or height,
1162 'format_id': f.get('format_id') if not tbr else format_id,
1165 formats.extend(f4m_formats)
1168 formats.extend(self._extract_m3u8_formats(
1169 manifest_url, video_id, 'mp4', preference=preference,
1170 m3u8_id=m3u8_id, fatal=fatal))
1173 'format_id': format_id,
1174 'url': manifest_url,
1175 'manifest_url': manifest_url,
1176 'ext': 'flv' if bootstrap_info is not None else None,
1181 'preference': preference,
1185 def _m3u8_meta_format(self, m3u8_url, ext=None, preference=None, m3u8_id=None):
1187 'format_id': '-'.join(filter(None, [m3u8_id, 'meta'])),
1191 'preference': preference - 100 if preference else -100,
1192 'resolution': 'multiple',
1193 'format_note': 'Quality selection URL',
1196 def _extract_m3u8_formats(self, m3u8_url, video_id, ext=None,
1197 entry_protocol='m3u8', preference=None,
1198 m3u8_id=None, note=None, errnote=None,
1199 fatal=True, live=False):
1201 res = self._download_webpage_handle(
1203 note=note or 'Downloading m3u8 information',
1204 errnote=errnote or 'Failed to download m3u8 information',
1208 m3u8_doc, urlh = res
1209 m3u8_url = urlh.geturl()
1211 formats = [self._m3u8_meta_format(m3u8_url, ext, preference, m3u8_id)]
1213 format_url = lambda u: (
1215 if re.match(r'^https?://', u)
1216 else compat_urlparse.urljoin(m3u8_url, u))
1218 # We should try extracting formats only from master playlists [1], i.e.
1219 # playlists that describe available qualities. On the other hand media
1220 # playlists [2] should be returned as is since they contain just the media
1221 # without qualities renditions.
1222 # Fortunately, master playlist can be easily distinguished from media
1223 # playlist based on particular tags availability. As of [1, 2] master
1224 # playlist tags MUST NOT appear in a media playist and vice versa.
1225 # As of [3] #EXT-X-TARGETDURATION tag is REQUIRED for every media playlist
1226 # and MUST NOT appear in master playlist thus we can clearly detect media
1227 # playlist with this criterion.
1228 # 1. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.4
1229 # 2. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3
1230 # 3. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.1
1231 if '#EXT-X-TARGETDURATION' in m3u8_doc: # media playlist, return as is
1234 'format_id': m3u8_id,
1236 'protocol': entry_protocol,
1237 'preference': preference,
1239 audio_in_video_stream = {}
1242 for line in m3u8_doc.splitlines():
1243 if line.startswith('#EXT-X-STREAM-INF:'):
1244 last_info = parse_m3u8_attributes(line)
1245 elif line.startswith('#EXT-X-MEDIA:'):
1246 media = parse_m3u8_attributes(line)
1247 media_type = media.get('TYPE')
1248 if media_type in ('VIDEO', 'AUDIO'):
1249 group_id = media.get('GROUP-ID')
1250 media_url = media.get('URI')
1253 for v in (group_id, media.get('NAME')):
1257 'format_id': '-'.join(format_id),
1258 'url': format_url(media_url),
1259 'language': media.get('LANGUAGE'),
1261 'protocol': entry_protocol,
1262 'preference': preference,
1264 if media_type == 'AUDIO':
1265 f['vcodec'] = 'none'
1266 if group_id and not audio_in_video_stream.get(group_id):
1267 audio_in_video_stream[group_id] = False
1270 # When there is no URI in EXT-X-MEDIA let this tag's
1271 # data be used by regular URI lines below
1273 if media_type == 'AUDIO' and group_id:
1274 audio_in_video_stream[group_id] = True
1275 elif line.startswith('#') or not line.strip():
1278 tbr = int_or_none(last_info.get('AVERAGE-BANDWIDTH') or last_info.get('BANDWIDTH'), scale=1000)
1281 format_id.append(m3u8_id)
1282 # Despite specification does not mention NAME attribute for
1283 # EXT-X-STREAM-INF it still sometimes may be present
1284 stream_name = last_info.get('NAME') or last_media.get('NAME')
1285 # Bandwidth of live streams may differ over time thus making
1286 # format_id unpredictable. So it's better to keep provided
1289 format_id.append(stream_name if stream_name else '%d' % (tbr if tbr else len(formats)))
1290 manifest_url = format_url(line.strip())
1292 'format_id': '-'.join(format_id),
1293 'url': manifest_url,
1294 'manifest_url': manifest_url,
1297 'fps': float_or_none(last_info.get('FRAME-RATE')),
1298 'protocol': entry_protocol,
1299 'preference': preference,
1301 resolution = last_info.get('RESOLUTION')
1303 mobj = re.search(r'(?P<width>\d+)[xX](?P<height>\d+)', resolution)
1305 f['width'] = int(mobj.group('width'))
1306 f['height'] = int(mobj.group('height'))
1307 # Unified Streaming Platform
1309 r'audio.*?(?:%3D|=)(\d+)(?:-video.*?(?:%3D|=)(\d+))?', f['url'])
1311 abr, vbr = mobj.groups()
1312 abr, vbr = float_or_none(abr, 1000), float_or_none(vbr, 1000)
1317 f.update(parse_codecs(last_info.get('CODECS')))
1318 if audio_in_video_stream.get(last_info.get('AUDIO')) is False and f['vcodec'] != 'none':
1319 # TODO: update acodec for audio only formats with the same GROUP-ID
1320 f['acodec'] = 'none'
1327 def _xpath_ns(path, namespace=None):
1331 for c in path.split('/'):
1332 if not c or c == '.':
1335 out.append('{%s}%s' % (namespace, c))
1336 return '/'.join(out)
1338 def _extract_smil_formats(self, smil_url, video_id, fatal=True, f4m_params=None, transform_source=None):
1339 smil = self._download_smil(smil_url, video_id, fatal=fatal, transform_source=transform_source)
1345 namespace = self._parse_smil_namespace(smil)
1347 return self._parse_smil_formats(
1348 smil, smil_url, video_id, namespace=namespace, f4m_params=f4m_params)
1350 def _extract_smil_info(self, smil_url, video_id, fatal=True, f4m_params=None):
1351 smil = self._download_smil(smil_url, video_id, fatal=fatal)
1354 return self._parse_smil(smil, smil_url, video_id, f4m_params=f4m_params)
1356 def _download_smil(self, smil_url, video_id, fatal=True, transform_source=None):
1357 return self._download_xml(
1358 smil_url, video_id, 'Downloading SMIL file',
1359 'Unable to download SMIL file', fatal=fatal, transform_source=transform_source)
1361 def _parse_smil(self, smil, smil_url, video_id, f4m_params=None):
1362 namespace = self._parse_smil_namespace(smil)
1364 formats = self._parse_smil_formats(
1365 smil, smil_url, video_id, namespace=namespace, f4m_params=f4m_params)
1366 subtitles = self._parse_smil_subtitles(smil, namespace=namespace)
1368 video_id = os.path.splitext(url_basename(smil_url))[0]
1372 for meta in smil.findall(self._xpath_ns('./head/meta', namespace)):
1373 name = meta.attrib.get('name')
1374 content = meta.attrib.get('content')
1375 if not name or not content:
1377 if not title and name == 'title':
1379 elif not description and name in ('description', 'abstract'):
1380 description = content
1381 elif not upload_date and name == 'date':
1382 upload_date = unified_strdate(content)
1385 'id': image.get('type'),
1386 'url': image.get('src'),
1387 'width': int_or_none(image.get('width')),
1388 'height': int_or_none(image.get('height')),
1389 } for image in smil.findall(self._xpath_ns('.//image', namespace)) if image.get('src')]
1393 'title': title or video_id,
1394 'description': description,
1395 'upload_date': upload_date,
1396 'thumbnails': thumbnails,
1398 'subtitles': subtitles,
1401 def _parse_smil_namespace(self, smil):
1402 return self._search_regex(
1403 r'(?i)^{([^}]+)?}smil$', smil.tag, 'namespace', default=None)
1405 def _parse_smil_formats(self, smil, smil_url, video_id, namespace=None, f4m_params=None, transform_rtmp_url=None):
1407 for meta in smil.findall(self._xpath_ns('./head/meta', namespace)):
1408 b = meta.get('base') or meta.get('httpBase')
1419 media = smil.findall(self._xpath_ns('.//video', namespace)) + smil.findall(self._xpath_ns('.//audio', namespace))
1420 for medium in media:
1421 src = medium.get('src')
1422 if not src or src in srcs:
1426 bitrate = float_or_none(medium.get('system-bitrate') or medium.get('systemBitrate'), 1000)
1427 filesize = int_or_none(medium.get('size') or medium.get('fileSize'))
1428 width = int_or_none(medium.get('width'))
1429 height = int_or_none(medium.get('height'))
1430 proto = medium.get('proto')
1431 ext = medium.get('ext')
1432 src_ext = determine_ext(src)
1433 streamer = medium.get('streamer') or base
1435 if proto == 'rtmp' or streamer.startswith('rtmp'):
1441 'format_id': 'rtmp-%d' % (rtmp_count if bitrate is None else bitrate),
1443 'filesize': filesize,
1447 if transform_rtmp_url:
1448 streamer, src = transform_rtmp_url(streamer, src)
1449 formats[-1].update({
1455 src_url = src if src.startswith('http') else compat_urlparse.urljoin(base, src)
1456 src_url = src_url.strip()
1458 if proto == 'm3u8' or src_ext == 'm3u8':
1459 m3u8_formats = self._extract_m3u8_formats(
1460 src_url, video_id, ext or 'mp4', m3u8_id='hls', fatal=False)
1461 if len(m3u8_formats) == 1:
1463 m3u8_formats[0].update({
1464 'format_id': 'hls-%d' % (m3u8_count if bitrate is None else bitrate),
1469 formats.extend(m3u8_formats)
1472 if src_ext == 'f4m':
1477 'plugin': 'flowplayer-3.2.0.1',
1479 f4m_url += '&' if '?' in f4m_url else '?'
1480 f4m_url += compat_urllib_parse_urlencode(f4m_params)
1481 formats.extend(self._extract_f4m_formats(f4m_url, video_id, f4m_id='hds', fatal=False))
1484 if src_url.startswith('http') and self._is_valid_url(src, video_id):
1488 'ext': ext or src_ext or 'flv',
1489 'format_id': 'http-%d' % (bitrate or http_count),
1491 'filesize': filesize,
1499 def _parse_smil_subtitles(self, smil, namespace=None, subtitles_lang='en'):
1502 for num, textstream in enumerate(smil.findall(self._xpath_ns('.//textstream', namespace))):
1503 src = textstream.get('src')
1504 if not src or src in urls:
1507 ext = textstream.get('ext') or mimetype2ext(textstream.get('type')) or determine_ext(src)
1508 lang = textstream.get('systemLanguage') or textstream.get('systemLanguageName') or textstream.get('lang') or subtitles_lang
1509 subtitles.setdefault(lang, []).append({
1515 def _extract_xspf_playlist(self, playlist_url, playlist_id, fatal=True):
1516 xspf = self._download_xml(
1517 playlist_url, playlist_id, 'Downloading xpsf playlist',
1518 'Unable to download xspf manifest', fatal=fatal)
1521 return self._parse_xspf(xspf, playlist_id)
1523 def _parse_xspf(self, playlist, playlist_id):
1525 'xspf': 'http://xspf.org/ns/0/',
1526 's1': 'http://static.streamone.nl/player/ns/0',
1530 for track in playlist.findall(xpath_with_ns('./xspf:trackList/xspf:track', NS_MAP)):
1532 track, xpath_with_ns('./xspf:title', NS_MAP), 'title', default=playlist_id)
1533 description = xpath_text(
1534 track, xpath_with_ns('./xspf:annotation', NS_MAP), 'description')
1535 thumbnail = xpath_text(
1536 track, xpath_with_ns('./xspf:image', NS_MAP), 'thumbnail')
1537 duration = float_or_none(
1538 xpath_text(track, xpath_with_ns('./xspf:duration', NS_MAP), 'duration'), 1000)
1541 'url': location.text,
1542 'format_id': location.get(xpath_with_ns('s1:label', NS_MAP)),
1543 'width': int_or_none(location.get(xpath_with_ns('s1:width', NS_MAP))),
1544 'height': int_or_none(location.get(xpath_with_ns('s1:height', NS_MAP))),
1545 } for location in track.findall(xpath_with_ns('./xspf:location', NS_MAP))]
1546 self._sort_formats(formats)
1551 'description': description,
1552 'thumbnail': thumbnail,
1553 'duration': duration,
1558 def _extract_mpd_formats(self, mpd_url, video_id, mpd_id=None, note=None, errnote=None, fatal=True, formats_dict={}):
1559 res = self._download_webpage_handle(
1561 note=note or 'Downloading MPD manifest',
1562 errnote=errnote or 'Failed to download MPD manifest',
1567 mpd_base_url = base_url(urlh.geturl())
1569 return self._parse_mpd_formats(
1570 compat_etree_fromstring(mpd.encode('utf-8')), mpd_id, mpd_base_url,
1571 formats_dict=formats_dict, mpd_url=mpd_url)
1573 def _parse_mpd_formats(self, mpd_doc, mpd_id=None, mpd_base_url='', formats_dict={}, mpd_url=None):
1575 Parse formats
from MPD manifest
.
1577 1. MPEG
-DASH Standard
, ISO
/IEC
23009-1:2014(E
),
1578 http
://standards
.iso
.org
/ittf
/PubliclyAvailableStandards
/c065274_ISO_IEC_23009
-1_2014.zip
1579 2. https
://en
.wikipedia
.org
/wiki
/Dynamic_Adaptive_Streaming_over_HTTP
1581 if mpd_doc.get('type') == 'dynamic':
1584 namespace = self._search_regex(r'(?i)^{([^}]+)?}MPD$', mpd_doc.tag, 'namespace', default=None)
1587 return self._xpath_ns(path, namespace)
1589 def is_drm_protected(element):
1590 return element.find(_add_ns('ContentProtection')) is not None
1592 def extract_multisegment_info(element, ms_parent_info):
1593 ms_info = ms_parent_info.copy()
1595 # As per [1, 5.3.9.2.2] SegmentList and SegmentTemplate share some
1596 # common attributes and elements. We will only extract relevant
1598 def extract_common(source):
1599 segment_timeline = source.find(_add_ns('SegmentTimeline'))
1600 if segment_timeline is not None:
1601 s_e = segment_timeline.findall(_add_ns('S'))
1603 ms_info['total_number'] = 0
1606 r = int(s.get('r', 0))
1607 ms_info['total_number'] += 1 + r
1608 ms_info['s'].append({
1609 't': int(s.get('t', 0)),
1610 # @d is mandatory (see [1, 5.3.9.6.2, Table 17, page 60])
1611 'd': int(s.attrib['d']),
1614 start_number = source.get('startNumber')
1616 ms_info['start_number'] = int(start_number)
1617 timescale = source.get('timescale')
1619 ms_info['timescale'] = int(timescale)
1620 segment_duration = source.get('duration')
1621 if segment_duration:
1622 ms_info['segment_duration'] = int(segment_duration)
1624 def extract_Initialization(source):
1625 initialization = source.find(_add_ns('Initialization'))
1626 if initialization is not None:
1627 ms_info['initialization_url'] = initialization.attrib['sourceURL']
1629 segment_list = element.find(_add_ns('SegmentList'))
1630 if segment_list is not None:
1631 extract_common(segment_list)
1632 extract_Initialization(segment_list)
1633 segment_urls_e = segment_list.findall(_add_ns('SegmentURL'))
1635 ms_info['segment_urls'] = [segment.attrib['media'] for segment in segment_urls_e]
1637 segment_template = element.find(_add_ns('SegmentTemplate'))
1638 if segment_template is not None:
1639 extract_common(segment_template)
1640 media = segment_template.get('media')
1642 ms_info['media'] = media
1643 initialization = segment_template.get('initialization')
1645 ms_info['initialization'] = initialization
1647 extract_Initialization(segment_template)
1650 mpd_duration = parse_duration(mpd_doc.get('mediaPresentationDuration'))
1652 for period in mpd_doc.findall(_add_ns('Period')):
1653 period_duration = parse_duration(period.get('duration')) or mpd_duration
1654 period_ms_info = extract_multisegment_info(period, {
1658 for adaptation_set in period.findall(_add_ns('AdaptationSet')):
1659 if is_drm_protected(adaptation_set):
1661 adaption_set_ms_info = extract_multisegment_info(adaptation_set, period_ms_info)
1662 for representation in adaptation_set.findall(_add_ns('Representation')):
1663 if is_drm_protected(representation):
1665 representation_attrib = adaptation_set.attrib.copy()
1666 representation_attrib.update(representation.attrib)
1667 # According to [1, 5.3.7.2, Table 9, page 41], @mimeType is mandatory
1668 mime_type = representation_attrib['mimeType']
1669 content_type = mime_type.split('/')[0]
1670 if content_type == 'text':
1671 # TODO implement WebVTT downloading
1673 elif content_type == 'video' or content_type == 'audio':
1675 for element in (representation, adaptation_set, period, mpd_doc):
1676 base_url_e = element.find(_add_ns('BaseURL'))
1677 if base_url_e is not None:
1678 base_url = base_url_e.text + base_url
1679 if re.match(r'^https?://', base_url):
1681 if mpd_base_url and not re.match(r'^https?://', base_url):
1682 if not mpd_base_url.endswith('/') and not base_url.startswith('/'):
1684 base_url = mpd_base_url + base_url
1685 representation_id = representation_attrib.get('id')
1686 lang = representation_attrib.get('lang')
1687 url_el = representation.find(_add_ns('BaseURL'))
1688 filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength') if url_el is not None else None)
1689 bandwidth = int_or_none(representation_attrib.get('bandwidth'))
1691 'format_id': '%s-%s' % (mpd_id, representation_id) if mpd_id else representation_id,
1693 'manifest_url': mpd_url,
1694 'ext': mimetype2ext(mime_type),
1695 'width': int_or_none(representation_attrib.get('width')),
1696 'height': int_or_none(representation_attrib.get('height')),
1697 'tbr': int_or_none(bandwidth, 1000),
1698 'asr': int_or_none(representation_attrib.get('audioSamplingRate')),
1699 'fps': int_or_none(representation_attrib.get('frameRate')),
1700 'language': lang if lang not in ('mul', 'und', 'zxx', 'mis') else None,
1701 'format_note': 'DASH %s' % content_type,
1702 'filesize': filesize,
1704 f.update(parse_codecs(representation_attrib.get('codecs')))
1705 representation_ms_info = extract_multisegment_info(representation, adaption_set_ms_info)
1707 def prepare_template(template_name, identifiers):
1708 t = representation_ms_info[template_name]
1709 t = t.replace('$RepresentationID$', representation_id)
1710 t = re.sub(r'\$(%s)\$' % '|'.join(identifiers), r'%(\1)d', t)
1711 t = re.sub(r'\$(%s)%%([^$]+)\$' % '|'.join(identifiers), r'%(\1)\2', t)
1712 t.replace('$$', '$')
1715 # @initialization is a regular template like @media one
1716 # so it should be handled just the same way (see
1717 # https://github.com/rg3/youtube-dl/issues/11605)
1718 if 'initialization' in representation_ms_info:
1719 initialization_template = prepare_template(
1721 # As per [1, 5.3.9.4.2, Table 15, page 54] $Number$ and
1722 # $Time$ shall not be included for @initialization thus
1723 # only $Bandwidth$ remains
1725 representation_ms_info['initialization_url'] = initialization_template % {
1726 'Bandwidth': bandwidth,
1729 if 'segment_urls' not in representation_ms_info and 'media' in representation_ms_info:
1731 media_template = prepare_template('media', ('Number', 'Bandwidth', 'Time'))
1733 # As per [1, 5.3.9.4.4, Table 16, page 55] $Number$ and $Time$
1734 # can't be used at the same time
1735 if '%(Number' in media_template and 's' not in representation_ms_info:
1736 segment_duration = None
1737 if 'total_number' not in representation_ms_info and 'segment_duration':
1738 segment_duration = float_or_none(representation_ms_info['segment_duration'], representation_ms_info['timescale'])
1739 representation_ms_info['total_number'] = int(math.ceil(float(period_duration) / segment_duration))
1740 representation_ms_info['fragments'] = [{
1741 'url': media_template % {
1742 'Number': segment_number,
1743 'Bandwidth': bandwidth,
1745 'duration': segment_duration,
1746 } for segment_number in range(
1747 representation_ms_info['start_number'],
1748 representation_ms_info['total_number'] + representation_ms_info['start_number'])]
1750 # $Number*$ or $Time$ in media template with S list available
1751 # Example $Number*$: http://www.svtplay.se/klipp/9023742/stopptid-om-bjorn-borg
1752 # Example $Time$: https://play.arkena.com/embed/avp/v2/player/media/b41dda37-d8e7-4d3f-b1b5-9a9db578bdfe/1/129411
1753 representation_ms_info['fragments'] = []
1756 segment_number = representation_ms_info['start_number']
1758 def add_segment_url():
1759 segment_url = media_template % {
1760 'Time': segment_time,
1761 'Bandwidth': bandwidth,
1762 'Number': segment_number,
1764 representation_ms_info['fragments'].append({
1766 'duration': float_or_none(segment_d, representation_ms_info['timescale']),
1769 for num, s in enumerate(representation_ms_info['s']):
1770 segment_time = s.get('t') or segment_time
1774 for r in range(s.get('r', 0)):
1775 segment_time += segment_d
1778 segment_time += segment_d
1779 elif 'segment_urls' in representation_ms_info and 's' in representation_ms_info:
1781 # Example: https://www.youtube.com/watch?v=iXZV5uAYMJI
1782 # or any YouTube dashsegments video
1785 timescale = representation_ms_info['timescale']
1786 for s in representation_ms_info['s']:
1787 duration = float_or_none(s['d'], timescale)
1788 for r in range(s.get('r', 0) + 1):
1790 'url': representation_ms_info['segment_urls'][segment_index],
1791 'duration': duration,
1794 representation_ms_info['fragments'] = fragments
1795 # NB: MPD manifest may contain direct URLs to unfragmented media.
1796 # No fragments key is present in this case.
1797 if 'fragments' in representation_ms_info:
1800 'protocol': 'http_dash_segments',
1802 if 'initialization_url' in representation_ms_info:
1803 initialization_url = representation_ms_info['initialization_url']
1804 if not f.get('url'):
1805 f['url'] = initialization_url
1806 f['fragments'].append({'url': initialization_url})
1807 f['fragments'].extend(representation_ms_info['fragments'])
1808 for fragment in f['fragments']:
1809 fragment['url'] = urljoin(base_url, fragment['url'])
1811 existing_format = next(
1812 fo for fo in formats
1813 if fo['format_id'] == representation_id)
1814 except StopIteration:
1815 full_info = formats_dict.get(representation_id, {}).copy()
1817 formats.append(full_info)
1819 existing_format.update(f)
1821 self.report_warning('Unknown MIME type %s in DASH manifest' % mime_type)
1824 def _extract_ism_formats(self, ism_url, video_id, ism_id=None, note=None, errnote=None, fatal=True):
1825 res = self._download_webpage_handle(
1827 note=note or 'Downloading ISM manifest',
1828 errnote=errnote or 'Failed to download ISM manifest',
1834 return self._parse_ism_formats(
1835 compat_etree_fromstring(ism.encode('utf-8')), urlh.geturl(), ism_id)
1837 def _parse_ism_formats(self, ism_doc, ism_url, ism_id=None):
1838 if ism_doc.get('IsLive') == 'TRUE' or ism_doc.find('Protection') is not None:
1841 duration = int(ism_doc.attrib['Duration'])
1842 timescale = int_or_none(ism_doc.get('TimeScale')) or 10000000
1845 for stream in ism_doc.findall('StreamIndex'):
1846 stream_type = stream.get('Type')
1847 if stream_type not in ('video', 'audio'):
1849 url_pattern = stream.attrib['Url']
1850 stream_timescale = int_or_none(stream.get('TimeScale')) or timescale
1851 stream_name = stream.get('Name')
1852 for track in stream.findall('QualityLevel'):
1853 fourcc = track.get('FourCC')
1854 # TODO: add support for WVC1 and WMAP
1855 if fourcc not in ('H264', 'AVC1', 'AACL'):
1856 self.report_warning('%s is not a supported codec' % fourcc)
1858 tbr = int(track.attrib['Bitrate']) // 1000
1859 width = int_or_none(track.get('MaxWidth'))
1860 height = int_or_none(track.get('MaxHeight'))
1861 sampling_rate = int_or_none(track.get('SamplingRate'))
1863 track_url_pattern = re.sub(r'{[Bb]itrate}', track.attrib['Bitrate'], url_pattern)
1864 track_url_pattern = compat_urlparse.urljoin(ism_url, track_url_pattern)
1870 stream_fragments = stream.findall('c')
1871 for stream_fragment_index, stream_fragment in enumerate(stream_fragments):
1872 fragment_ctx['time'] = int_or_none(stream_fragment.get('t')) or fragment_ctx['time']
1873 fragment_repeat = int_or_none(stream_fragment.get('r')) or 1
1874 fragment_ctx['duration'] = int_or_none(stream_fragment.get('d'))
1875 if not fragment_ctx['duration']:
1877 next_fragment_time = int(stream_fragment[stream_fragment_index + 1].attrib['t'])
1879 next_fragment_time = duration
1880 fragment_ctx['duration'] = (next_fragment_time - fragment_ctx['time']) / fragment_repeat
1881 for _ in range(fragment_repeat):
1883 'url': re.sub(r'{start[ _]time}', compat_str(fragment_ctx['time']), track_url_pattern),
1884 'duration': fragment_ctx['duration'] / stream_timescale,
1886 fragment_ctx['time'] += fragment_ctx['duration']
1890 format_id.append(ism_id)
1892 format_id.append(stream_name)
1893 format_id.append(compat_str(tbr))
1896 'format_id': '-'.join(format_id),
1898 'manifest_url': ism_url,
1899 'ext': 'ismv' if stream_type == 'video' else 'isma',
1903 'asr': sampling_rate,
1904 'vcodec': 'none' if stream_type == 'audio' else fourcc,
1905 'acodec': 'none' if stream_type == 'video' else fourcc,
1907 'fragments': fragments,
1908 '_download_params': {
1909 'duration': duration,
1910 'timescale': stream_timescale,
1911 'width': width or 0,
1912 'height': height or 0,
1914 'codec_private_data': track.get('CodecPrivateData'),
1915 'sampling_rate': sampling_rate,
1916 'channels': int_or_none(track.get('Channels', 2)),
1917 'bits_per_sample': int_or_none(track.get('BitsPerSample', 16)),
1918 'nal_unit_length_field': int_or_none(track.get('NALUnitLengthField', 4)),
1923 def _parse_html5_media_entries(self, base_url, webpage, video_id, m3u8_id=None, m3u8_entry_protocol='m3u8', mpd_id=None):
1924 def absolute_url(video_url):
1925 return compat_urlparse.urljoin(base_url, video_url)
1927 def parse_content_type(content_type):
1928 if not content_type:
1930 ctr = re.search(r'(?P<mimetype>[^/]+/[^;]+)(?:;\s*codecs="?(?P<codecs>[^"]+))?', content_type)
1932 mimetype, codecs = ctr.groups()
1933 f = parse_codecs(codecs)
1934 f['ext'] = mimetype2ext(mimetype)
1938 def _media_formats(src, cur_media_type):
1939 full_url = absolute_url(src)
1940 ext = determine_ext(full_url)
1942 is_plain_url = False
1943 formats = self._extract_m3u8_formats(
1944 full_url, video_id, ext='mp4',
1945 entry_protocol=m3u8_entry_protocol, m3u8_id=m3u8_id)
1947 is_plain_url = False
1948 formats = self._extract_mpd_formats(
1949 full_url, video_id, mpd_id=mpd_id)
1954 'vcodec': 'none' if cur_media_type == 'audio' else None,
1956 return is_plain_url, formats
1959 media_tags = [(media_tag, media_type, '')
1960 for media_tag, media_type
1961 in re.findall(r'(?s)(<(video|audio)[^>]*/>)', webpage)]
1962 media_tags.extend(re.findall(
1963 # We only allow video|audio followed by a whitespace or '>'.
1964 # Allowing more characters may end up in significant slow down (see
1965 # https://github.com/rg3/youtube-dl/issues/11979, example URL:
1966 # http://www.porntrex.com/maps/videositemap.xml).
1967 r'(?s)(<(?P<tag>video|audio)(?:\s+[^>]*)?>)(.*?)</(?P=tag)>', webpage))
1968 for media_tag, media_type, media_content in media_tags:
1973 media_attributes = extract_attributes(media_tag)
1974 src = media_attributes.get('src')
1976 _, formats = _media_formats(src, media_type)
1977 media_info['formats'].extend(formats)
1978 media_info['thumbnail'] = media_attributes.get('poster')
1980 for source_tag in re.findall(r'<source[^>]+>', media_content):
1981 source_attributes = extract_attributes(source_tag)
1982 src = source_attributes.get('src')
1985 is_plain_url, formats = _media_formats(src, media_type)
1987 f = parse_content_type(source_attributes.get('type'))
1988 f.update(formats[0])
1989 media_info['formats'].append(f)
1991 media_info['formats'].extend(formats)
1992 for track_tag in re.findall(r'<track[^>]+>', media_content):
1993 track_attributes = extract_attributes(track_tag)
1994 kind = track_attributes.get('kind')
1995 if not kind or kind in ('subtitles', 'captions'):
1996 src = track_attributes.get('src')
1999 lang = track_attributes.get('srclang') or track_attributes.get('lang') or track_attributes.get('label')
2000 media_info['subtitles'].setdefault(lang, []).append({
2001 'url': absolute_url(src),
2003 if media_info['formats'] or media_info['subtitles']:
2004 entries.append(media_info)
2007 def _extract_akamai_formats(self, manifest_url, video_id, hosts={}):
2009 hdcore_sign = 'hdcore=3.7.0'
2010 f4m_url = re.sub(r'(https?://[^/+])/i/', r'\1/z/', manifest_url).replace('/master.m3u8', '/manifest.f4m')
2011 hds_host = hosts.get('hds')
2013 f4m_url = re.sub(r'(https?://)[^/]+', r'\1' + hds_host, f4m_url)
2014 if 'hdcore=' not in f4m_url:
2015 f4m_url += ('&' if '?' in f4m_url else '?') + hdcore_sign
2016 f4m_formats = self._extract_f4m_formats(
2017 f4m_url, video_id, f4m_id='hds', fatal=False)
2018 for entry in f4m_formats:
2019 entry.update({'extra_param_to_segment_url': hdcore_sign})
2020 formats.extend(f4m_formats)
2021 m3u8_url = re.sub(r'(https?://[^/]+)/z/', r'\1/i/', manifest_url).replace('/manifest.f4m', '/master.m3u8')
2022 hls_host = hosts.get('hls')
2024 m3u8_url = re.sub(r'(https?://)[^/]+', r'\1' + hls_host, m3u8_url)
2025 formats.extend(self._extract_m3u8_formats(
2026 m3u8_url, video_id, 'mp4', 'm3u8_native',
2027 m3u8_id='hls', fatal=False))
2030 def _extract_wowza_formats(self, url, video_id, m3u8_entry_protocol='m3u8_native', skip_protocols=[]):
2031 url = re.sub(r'/(?:manifest|playlist|jwplayer)\.(?:m3u8|f4m|mpd|smil)', '', url)
2032 url_base = self._search_regex(r'(?:https?|rtmp|rtsp)(://[^?]+)', url, 'format url')
2033 http_base_url = 'http' + url_base
2035 if 'm3u8' not in skip_protocols:
2036 formats.extend(self._extract_m3u8_formats(
2037 http_base_url + '/playlist.m3u8', video_id, 'mp4',
2038 m3u8_entry_protocol, m3u8_id='hls', fatal=False))
2039 if 'f4m' not in skip_protocols:
2040 formats.extend(self._extract_f4m_formats(
2041 http_base_url + '/manifest.f4m',
2042 video_id, f4m_id='hds', fatal=False))
2043 if 'dash' not in skip_protocols:
2044 formats.extend(self._extract_mpd_formats(
2045 http_base_url + '/manifest.mpd',
2046 video_id, mpd_id='dash', fatal=False))
2047 if re.search(r'(?:/smil:|\.smil)', url_base):
2048 if 'smil' not in skip_protocols:
2049 rtmp_formats = self._extract_smil_formats(
2050 http_base_url + '/jwplayer.smil',
2051 video_id, fatal=False)
2052 for rtmp_format in rtmp_formats:
2053 rtsp_format = rtmp_format.copy()
2054 rtsp_format['url'] = '%s/%s' % (rtmp_format['url'], rtmp_format['play_path'])
2055 del rtsp_format['play_path']
2056 del rtsp_format['ext']
2057 rtsp_format.update({
2058 'url': rtsp_format['url'].replace('rtmp://', 'rtsp://'),
2059 'format_id': rtmp_format['format_id'].replace('rtmp', 'rtsp'),
2062 formats.extend([rtmp_format, rtsp_format])
2064 for protocol in ('rtmp', 'rtsp'):
2065 if protocol not in skip_protocols:
2067 'url': protocol + url_base,
2068 'format_id': protocol,
2069 'protocol': protocol,
2073 def _live_title(self, name):
2074 """ Generate the title
for a live video
"""
2075 now = datetime.datetime.now()
2076 now_str = now.strftime('%Y-%m-%d %H:%M')
2077 return name + ' ' + now_str
2079 def _int(self, v, name, fatal=False, **kwargs):
2080 res = int_or_none(v, **kwargs)
2081 if 'get_attr' in kwargs:
2082 print(getattr(v, kwargs['get_attr']))
2084 msg = 'Failed to extract %s: Could not parse value %r' % (name, v)
2086 raise ExtractorError(msg)
2088 self._downloader.report_warning(msg)
2091 def _float(self, v, name, fatal=False, **kwargs):
2092 res = float_or_none(v, **kwargs)
2094 msg = 'Failed to extract %s: Could not parse value %r' % (name, v)
2096 raise ExtractorError(msg)
2098 self._downloader.report_warning(msg)
2101 def _set_cookie(self, domain, name, value, expire_time=None):
2102 cookie = compat_cookiejar.Cookie(
2103 0, name, value, None, None, domain, None,
2104 None, '/', True, False, expire_time, '', None, None, None)
2105 self._downloader.cookiejar.set_cookie(cookie)
2107 def _get_cookies(self, url):
2108 """ Return a compat_cookies
.SimpleCookie
with the cookies
for the url
"""
2109 req = sanitized_Request(url)
2110 self._downloader.cookiejar.add_cookie_header(req)
2111 return compat_cookies.SimpleCookie(req.get_header('Cookie'))
2113 def get_testcases(self, include_onlymatching=False):
2114 t = getattr(self, '_TEST', None)
2116 assert not hasattr(self, '_TESTS'), \
2117 '%s has _TEST and _TESTS' % type(self).__name__
2120 tests = getattr(self, '_TESTS', [])
2122 if not include_onlymatching and t.get('only_matching', False):
2124 t['name'] = type(self).__name__[:-len('IE')]
2127 def is_suitable(self, age_limit):
2128 """ Test whether the extractor
is generally suitable
for the given
2129 age
limit (i
.e
. pornographic sites are
not, all others usually are
) """
2131 any_restricted = False
2132 for tc in self.get_testcases(include_onlymatching=False):
2133 if tc.get('playlist', []):
2134 tc = tc['playlist'][0]
2135 is_restricted = age_restricted(
2136 tc.get('info_dict', {}).get('age_limit'), age_limit)
2137 if not is_restricted:
2139 any_restricted = any_restricted or is_restricted
2140 return not any_restricted
2142 def extract_subtitles(self, *args, **kwargs):
2143 if (self._downloader.params.get('writesubtitles', False) or
2144 self._downloader.params.get('listsubtitles')):
2145 return self._get_subtitles(*args, **kwargs)
2148 def _get_subtitles(self, *args, **kwargs):
2149 raise NotImplementedError('This method must be implemented by subclasses')
2152 def _merge_subtitle_items(subtitle_list1, subtitle_list2):
2153 """ Merge subtitle items
for one language
. Items
with duplicated URLs
2154 will be dropped
. """
2155 list1_urls = set([item['url'] for item in subtitle_list1])
2156 ret = list(subtitle_list1)
2157 ret.extend([item for item in subtitle_list2 if item['url'] not in list1_urls])
2161 def _merge_subtitles(cls, subtitle_dict1, subtitle_dict2):
2162 """ Merge two subtitle dictionaries
, language by language
. """
2163 ret = dict(subtitle_dict1)
2164 for lang in subtitle_dict2:
2165 ret[lang] = cls._merge_subtitle_items(subtitle_dict1.get(lang, []), subtitle_dict2[lang])
2168 def extract_automatic_captions(self, *args, **kwargs):
2169 if (self._downloader.params.get('writeautomaticsub', False) or
2170 self._downloader.params.get('listsubtitles')):
2171 return self._get_automatic_captions(*args, **kwargs)
2174 def _get_automatic_captions(self, *args, **kwargs):
2175 raise NotImplementedError('This method must be implemented by subclasses')
2177 def mark_watched(self, *args, **kwargs):
2178 if (self._downloader.params.get('mark_watched', False) and
2179 (self._get_login_info()[0] is not None or
2180 self._downloader.params.get('cookiefile') is not None)):
2181 self._mark_watched(*args, **kwargs)
2183 def _mark_watched(self, *args, **kwargs):
2184 raise NotImplementedError('This method must be implemented by subclasses')
2186 def geo_verification_headers(self):
2188 geo_verification_proxy = self._downloader.params.get('geo_verification_proxy')
2189 if geo_verification_proxy:
2190 headers['Ytdl-request-proxy'] = geo_verification_proxy
2193 def _generic_id(self, url):
2194 return compat_urllib_parse_unquote(os.path.splitext(url.rstrip('/').split('/')[-1])[0])
2196 def _generic_title(self, url):
2197 return compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0])
2200 class SearchInfoExtractor(InfoExtractor):
2202 Base
class for paged search queries extractors
.
2203 They accept URLs
in the format
_SEARCH_KEY(|all|
[0-9]):{query}
2204 Instances should define _SEARCH_KEY
and _MAX_RESULTS
.
2208 def _make_valid_url(cls):
2209 return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
2212 def suitable(cls, url):
2213 return re.match(cls._make_valid_url(), url) is not None
2215 def _real_extract(self, query):
2216 mobj = re.match(self._make_valid_url(), query)
2218 raise ExtractorError('Invalid search query "%s"' % query)
2220 prefix = mobj.group('prefix')
2221 query = mobj.group('query')
2223 return self._get_n_results(query, 1)
2224 elif prefix == 'all':
2225 return self._get_n_results(query, self._MAX_RESULTS)
2229 raise ExtractorError('invalid download number %s for query "%s"' % (n, query))
2230 elif n > self._MAX_RESULTS:
2231 self._downloader.report_warning('%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
2232 n = self._MAX_RESULTS
2233 return self._get_n_results(query, n)
2235 def _get_n_results(self, query, n):
2236 """Get a specified number of results
for a query
"""
2237 raise NotImplementedError('This method must be implemented by subclasses')
2240 def SEARCH_KEY(self):
2241 return self._SEARCH_KEY