4 from __future__
import unicode_literals
34 import xml
.etree
.ElementTree
41 compat_etree_fromstring
,
44 compat_html_entities_html5
,
50 compat_socket_create_connection
,
56 compat_urllib_parse_urlencode
,
57 compat_urllib_parse_urlparse
,
58 compat_urllib_parse_unquote_plus
,
59 compat_urllib_request
,
70 def register_socks_protocols():
71 # "Register" SOCKS protocols
72 # In Python < 2.6.5, urlsplit() suffers from bug https://bugs.python.org/issue7904
73 # URLs with protocols not in urlparse.uses_netloc are not handled correctly
74 for scheme
in ('socks', 'socks4', 'socks4a', 'socks5'):
75 if scheme
not in compat_urlparse
.uses_netloc
:
76 compat_urlparse
.uses_netloc
.append(scheme
)
79 # This is not clearly defined otherwise
80 compiled_regex_type
= type(re
.compile(''))
83 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20150101 Firefox/47.0 (Chrome)',
84 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
85 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
86 'Accept-Encoding': 'gzip, deflate',
87 'Accept-Language': 'en-us,en;q=0.5',
92 'Safari': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27',
98 ENGLISH_MONTH_NAMES
= [
99 'January', 'February', 'March', 'April', 'May', 'June',
100 'July', 'August', 'September', 'October', 'November', 'December']
103 'en': ENGLISH_MONTH_NAMES
,
105 'janvier', 'février', 'mars', 'avril', 'mai', 'juin',
106 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
110 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v', 'aac',
111 'flv', 'f4v', 'f4a', 'f4b',
112 'webm', 'ogg', 'ogv', 'oga', 'ogx', 'spx', 'opus',
113 'mkv', 'mka', 'mk3d',
122 'f4f', 'f4m', 'm3u8', 'smil')
124 # needed for sanitizing filenames in restricted mode
125 ACCENT_CHARS
= dict(zip('ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖŐØŒÙÚÛÜŰÝÞßàáâãäåæçèéêëìíîïðñòóôõöőøœùúûüűýþÿ',
126 itertools
.chain('AAAAAA', ['AE'], 'CEEEEIIIIDNOOOOOOO', ['OE'], 'UUUUUYP', ['ss'],
127 'aaaaaa', ['ae'], 'ceeeeiiiionooooooo', ['oe'], 'uuuuuypy')))
150 '%Y-%m-%d %H:%M:%S.%f',
153 '%Y-%m-%dT%H:%M:%SZ',
154 '%Y-%m-%dT%H:%M:%S.%fZ',
155 '%Y-%m-%dT%H:%M:%S.%f0Z',
157 '%Y-%m-%dT%H:%M:%S.%f',
160 '%b %d %Y at %H:%M:%S',
163 DATE_FORMATS_DAY_FIRST
= list(DATE_FORMATS
)
164 DATE_FORMATS_DAY_FIRST
.extend([
173 DATE_FORMATS_MONTH_FIRST
= list(DATE_FORMATS
)
174 DATE_FORMATS_MONTH_FIRST
.extend([
182 PACKED_CODES_RE
= r
"}\('(.+)',(\d+),(\d+),'([^']+)'\.split\('\|'\)"
185 def preferredencoding():
186 """Get preferred encoding.
188 Returns the best encoding scheme for the system, based on
189 locale.getpreferredencoding() and some further tweaks.
192 pref
= locale
.getpreferredencoding()
200 def write_json_file(obj
, fn
):
201 """ Encode obj as JSON and write it to fn, atomically if possible """
203 fn
= encodeFilename(fn
)
204 if sys
.version_info
< (3, 0) and sys
.platform
!= 'win32':
205 encoding
= get_filesystem_encoding()
206 # os.path.basename returns a bytes object, but NamedTemporaryFile
207 # will fail if the filename contains non ascii characters unless we
208 # use a unicode object
209 path_basename
= lambda f
: os
.path
.basename(fn
).decode(encoding
)
210 # the same for os.path.dirname
211 path_dirname
= lambda f
: os
.path
.dirname(fn
).decode(encoding
)
213 path_basename
= os
.path
.basename
214 path_dirname
= os
.path
.dirname
218 'prefix': path_basename(fn
) + '.',
219 'dir': path_dirname(fn
),
223 # In Python 2.x, json.dump expects a bytestream.
224 # In Python 3.x, it writes to a character stream
225 if sys
.version_info
< (3, 0):
233 tf
= tempfile
.NamedTemporaryFile(**compat_kwargs(args
))
238 if sys
.platform
== 'win32':
239 # Need to remove existing file on Windows, else os.rename raises
240 # WindowsError or FileExistsError.
245 os
.rename(tf
.name
, fn
)
254 if sys
.version_info
>= (2, 7):
255 def find_xpath_attr(node
, xpath
, key
, val
=None):
256 """ Find the xpath xpath[@key=val] """
257 assert re
.match(r
'^[a-zA-Z_-]+$', key
)
258 expr
= xpath
+ ('[@%s]' % key
if val
is None else "[@%s='%s']" % (key
, val
))
259 return node
.find(expr
)
261 def find_xpath_attr(node
, xpath
, key
, val
=None):
262 for f
in node
.findall(compat_xpath(xpath
)):
263 if key
not in f
.attrib
:
265 if val
is None or f
.attrib
.get(key
) == val
:
269 # On python2.6 the xml.etree.ElementTree.Element methods don't support
270 # the namespace parameter
273 def xpath_with_ns(path
, ns_map
):
274 components
= [c
.split(':') for c
in path
.split('/')]
278 replaced
.append(c
[0])
281 replaced
.append('{%s}%s' % (ns_map
[ns
], tag
))
282 return '/'.join(replaced
)
285 def xpath_element(node
, xpath
, name
=None, fatal
=False, default
=NO_DEFAULT
):
286 def _find_xpath(xpath
):
287 return node
.find(compat_xpath(xpath
))
289 if isinstance(xpath
, (str, compat_str
)):
290 n
= _find_xpath(xpath
)
298 if default
is not NO_DEFAULT
:
301 name
= xpath
if name
is None else name
302 raise ExtractorError('Could not find XML element %s' % name
)
308 def xpath_text(node
, xpath
, name
=None, fatal
=False, default
=NO_DEFAULT
):
309 n
= xpath_element(node
, xpath
, name
, fatal
=fatal
, default
=default
)
310 if n
is None or n
== default
:
313 if default
is not NO_DEFAULT
:
316 name
= xpath
if name
is None else name
317 raise ExtractorError('Could not find XML element\'s text %s' % name
)
323 def xpath_attr(node
, xpath
, key
, name
=None, fatal
=False, default
=NO_DEFAULT
):
324 n
= find_xpath_attr(node
, xpath
, key
)
326 if default
is not NO_DEFAULT
:
329 name
= '%s[@%s]' % (xpath
, key
) if name
is None else name
330 raise ExtractorError('Could not find XML attribute %s' % name
)
336 def get_element_by_id(id, html
):
337 """Return the content of the tag with the specified ID in the passed HTML document"""
338 return get_element_by_attribute('id', id, html
)
341 def get_element_by_class(class_name
, html
):
342 """Return the content of the first tag with the specified class in the passed HTML document"""
343 retval
= get_elements_by_class(class_name
, html
)
344 return retval
[0] if retval
else None
347 def get_element_by_attribute(attribute
, value
, html
, escape_value
=True):
348 retval
= get_elements_by_attribute(attribute
, value
, html
, escape_value
)
349 return retval
[0] if retval
else None
352 def get_elements_by_class(class_name
, html
):
353 """Return the content of all tags with the specified class in the passed HTML document as a list"""
354 return get_elements_by_attribute(
355 'class', r
'[^\'"]*\b%s\b[^\'"]*' % re.escape(class_name),
356 html, escape_value=False)
359 def get_elements_by_attribute(attribute, value, html, escape_value=True):
360 """Return the content of the tag with the specified attribute in the passed HTML document"""
362 value = re.escape(value) if escape_value else value
365 for m in re.finditer(r'''(?xs)
367 (?:\s+[a-zA-Z0-9:._-]+(?:=[a-zA-Z0-9:._-]*|="[^"]*"|='[^
']*'))*?
369 (?:\s+[a-zA-Z0-9:._-]+(?:=[a-zA-Z0-9:._-]*|="[^
"]*"|
='[^']*'))*?
373 ''' % (re.escape(attribute), value), html):
374 res = m.group('content
')
376 if res.startswith('"') or res.startswith("'"):
379 retlist.append(unescapeHTML(res))
384 class HTMLAttributeParser(compat_HTMLParser):
385 """Trivial HTML parser to gather the attributes for a single element"""
388 compat_HTMLParser.__init__(self)
390 def handle_starttag(self, tag, attrs):
391 self.attrs = dict(attrs)
394 def extract_attributes(html_element):
395 """Given a string for an HTML element such as
397 a="foo" B="bar" c="&98;az" d=boz
398 empty= noval entity="&"
401 Decode and return a dictionary of attributes.
403 'a
': 'foo
', 'b
': 'bar
', c: 'baz
', d: 'boz
',
404 'empty
': '', 'noval
': None, 'entity
': '&',
405 'sq
': '"', 'dq': '\''
407 NB HTMLParser is stricter in Python 2.6 & 3.2 than in later versions,
408 but the cases in the unit test will work for all of 2.6, 2.7, 3.2-3.5.
410 parser = HTMLAttributeParser()
411 parser.feed(html_element)
416 def clean_html(html):
417 """Clean an HTML snippet into a readable string"""
419 if html is None: # Convenience for sanitizing descriptions etc.
423 html = html.replace('\n', ' ')
424 html = re.sub(r'\s*<\s*br\s*/?\s*>\s*', '\n', html)
425 html = re.sub(r'<\s*/\s*p\s*>\s*<\s*p[^>]*>', '\n', html)
427 html = re.sub('<.*?>', '', html)
428 # Replace html entities
429 html = unescapeHTML(html)
433 def sanitize_open(filename, open_mode):
434 """Try to open the given filename, and slightly tweak it if this fails.
436 Attempts to open the given filename. If this fails, it tries to change
437 the filename slightly, step by step, until it's either able to open it
438 or it fails and raises a final exception, like the standard open()
441 It returns the tuple (stream, definitive_file_name).
445 if sys.platform == 'win32':
447 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
448 return (sys.stdout.buffer if hasattr(sys.stdout, 'buffer') else sys.stdout, filename)
449 stream = open(encodeFilename(filename), open_mode)
450 return (stream, filename)
451 except (IOError, OSError) as err:
452 if err.errno in (errno.EACCES,):
455 # In case of error, try to remove win32 forbidden chars
456 alt_filename = sanitize_path(filename)
457 if alt_filename == filename:
460 # An exception here should be caught in the caller
461 stream = open(encodeFilename(alt_filename), open_mode)
462 return (stream, alt_filename)
465 def timeconvert(timestr):
466 """Convert RFC 2822 defined time string into system timestamp"""
468 timetuple = email.utils.parsedate_tz(timestr)
469 if timetuple is not None:
470 timestamp = email.utils.mktime_tz(timetuple)
474 def sanitize_filename(s, restricted=False, is_id=False):
475 """Sanitizes a string so it could be used as part of a filename.
476 If restricted is set, use a stricter subset of allowed characters.
477 Set is_id if this is not an arbitrary string, but an ID that should be kept
480 def replace_insane(char):
481 if restricted and char in ACCENT_CHARS:
482 return ACCENT_CHARS[char]
483 if char == '?' or ord(char) < 32 or ord(char) == 127:
486 return '' if restricted else '\''
488 return '_
-' if restricted else ' -'
489 elif char in '\\/|
*<>':
491 if restricted and (char in '!&\'()[]{}$
;`^
,#' or char.isspace()):
493 if restricted
and ord(char
) > 127:
498 s
= re
.sub(r
'[0-9]+(?::[0-9]+)+', lambda m
: m
.group(0).replace(':', '_'), s
)
499 result
= ''.join(map(replace_insane
, s
))
501 while '__' in result
:
502 result
= result
.replace('__', '_')
503 result
= result
.strip('_')
504 # Common case of "Foreign band name - English song title"
505 if restricted
and result
.startswith('-_'):
507 if result
.startswith('-'):
508 result
= '_' + result
[len('-'):]
509 result
= result
.lstrip('.')
515 def sanitize_path(s
):
516 """Sanitizes and normalizes path on Windows"""
517 if sys
.platform
!= 'win32':
519 drive_or_unc
, _
= os
.path
.splitdrive(s
)
520 if sys
.version_info
< (2, 7) and not drive_or_unc
:
521 drive_or_unc
, _
= os
.path
.splitunc(s
)
522 norm_path
= os
.path
.normpath(remove_start(s
, drive_or_unc
)).split(os
.path
.sep
)
526 path_part
if path_part
in ['.', '..'] else re
.sub(r
'(?:[/<>:"\|\\?\*]|[\s.]$)', '#', path_part
)
527 for path_part
in norm_path
]
529 sanitized_path
.insert(0, drive_or_unc
+ os
.path
.sep
)
530 return os
.path
.join(*sanitized_path
)
533 # Prepend protocol-less URLs with `http:` scheme in order to mitigate the number of
534 # unwanted failures due to missing protocol
535 def sanitize_url(url
):
536 return 'http:%s' % url
if url
.startswith('//') else url
539 def sanitized_Request(url
, *args
, **kwargs
):
540 return compat_urllib_request
.Request(sanitize_url(url
), *args
, **kwargs
)
544 """Expand shell variables and ~"""
545 return os
.path
.expandvars(compat_expanduser(s
))
548 def orderedSet(iterable
):
549 """ Remove all duplicates from the input iterable """
557 def _htmlentity_transform(entity_with_semicolon
):
558 """Transforms an HTML entity to a character."""
559 entity
= entity_with_semicolon
[:-1]
561 # Known non-numeric HTML entity
562 if entity
in compat_html_entities
.name2codepoint
:
563 return compat_chr(compat_html_entities
.name2codepoint
[entity
])
565 # TODO: HTML5 allows entities without a semicolon. For example,
566 # 'Éric' should be decoded as 'Éric'.
567 if entity_with_semicolon
in compat_html_entities_html5
:
568 return compat_html_entities_html5
[entity_with_semicolon
]
570 mobj
= re
.match(r
'#(x[0-9a-fA-F]+|[0-9]+)', entity
)
572 numstr
= mobj
.group(1)
573 if numstr
.startswith('x'):
575 numstr
= '0%s' % numstr
578 # See https://github.com/rg3/youtube-dl/issues/7518
580 return compat_chr(int(numstr
, base
))
584 # Unknown entity in name, return its literal representation
585 return '&%s;' % entity
591 assert type(s
) == compat_str
594 r
'&([^;]+;)', lambda m
: _htmlentity_transform(m
.group(1)), s
)
597 def get_subprocess_encoding():
598 if sys
.platform
== 'win32' and sys
.getwindowsversion()[0] >= 5:
599 # For subprocess calls, encode with locale encoding
600 # Refer to http://stackoverflow.com/a/9951851/35070
601 encoding
= preferredencoding()
603 encoding
= sys
.getfilesystemencoding()
609 def encodeFilename(s
, for_subprocess
=False):
611 @param s The name of the file
614 assert type(s
) == compat_str
616 # Python 3 has a Unicode API
617 if sys
.version_info
>= (3, 0):
620 # Pass '' directly to use Unicode APIs on Windows 2000 and up
621 # (Detecting Windows NT 4 is tricky because 'major >= 4' would
622 # match Windows 9x series as well. Besides, NT 4 is obsolete.)
623 if not for_subprocess
and sys
.platform
== 'win32' and sys
.getwindowsversion()[0] >= 5:
626 # Jython assumes filenames are Unicode strings though reported as Python 2.x compatible
627 if sys
.platform
.startswith('java'):
630 return s
.encode(get_subprocess_encoding(), 'ignore')
633 def decodeFilename(b
, for_subprocess
=False):
635 if sys
.version_info
>= (3, 0):
638 if not isinstance(b
, bytes):
641 return b
.decode(get_subprocess_encoding(), 'ignore')
644 def encodeArgument(s
):
645 if not isinstance(s
, compat_str
):
646 # Legacy code that uses byte strings
647 # Uncomment the following line after fixing all post processors
648 # assert False, 'Internal error: %r should be of type %r, is %r' % (s, compat_str, type(s))
649 s
= s
.decode('ascii')
650 return encodeFilename(s
, True)
653 def decodeArgument(b
):
654 return decodeFilename(b
, True)
657 def decodeOption(optval
):
660 if isinstance(optval
, bytes):
661 optval
= optval
.decode(preferredencoding())
663 assert isinstance(optval
, compat_str
)
667 def formatSeconds(secs
):
669 return '%d:%02d:%02d' % (secs
// 3600, (secs
% 3600) // 60, secs
% 60)
671 return '%d:%02d' % (secs
// 60, secs
% 60)
676 def make_HTTPS_handler(params
, **kwargs
):
677 opts_no_check_certificate
= params
.get('nocheckcertificate', False)
678 if hasattr(ssl
, 'create_default_context'): # Python >= 3.4 or 2.7.9
679 context
= ssl
.create_default_context(ssl
.Purpose
.SERVER_AUTH
)
680 if opts_no_check_certificate
:
681 context
.check_hostname
= False
682 context
.verify_mode
= ssl
.CERT_NONE
684 return YoutubeDLHTTPSHandler(params
, context
=context
, **kwargs
)
687 # (create_default_context present but HTTPSHandler has no context=)
690 if sys
.version_info
< (3, 2):
691 return YoutubeDLHTTPSHandler(params
, **kwargs
)
693 context
= ssl
.SSLContext(ssl
.PROTOCOL_TLSv1
)
694 context
.verify_mode
= (ssl
.CERT_NONE
695 if opts_no_check_certificate
696 else ssl
.CERT_REQUIRED
)
697 context
.set_default_verify_paths()
698 return YoutubeDLHTTPSHandler(params
, context
=context
, **kwargs
)
701 def bug_reports_message():
702 if ytdl_is_updateable():
703 update_cmd
= 'type youtube-dl -U to update'
705 update_cmd
= 'see https://yt-dl.org/update on how to update'
706 msg
= '; please report this issue on https://yt-dl.org/bug .'
707 msg
+= ' Make sure you are using the latest version; %s.' % update_cmd
708 msg
+= ' Be sure to call youtube-dl with the --verbose flag and include its complete output.'
712 class YoutubeDLError(Exception):
713 """Base exception for YoutubeDL errors."""
717 class ExtractorError(YoutubeDLError
):
718 """Error during info extraction."""
720 def __init__(self
, msg
, tb
=None, expected
=False, cause
=None, video_id
=None):
721 """ tb, if given, is the original traceback (so that it can be printed out).
722 If expected is set, this is a normal error message and most likely not a bug in youtube-dl.
725 if sys
.exc_info()[0] in (compat_urllib_error
.URLError
, socket
.timeout
, UnavailableVideoError
):
727 if video_id
is not None:
728 msg
= video_id
+ ': ' + msg
730 msg
+= ' (caused by %r)' % cause
732 msg
+= bug_reports_message()
733 super(ExtractorError
, self
).__init
__(msg
)
736 self
.exc_info
= sys
.exc_info() # preserve original exception
738 self
.video_id
= video_id
740 def format_traceback(self
):
741 if self
.traceback
is None:
743 return ''.join(traceback
.format_tb(self
.traceback
))
746 class UnsupportedError(ExtractorError
):
747 def __init__(self
, url
):
748 super(UnsupportedError
, self
).__init
__(
749 'Unsupported URL: %s' % url
, expected
=True)
753 class RegexNotFoundError(ExtractorError
):
754 """Error when a regex didn't match"""
758 class GeoRestrictedError(ExtractorError
):
759 """Geographic restriction Error exception.
761 This exception may be thrown when a video is not available from your
762 geographic location due to geographic restrictions imposed by a website.
764 def __init__(self
, msg
, countries
=None):
765 super(GeoRestrictedError
, self
).__init
__(msg
, expected
=True)
767 self
.countries
= countries
770 class DownloadError(YoutubeDLError
):
771 """Download Error exception.
773 This exception may be thrown by FileDownloader objects if they are not
774 configured to continue on errors. They will contain the appropriate
778 def __init__(self
, msg
, exc_info
=None):
779 """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
780 super(DownloadError
, self
).__init
__(msg
)
781 self
.exc_info
= exc_info
784 class SameFileError(YoutubeDLError
):
785 """Same File exception.
787 This exception will be thrown by FileDownloader objects if they detect
788 multiple files would have to be downloaded to the same file on disk.
793 class PostProcessingError(YoutubeDLError
):
794 """Post Processing exception.
796 This exception may be raised by PostProcessor's .run() method to
797 indicate an error in the postprocessing task.
800 def __init__(self
, msg
):
801 super(PostProcessingError
, self
).__init
__(msg
)
805 class MaxDownloadsReached(YoutubeDLError
):
806 """ --max-downloads limit has been reached. """
810 class UnavailableVideoError(YoutubeDLError
):
811 """Unavailable Format exception.
813 This exception will be thrown when a video is requested
814 in a format that is not available for that video.
819 class ContentTooShortError(YoutubeDLError
):
820 """Content Too Short exception.
822 This exception may be raised by FileDownloader objects when a file they
823 download is too small for what the server announced first, indicating
824 the connection was probably interrupted.
827 def __init__(self
, downloaded
, expected
):
828 super(ContentTooShortError
, self
).__init
__(
829 'Downloaded {0} bytes, expected {1} bytes'.format(downloaded
, expected
)
832 self
.downloaded
= downloaded
833 self
.expected
= expected
836 class XAttrMetadataError(YoutubeDLError
):
837 def __init__(self
, code
=None, msg
='Unknown error'):
838 super(XAttrMetadataError
, self
).__init
__(msg
)
842 # Parsing code and msg
843 if (self
.code
in (errno
.ENOSPC
, errno
.EDQUOT
) or
844 'No space left' in self
.msg
or 'Disk quota excedded' in self
.msg
):
845 self
.reason
= 'NO_SPACE'
846 elif self
.code
== errno
.E2BIG
or 'Argument list too long' in self
.msg
:
847 self
.reason
= 'VALUE_TOO_LONG'
849 self
.reason
= 'NOT_SUPPORTED'
852 class XAttrUnavailableError(YoutubeDLError
):
856 def _create_http_connection(ydl_handler
, http_class
, is_https
, *args
, **kwargs
):
857 # Working around python 2 bug (see http://bugs.python.org/issue17849) by limiting
858 # expected HTTP responses to meet HTTP/1.0 or later (see also
859 # https://github.com/rg3/youtube-dl/issues/6727)
860 if sys
.version_info
< (3, 0):
861 kwargs
[b
'strict'] = True
862 hc
= http_class(*args
, **kwargs
)
863 source_address
= ydl_handler
._params
.get('source_address')
864 if source_address
is not None:
865 sa
= (source_address
, 0)
866 if hasattr(hc
, 'source_address'): # Python 2.7+
867 hc
.source_address
= sa
869 def _hc_connect(self
, *args
, **kwargs
):
870 sock
= compat_socket_create_connection(
871 (self
.host
, self
.port
), self
.timeout
, sa
)
873 self
.sock
= ssl
.wrap_socket(
874 sock
, self
.key_file
, self
.cert_file
,
875 ssl_version
=ssl
.PROTOCOL_TLSv1
)
878 hc
.connect
= functools
.partial(_hc_connect
, hc
)
883 def handle_youtubedl_headers(headers
):
884 filtered_headers
= headers
886 if 'Youtubedl-no-compression' in filtered_headers
:
887 filtered_headers
= dict((k
, v
) for k
, v
in filtered_headers
.items() if k
.lower() != 'accept-encoding')
888 del filtered_headers
['Youtubedl-no-compression']
890 return filtered_headers
893 class YoutubeDLHandler(compat_urllib_request
.HTTPHandler
):
894 """Handler for HTTP requests and responses.
896 This class, when installed with an OpenerDirector, automatically adds
897 the standard headers to every HTTP request and handles gzipped and
898 deflated responses from web servers. If compression is to be avoided in
899 a particular request, the original request in the program code only has
900 to include the HTTP header "Youtubedl-no-compression", which will be
901 removed before making the real request.
903 Part of this code was copied from:
905 http://techknack.net/python-urllib2-handlers/
907 Andrew Rowls, the author of that code, agreed to release it to the
911 def __init__(self
, params
, *args
, **kwargs
):
912 compat_urllib_request
.HTTPHandler
.__init
__(self
, *args
, **kwargs
)
913 self
._params
= params
915 def http_open(self
, req
):
916 conn_class
= compat_http_client
.HTTPConnection
918 socks_proxy
= req
.headers
.get('Ytdl-socks-proxy')
920 conn_class
= make_socks_conn_class(conn_class
, socks_proxy
)
921 del req
.headers
['Ytdl-socks-proxy']
923 return self
.do_open(functools
.partial(
924 _create_http_connection
, self
, conn_class
, False),
930 return zlib
.decompress(data
, -zlib
.MAX_WBITS
)
932 return zlib
.decompress(data
)
935 def addinfourl_wrapper(stream
, headers
, url
, code
):
936 if hasattr(compat_urllib_request
.addinfourl
, 'getcode'):
937 return compat_urllib_request
.addinfourl(stream
, headers
, url
, code
)
938 ret
= compat_urllib_request
.addinfourl(stream
, headers
, url
)
942 def http_request(self
, req
):
943 # According to RFC 3986, URLs can not contain non-ASCII characters, however this is not
944 # always respected by websites, some tend to give out URLs with non percent-encoded
945 # non-ASCII characters (see telemb.py, ard.py [#3412])
946 # urllib chokes on URLs with non-ASCII characters (see http://bugs.python.org/issue3991)
947 # To work around aforementioned issue we will replace request's original URL with
948 # percent-encoded one
949 # Since redirects are also affected (e.g. http://www.southpark.de/alle-episoden/s18e09)
950 # the code of this workaround has been moved here from YoutubeDL.urlopen()
951 url
= req
.get_full_url()
952 url_escaped
= escape_url(url
)
954 # Substitute URL if any change after escaping
955 if url
!= url_escaped
:
956 req
= update_Request(req
, url
=url_escaped
)
958 for h
, v
in std_headers
.items():
959 # Capitalize is needed because of Python bug 2275: http://bugs.python.org/issue2275
960 # The dict keys are capitalized because of this bug by urllib
961 if h
.capitalize() not in req
.headers
:
964 req
.headers
= handle_youtubedl_headers(req
.headers
)
966 if sys
.version_info
< (2, 7) and '#' in req
.get_full_url():
967 # Python 2.6 is brain-dead when it comes to fragments
968 req
._Request
__original
= req
._Request
__original
.partition('#')[0]
969 req
._Request
__r
_type
= req
._Request
__r
_type
.partition('#')[0]
973 def http_response(self
, req
, resp
):
976 if resp
.headers
.get('Content-encoding', '') == 'gzip':
977 content
= resp
.read()
978 gz
= gzip
.GzipFile(fileobj
=io
.BytesIO(content
), mode
='rb')
980 uncompressed
= io
.BytesIO(gz
.read())
981 except IOError as original_ioerror
:
982 # There may be junk add the end of the file
983 # See http://stackoverflow.com/q/4928560/35070 for details
984 for i
in range(1, 1024):
986 gz
= gzip
.GzipFile(fileobj
=io
.BytesIO(content
[:-i
]), mode
='rb')
987 uncompressed
= io
.BytesIO(gz
.read())
992 raise original_ioerror
993 resp
= self
.addinfourl_wrapper(uncompressed
, old_resp
.headers
, old_resp
.url
, old_resp
.code
)
994 resp
.msg
= old_resp
.msg
995 del resp
.headers
['Content-encoding']
997 if resp
.headers
.get('Content-encoding', '') == 'deflate':
998 gz
= io
.BytesIO(self
.deflate(resp
.read()))
999 resp
= self
.addinfourl_wrapper(gz
, old_resp
.headers
, old_resp
.url
, old_resp
.code
)
1000 resp
.msg
= old_resp
.msg
1001 del resp
.headers
['Content-encoding']
1002 # Percent-encode redirect URL of Location HTTP header to satisfy RFC 3986 (see
1003 # https://github.com/rg3/youtube-dl/issues/6457).
1004 if 300 <= resp
.code
< 400:
1005 location
= resp
.headers
.get('Location')
1007 # As of RFC 2616 default charset is iso-8859-1 that is respected by python 3
1008 if sys
.version_info
>= (3, 0):
1009 location
= location
.encode('iso-8859-1').decode('utf-8')
1011 location
= location
.decode('utf-8')
1012 location_escaped
= escape_url(location
)
1013 if location
!= location_escaped
:
1014 del resp
.headers
['Location']
1015 if sys
.version_info
< (3, 0):
1016 location_escaped
= location_escaped
.encode('utf-8')
1017 resp
.headers
['Location'] = location_escaped
1020 https_request
= http_request
1021 https_response
= http_response
1024 def make_socks_conn_class(base_class
, socks_proxy
):
1025 assert issubclass(base_class
, (
1026 compat_http_client
.HTTPConnection
, compat_http_client
.HTTPSConnection
))
1028 url_components
= compat_urlparse
.urlparse(socks_proxy
)
1029 if url_components
.scheme
.lower() == 'socks5':
1030 socks_type
= ProxyType
.SOCKS5
1031 elif url_components
.scheme
.lower() in ('socks', 'socks4'):
1032 socks_type
= ProxyType
.SOCKS4
1033 elif url_components
.scheme
.lower() == 'socks4a':
1034 socks_type
= ProxyType
.SOCKS4A
1036 def unquote_if_non_empty(s
):
1039 return compat_urllib_parse_unquote_plus(s
)
1043 url_components
.hostname
, url_components
.port
or 1080,
1045 unquote_if_non_empty(url_components
.username
),
1046 unquote_if_non_empty(url_components
.password
),
1049 class SocksConnection(base_class
):
1051 self
.sock
= sockssocket()
1052 self
.sock
.setproxy(*proxy_args
)
1053 if type(self
.timeout
) in (int, float):
1054 self
.sock
.settimeout(self
.timeout
)
1055 self
.sock
.connect((self
.host
, self
.port
))
1057 if isinstance(self
, compat_http_client
.HTTPSConnection
):
1058 if hasattr(self
, '_context'): # Python > 2.6
1059 self
.sock
= self
._context
.wrap_socket(
1060 self
.sock
, server_hostname
=self
.host
)
1062 self
.sock
= ssl
.wrap_socket(self
.sock
)
1064 return SocksConnection
1067 class YoutubeDLHTTPSHandler(compat_urllib_request
.HTTPSHandler
):
1068 def __init__(self
, params
, https_conn_class
=None, *args
, **kwargs
):
1069 compat_urllib_request
.HTTPSHandler
.__init
__(self
, *args
, **kwargs
)
1070 self
._https
_conn
_class
= https_conn_class
or compat_http_client
.HTTPSConnection
1071 self
._params
= params
1073 def https_open(self
, req
):
1075 conn_class
= self
._https
_conn
_class
1077 if hasattr(self
, '_context'): # python > 2.6
1078 kwargs
['context'] = self
._context
1079 if hasattr(self
, '_check_hostname'): # python 3.x
1080 kwargs
['check_hostname'] = self
._check
_hostname
1082 socks_proxy
= req
.headers
.get('Ytdl-socks-proxy')
1084 conn_class
= make_socks_conn_class(conn_class
, socks_proxy
)
1085 del req
.headers
['Ytdl-socks-proxy']
1087 return self
.do_open(functools
.partial(
1088 _create_http_connection
, self
, conn_class
, True),
1092 class YoutubeDLCookieProcessor(compat_urllib_request
.HTTPCookieProcessor
):
1093 def __init__(self
, cookiejar
=None):
1094 compat_urllib_request
.HTTPCookieProcessor
.__init
__(self
, cookiejar
)
1096 def http_response(self
, request
, response
):
1097 # Python 2 will choke on next HTTP request in row if there are non-ASCII
1098 # characters in Set-Cookie HTTP header of last response (see
1099 # https://github.com/rg3/youtube-dl/issues/6769).
1100 # In order to at least prevent crashing we will percent encode Set-Cookie
1101 # header before HTTPCookieProcessor starts processing it.
1102 # if sys.version_info < (3, 0) and response.headers:
1103 # for set_cookie_header in ('Set-Cookie', 'Set-Cookie2'):
1104 # set_cookie = response.headers.get(set_cookie_header)
1106 # set_cookie_escaped = compat_urllib_parse.quote(set_cookie, b"%/;:@&=+$,!~*'()?#[] ")
1107 # if set_cookie != set_cookie_escaped:
1108 # del response.headers[set_cookie_header]
1109 # response.headers[set_cookie_header] = set_cookie_escaped
1110 return compat_urllib_request
.HTTPCookieProcessor
.http_response(self
, request
, response
)
1112 https_request
= compat_urllib_request
.HTTPCookieProcessor
.http_request
1113 https_response
= http_response
1116 def extract_timezone(date_str
):
1118 r
'^.{8,}?(?P<tz>Z$| ?(?P<sign>\+|-)(?P<hours>[0-9]{2}):?(?P<minutes>[0-9]{2})$)',
1121 timezone
= datetime
.timedelta()
1123 date_str
= date_str
[:-len(m
.group('tz'))]
1124 if not m
.group('sign'):
1125 timezone
= datetime
.timedelta()
1127 sign
= 1 if m
.group('sign') == '+' else -1
1128 timezone
= datetime
.timedelta(
1129 hours
=sign
* int(m
.group('hours')),
1130 minutes
=sign
* int(m
.group('minutes')))
1131 return timezone
, date_str
1134 def parse_iso8601(date_str
, delimiter
='T', timezone
=None):
1135 """ Return a UNIX timestamp from the given date """
1137 if date_str
is None:
1140 date_str
= re
.sub(r
'\.[0-9]+', '', date_str
)
1142 if timezone
is None:
1143 timezone
, date_str
= extract_timezone(date_str
)
1146 date_format
= '%Y-%m-%d{0}%H:%M:%S'.format(delimiter
)
1147 dt
= datetime
.datetime
.strptime(date_str
, date_format
) - timezone
1148 return calendar
.timegm(dt
.timetuple())
1153 def date_formats(day_first
=True):
1154 return DATE_FORMATS_DAY_FIRST
if day_first
else DATE_FORMATS_MONTH_FIRST
1157 def unified_strdate(date_str
, day_first
=True):
1158 """Return a string with the date in the format YYYYMMDD"""
1160 if date_str
is None:
1164 date_str
= date_str
.replace(',', ' ')
1165 # Remove AM/PM + timezone
1166 date_str
= re
.sub(r
'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str
)
1167 _
, date_str
= extract_timezone(date_str
)
1169 for expression
in date_formats(day_first
):
1171 upload_date
= datetime
.datetime
.strptime(date_str
, expression
).strftime('%Y%m%d')
1174 if upload_date
is None:
1175 timetuple
= email
.utils
.parsedate_tz(date_str
)
1178 upload_date
= datetime
.datetime(*timetuple
[:6]).strftime('%Y%m%d')
1181 if upload_date
is not None:
1182 return compat_str(upload_date
)
1185 def unified_timestamp(date_str
, day_first
=True):
1186 if date_str
is None:
1189 date_str
= date_str
.replace(',', ' ')
1191 pm_delta
= 12 if re
.search(r
'(?i)PM', date_str
) else 0
1192 timezone
, date_str
= extract_timezone(date_str
)
1194 # Remove AM/PM + timezone
1195 date_str
= re
.sub(r
'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str
)
1197 for expression
in date_formats(day_first
):
1199 dt
= datetime
.datetime
.strptime(date_str
, expression
) - timezone
+ datetime
.timedelta(hours
=pm_delta
)
1200 return calendar
.timegm(dt
.timetuple())
1203 timetuple
= email
.utils
.parsedate_tz(date_str
)
1205 return calendar
.timegm(timetuple
) + pm_delta
* 3600
1208 def determine_ext(url
, default_ext
='unknown_video'):
1211 guess
= url
.partition('?')[0].rpartition('.')[2]
1212 if re
.match(r
'^[A-Za-z0-9]+$', guess
):
1214 # Try extract ext from URLs like http://example.com/foo/bar.mp4/?download
1215 elif guess
.rstrip('/') in KNOWN_EXTENSIONS
:
1216 return guess
.rstrip('/')
1221 def subtitles_filename(filename
, sub_lang
, sub_format
):
1222 return filename
.rsplit('.', 1)[0] + '.' + sub_lang
+ '.' + sub_format
1225 def date_from_str(date_str
):
1227 Return a datetime object from a string in the format YYYYMMDD or
1228 (now|today)[+-][0-9](day|week|month|year)(s)?"""
1229 today
= datetime
.date
.today()
1230 if date_str
in ('now', 'today'):
1232 if date_str
== 'yesterday':
1233 return today
- datetime
.timedelta(days
=1)
1234 match
= re
.match(r
'(now|today)(?P<sign>[+-])(?P<time>\d+)(?P<unit>day|week|month|year)(s)?', date_str
)
1235 if match
is not None:
1236 sign
= match
.group('sign')
1237 time
= int(match
.group('time'))
1240 unit
= match
.group('unit')
1241 # A bad approximation?
1245 elif unit
== 'year':
1249 delta
= datetime
.timedelta(**{unit
: time
})
1250 return today
+ delta
1251 return datetime
.datetime
.strptime(date_str
, '%Y%m%d').date()
1254 def hyphenate_date(date_str
):
1256 Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
1257 match
= re
.match(r
'^(\d\d\d\d)(\d\d)(\d\d)$', date_str
)
1258 if match
is not None:
1259 return '-'.join(match
.groups())
1264 class DateRange(object):
1265 """Represents a time interval between two dates"""
1267 def __init__(self
, start
=None, end
=None):
1268 """start and end must be strings in the format accepted by date"""
1269 if start
is not None:
1270 self
.start
= date_from_str(start
)
1272 self
.start
= datetime
.datetime
.min.date()
1274 self
.end
= date_from_str(end
)
1276 self
.end
= datetime
.datetime
.max.date()
1277 if self
.start
> self
.end
:
1278 raise ValueError('Date range: "%s" , the start date must be before the end date' % self
)
1282 """Returns a range that only contains the given day"""
1283 return cls(day
, day
)
1285 def __contains__(self
, date
):
1286 """Check if the date is in the range"""
1287 if not isinstance(date
, datetime
.date
):
1288 date
= date_from_str(date
)
1289 return self
.start
<= date
<= self
.end
1292 return '%s - %s' % (self
.start
.isoformat(), self
.end
.isoformat())
1295 def platform_name():
1296 """ Returns the platform name as a compat_str """
1297 res
= platform
.platform()
1298 if isinstance(res
, bytes):
1299 res
= res
.decode(preferredencoding())
1301 assert isinstance(res
, compat_str
)
1305 def _windows_write_string(s
, out
):
1306 """ Returns True if the string was written using special methods,
1307 False if it has yet to be written out."""
1308 # Adapted from http://stackoverflow.com/a/3259271/35070
1311 import ctypes
.wintypes
1319 fileno
= out
.fileno()
1320 except AttributeError:
1321 # If the output stream doesn't have a fileno, it's virtual
1323 except io
.UnsupportedOperation
:
1324 # Some strange Windows pseudo files?
1326 if fileno
not in WIN_OUTPUT_IDS
:
1329 GetStdHandle
= ctypes
.WINFUNCTYPE(
1330 ctypes
.wintypes
.HANDLE
, ctypes
.wintypes
.DWORD
)(
1331 (b
'GetStdHandle', ctypes
.windll
.kernel32
))
1332 h
= GetStdHandle(WIN_OUTPUT_IDS
[fileno
])
1334 WriteConsoleW
= ctypes
.WINFUNCTYPE(
1335 ctypes
.wintypes
.BOOL
, ctypes
.wintypes
.HANDLE
, ctypes
.wintypes
.LPWSTR
,
1336 ctypes
.wintypes
.DWORD
, ctypes
.POINTER(ctypes
.wintypes
.DWORD
),
1337 ctypes
.wintypes
.LPVOID
)((b
'WriteConsoleW', ctypes
.windll
.kernel32
))
1338 written
= ctypes
.wintypes
.DWORD(0)
1340 GetFileType
= ctypes
.WINFUNCTYPE(ctypes
.wintypes
.DWORD
, ctypes
.wintypes
.DWORD
)((b
'GetFileType', ctypes
.windll
.kernel32
))
1341 FILE_TYPE_CHAR
= 0x0002
1342 FILE_TYPE_REMOTE
= 0x8000
1343 GetConsoleMode
= ctypes
.WINFUNCTYPE(
1344 ctypes
.wintypes
.BOOL
, ctypes
.wintypes
.HANDLE
,
1345 ctypes
.POINTER(ctypes
.wintypes
.DWORD
))(
1346 (b
'GetConsoleMode', ctypes
.windll
.kernel32
))
1347 INVALID_HANDLE_VALUE
= ctypes
.wintypes
.DWORD(-1).value
1349 def not_a_console(handle
):
1350 if handle
== INVALID_HANDLE_VALUE
or handle
is None:
1352 return ((GetFileType(handle
) & ~FILE_TYPE_REMOTE
) != FILE_TYPE_CHAR
or
1353 GetConsoleMode(handle
, ctypes
.byref(ctypes
.wintypes
.DWORD())) == 0)
1355 if not_a_console(h
):
1358 def next_nonbmp_pos(s
):
1360 return next(i
for i
, c
in enumerate(s
) if ord(c
) > 0xffff)
1361 except StopIteration:
1365 count
= min(next_nonbmp_pos(s
), 1024)
1367 ret
= WriteConsoleW(
1368 h
, s
, count
if count
else 2, ctypes
.byref(written
), None)
1370 raise OSError('Failed to write string')
1371 if not count
: # We just wrote a non-BMP character
1372 assert written
.value
== 2
1375 assert written
.value
> 0
1376 s
= s
[written
.value
:]
1380 def write_string(s
, out
=None, encoding
=None):
1383 assert type(s
) == compat_str
1385 if sys
.platform
== 'win32' and encoding
is None and hasattr(out
, 'fileno'):
1386 if _windows_write_string(s
, out
):
1389 if ('b' in getattr(out
, 'mode', '') or
1390 sys
.version_info
[0] < 3): # Python 2 lies about mode of sys.stderr
1391 byt
= s
.encode(encoding
or preferredencoding(), 'ignore')
1393 elif hasattr(out
, 'buffer'):
1394 enc
= encoding
or getattr(out
, 'encoding', None) or preferredencoding()
1395 byt
= s
.encode(enc
, 'ignore')
1396 out
.buffer.write(byt
)
1402 def bytes_to_intlist(bs
):
1405 if isinstance(bs
[0], int): # Python 3
1408 return [ord(c
) for c
in bs
]
1411 def intlist_to_bytes(xs
):
1414 return compat_struct_pack('%dB' % len(xs
), *xs
)
1417 # Cross-platform file locking
1418 if sys
.platform
== 'win32':
1419 import ctypes
.wintypes
1422 class OVERLAPPED(ctypes
.Structure
):
1424 ('Internal', ctypes
.wintypes
.LPVOID
),
1425 ('InternalHigh', ctypes
.wintypes
.LPVOID
),
1426 ('Offset', ctypes
.wintypes
.DWORD
),
1427 ('OffsetHigh', ctypes
.wintypes
.DWORD
),
1428 ('hEvent', ctypes
.wintypes
.HANDLE
),
1431 kernel32
= ctypes
.windll
.kernel32
1432 LockFileEx
= kernel32
.LockFileEx
1433 LockFileEx
.argtypes
= [
1434 ctypes
.wintypes
.HANDLE
, # hFile
1435 ctypes
.wintypes
.DWORD
, # dwFlags
1436 ctypes
.wintypes
.DWORD
, # dwReserved
1437 ctypes
.wintypes
.DWORD
, # nNumberOfBytesToLockLow
1438 ctypes
.wintypes
.DWORD
, # nNumberOfBytesToLockHigh
1439 ctypes
.POINTER(OVERLAPPED
) # Overlapped
1441 LockFileEx
.restype
= ctypes
.wintypes
.BOOL
1442 UnlockFileEx
= kernel32
.UnlockFileEx
1443 UnlockFileEx
.argtypes
= [
1444 ctypes
.wintypes
.HANDLE
, # hFile
1445 ctypes
.wintypes
.DWORD
, # dwReserved
1446 ctypes
.wintypes
.DWORD
, # nNumberOfBytesToLockLow
1447 ctypes
.wintypes
.DWORD
, # nNumberOfBytesToLockHigh
1448 ctypes
.POINTER(OVERLAPPED
) # Overlapped
1450 UnlockFileEx
.restype
= ctypes
.wintypes
.BOOL
1451 whole_low
= 0xffffffff
1452 whole_high
= 0x7fffffff
1454 def _lock_file(f
, exclusive
):
1455 overlapped
= OVERLAPPED()
1456 overlapped
.Offset
= 0
1457 overlapped
.OffsetHigh
= 0
1458 overlapped
.hEvent
= 0
1459 f
._lock
_file
_overlapped
_p
= ctypes
.pointer(overlapped
)
1460 handle
= msvcrt
.get_osfhandle(f
.fileno())
1461 if not LockFileEx(handle
, 0x2 if exclusive
else 0x0, 0,
1462 whole_low
, whole_high
, f
._lock
_file
_overlapped
_p
):
1463 raise OSError('Locking file failed: %r' % ctypes
.FormatError())
1465 def _unlock_file(f
):
1466 assert f
._lock
_file
_overlapped
_p
1467 handle
= msvcrt
.get_osfhandle(f
.fileno())
1468 if not UnlockFileEx(handle
, 0,
1469 whole_low
, whole_high
, f
._lock
_file
_overlapped
_p
):
1470 raise OSError('Unlocking file failed: %r' % ctypes
.FormatError())
1473 # Some platforms, such as Jython, is missing fcntl
1477 def _lock_file(f
, exclusive
):
1478 fcntl
.flock(f
, fcntl
.LOCK_EX
if exclusive
else fcntl
.LOCK_SH
)
1480 def _unlock_file(f
):
1481 fcntl
.flock(f
, fcntl
.LOCK_UN
)
1483 UNSUPPORTED_MSG
= 'file locking is not supported on this platform'
1485 def _lock_file(f
, exclusive
):
1486 raise IOError(UNSUPPORTED_MSG
)
1488 def _unlock_file(f
):
1489 raise IOError(UNSUPPORTED_MSG
)
1492 class locked_file(object):
1493 def __init__(self
, filename
, mode
, encoding
=None):
1494 assert mode
in ['r', 'a', 'w']
1495 self
.f
= io
.open(filename
, mode
, encoding
=encoding
)
1498 def __enter__(self
):
1499 exclusive
= self
.mode
!= 'r'
1501 _lock_file(self
.f
, exclusive
)
1507 def __exit__(self
, etype
, value
, traceback
):
1509 _unlock_file(self
.f
)
1516 def write(self
, *args
):
1517 return self
.f
.write(*args
)
1519 def read(self
, *args
):
1520 return self
.f
.read(*args
)
1523 def get_filesystem_encoding():
1524 encoding
= sys
.getfilesystemencoding()
1525 return encoding
if encoding
is not None else 'utf-8'
1528 def shell_quote(args
):
1530 encoding
= get_filesystem_encoding()
1532 if isinstance(a
, bytes):
1533 # We may get a filename encoded with 'encodeFilename'
1534 a
= a
.decode(encoding
)
1535 quoted_args
.append(pipes
.quote(a
))
1536 return ' '.join(quoted_args
)
1539 def smuggle_url(url
, data
):
1540 """ Pass additional data in a URL for internal use. """
1542 url
, idata
= unsmuggle_url(url
, {})
1544 sdata
= compat_urllib_parse_urlencode(
1545 {'__youtubedl_smuggle': json
.dumps(data
)})
1546 return url
+ '#' + sdata
1549 def unsmuggle_url(smug_url
, default
=None):
1550 if '#__youtubedl_smuggle' not in smug_url
:
1551 return smug_url
, default
1552 url
, _
, sdata
= smug_url
.rpartition('#')
1553 jsond
= compat_parse_qs(sdata
)['__youtubedl_smuggle'][0]
1554 data
= json
.loads(jsond
)
1558 def format_bytes(bytes):
1561 if type(bytes) is str:
1562 bytes = float(bytes)
1566 exponent
= int(math
.log(bytes, 1024.0))
1567 suffix
= ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'][exponent
]
1568 converted
= float(bytes) / float(1024 ** exponent
)
1569 return '%.2f%s' % (converted
, suffix
)
1572 def lookup_unit_table(unit_table
, s
):
1573 units_re
= '|'.join(re
.escape(u
) for u
in unit_table
)
1575 r
'(?P<num>[0-9]+(?:[,.][0-9]*)?)\s*(?P<unit>%s)\b' % units_re
, s
)
1578 num_str
= m
.group('num').replace(',', '.')
1579 mult
= unit_table
[m
.group('unit')]
1580 return int(float(num_str
) * mult
)
1583 def parse_filesize(s
):
1587 # The lower-case forms are of course incorrect and unofficial,
1588 # but we support those too
1605 'megabytes': 1000 ** 2,
1606 'mebibytes': 1024 ** 2,
1612 'gigabytes': 1000 ** 3,
1613 'gibibytes': 1024 ** 3,
1619 'terabytes': 1000 ** 4,
1620 'tebibytes': 1024 ** 4,
1626 'petabytes': 1000 ** 5,
1627 'pebibytes': 1024 ** 5,
1633 'exabytes': 1000 ** 6,
1634 'exbibytes': 1024 ** 6,
1640 'zettabytes': 1000 ** 7,
1641 'zebibytes': 1024 ** 7,
1647 'yottabytes': 1000 ** 8,
1648 'yobibytes': 1024 ** 8,
1651 return lookup_unit_table(_UNIT_TABLE
, s
)
1660 if re
.match(r
'^[\d,.]+$', s
):
1661 return str_to_int(s
)
1672 return lookup_unit_table(_UNIT_TABLE
, s
)
1675 def month_by_name(name
, lang
='en'):
1676 """ Return the number of a month by (locale-independently) English name """
1678 month_names
= MONTH_NAMES
.get(lang
, MONTH_NAMES
['en'])
1681 return month_names
.index(name
) + 1
1686 def month_by_abbreviation(abbrev
):
1687 """ Return the number of a month by (locale-independently) English
1691 return [s
[:3] for s
in ENGLISH_MONTH_NAMES
].index(abbrev
) + 1
1696 def fix_xml_ampersands(xml_str
):
1697 """Replace all the '&' by '&' in XML"""
1699 r
'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
1704 def setproctitle(title
):
1705 assert isinstance(title
, compat_str
)
1707 # ctypes in Jython is not complete
1708 # http://bugs.jython.org/issue2148
1709 if sys
.platform
.startswith('java'):
1713 libc
= ctypes
.cdll
.LoadLibrary('libc.so.6')
1717 # LoadLibrary in Windows Python 2.7.13 only expects
1718 # a bytestring, but since unicode_literals turns
1719 # every string into a unicode string, it fails.
1721 title_bytes
= title
.encode('utf-8')
1722 buf
= ctypes
.create_string_buffer(len(title_bytes
))
1723 buf
.value
= title_bytes
1725 libc
.prctl(15, buf
, 0, 0, 0)
1726 except AttributeError:
1727 return # Strange libc, just skip this
1730 def remove_start(s
, start
):
1731 return s
[len(start
):] if s
is not None and s
.startswith(start
) else s
1734 def remove_end(s
, end
):
1735 return s
[:-len(end
)] if s
is not None and s
.endswith(end
) else s
1738 def remove_quotes(s
):
1739 if s
is None or len(s
) < 2:
1741 for quote
in ('"', "'", ):
1742 if s
[0] == quote
and s
[-1] == quote
:
1747 def url_basename(url
):
1748 path
= compat_urlparse
.urlparse(url
).path
1749 return path
.strip('/').split('/')[-1]
1753 return re
.match(r
'https?://[^?#&]+/', url
).group()
1756 def urljoin(base
, path
):
1757 if isinstance(path
, bytes):
1758 path
= path
.decode('utf-8')
1759 if not isinstance(path
, compat_str
) or not path
:
1761 if re
.match(r
'^(?:https?:)?//', path
):
1763 if isinstance(base
, bytes):
1764 base
= base
.decode('utf-8')
1765 if not isinstance(base
, compat_str
) or not re
.match(
1766 r
'^(?:https?:)?//', base
):
1768 return compat_urlparse
.urljoin(base
, path
)
1771 class HEADRequest(compat_urllib_request
.Request
):
1772 def get_method(self
):
1776 class PUTRequest(compat_urllib_request
.Request
):
1777 def get_method(self
):
1781 def int_or_none(v
, scale
=1, default
=None, get_attr
=None, invscale
=1):
1784 v
= getattr(v
, get_attr
, None)
1790 return int(v
) * invscale
// scale
1795 def str_or_none(v
, default
=None):
1796 return default
if v
is None else compat_str(v
)
1799 def str_to_int(int_str
):
1800 """ A more relaxed version of int_or_none """
1803 int_str
= re
.sub(r
'[,\.\+]', '', int_str
)
1807 def float_or_none(v
, scale
=1, invscale
=1, default
=None):
1811 return float(v
) * invscale
/ scale
1816 def strip_or_none(v
):
1817 return None if v
is None else v
.strip()
1820 def parse_duration(s
):
1821 if not isinstance(s
, compat_basestring
):
1826 days
, hours
, mins
, secs
, ms
= [None] * 5
1827 m
= re
.match(r
'(?:(?:(?:(?P<days>[0-9]+):)?(?P<hours>[0-9]+):)?(?P<mins>[0-9]+):)?(?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?Z?$', s
)
1829 days
, hours
, mins
, secs
, ms
= m
.groups()
1834 (?P<days>[0-9]+)\s*d(?:ays?)?\s*
1837 (?P<hours>[0-9]+)\s*h(?:ours?)?\s*
1840 (?P<mins>[0-9]+)\s*m(?:in(?:ute)?s?)?\s*
1843 (?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?\s*s(?:ec(?:ond)?s?)?\s*
1846 days
, hours
, mins
, secs
, ms
= m
.groups()
1848 m
= re
.match(r
'(?i)(?:(?P<hours>[0-9.]+)\s*(?:hours?)|(?P<mins>[0-9.]+)\s*(?:mins?\.?|minutes?)\s*)Z?$', s
)
1850 hours
, mins
= m
.groups()
1856 duration
+= float(secs
)
1858 duration
+= float(mins
) * 60
1860 duration
+= float(hours
) * 60 * 60
1862 duration
+= float(days
) * 24 * 60 * 60
1864 duration
+= float(ms
)
1868 def prepend_extension(filename
, ext
, expected_real_ext
=None):
1869 name
, real_ext
= os
.path
.splitext(filename
)
1871 '{0}.{1}{2}'.format(name
, ext
, real_ext
)
1872 if not expected_real_ext
or real_ext
[1:] == expected_real_ext
1873 else '{0}.{1}'.format(filename
, ext
))
1876 def replace_extension(filename
, ext
, expected_real_ext
=None):
1877 name
, real_ext
= os
.path
.splitext(filename
)
1878 return '{0}.{1}'.format(
1879 name
if not expected_real_ext
or real_ext
[1:] == expected_real_ext
else filename
,
1883 def check_executable(exe
, args
=[]):
1884 """ Checks if the given binary is installed somewhere in PATH, and returns its name.
1885 args can be a list of arguments for a short output (like -version) """
1887 subprocess
.Popen([exe
] + args
, stdout
=subprocess
.PIPE
, stderr
=subprocess
.PIPE
).communicate()
1893 def get_exe_version(exe
, args
=['--version'],
1894 version_re
=None, unrecognized
='present'):
1895 """ Returns the version of the specified executable,
1896 or False if the executable is not present """
1898 # STDIN should be redirected too. On UNIX-like systems, ffmpeg triggers
1899 # SIGTTOU if youtube-dl is run in the background.
1900 # See https://github.com/rg3/youtube-dl/issues/955#issuecomment-209789656
1901 out
, _
= subprocess
.Popen(
1902 [encodeArgument(exe
)] + args
,
1903 stdin
=subprocess
.PIPE
,
1904 stdout
=subprocess
.PIPE
, stderr
=subprocess
.STDOUT
).communicate()
1907 if isinstance(out
, bytes): # Python 2.x
1908 out
= out
.decode('ascii', 'ignore')
1909 return detect_exe_version(out
, version_re
, unrecognized
)
1912 def detect_exe_version(output
, version_re
=None, unrecognized
='present'):
1913 assert isinstance(output
, compat_str
)
1914 if version_re
is None:
1915 version_re
= r
'version\s+([-0-9._a-zA-Z]+)'
1916 m
= re
.search(version_re
, output
)
1923 class PagedList(object):
1925 # This is only useful for tests
1926 return len(self
.getslice())
1929 class OnDemandPagedList(PagedList
):
1930 def __init__(self
, pagefunc
, pagesize
, use_cache
=False):
1931 self
._pagefunc
= pagefunc
1932 self
._pagesize
= pagesize
1933 self
._use
_cache
= use_cache
1937 def getslice(self
, start
=0, end
=None):
1939 for pagenum
in itertools
.count(start
// self
._pagesize
):
1940 firstid
= pagenum
* self
._pagesize
1941 nextfirstid
= pagenum
* self
._pagesize
+ self
._pagesize
1942 if start
>= nextfirstid
:
1947 page_results
= self
._cache
.get(pagenum
)
1948 if page_results
is None:
1949 page_results
= list(self
._pagefunc
(pagenum
))
1951 self
._cache
[pagenum
] = page_results
1954 start
% self
._pagesize
1955 if firstid
<= start
< nextfirstid
1959 ((end
- 1) % self
._pagesize
) + 1
1960 if (end
is not None and firstid
<= end
<= nextfirstid
)
1963 if startv
!= 0 or endv
is not None:
1964 page_results
= page_results
[startv
:endv
]
1965 res
.extend(page_results
)
1967 # A little optimization - if current page is not "full", ie. does
1968 # not contain page_size videos then we can assume that this page
1969 # is the last one - there are no more ids on further pages -
1970 # i.e. no need to query again.
1971 if len(page_results
) + startv
< self
._pagesize
:
1974 # If we got the whole page, but the next page is not interesting,
1975 # break out early as well
1976 if end
== nextfirstid
:
1981 class InAdvancePagedList(PagedList
):
1982 def __init__(self
, pagefunc
, pagecount
, pagesize
):
1983 self
._pagefunc
= pagefunc
1984 self
._pagecount
= pagecount
1985 self
._pagesize
= pagesize
1987 def getslice(self
, start
=0, end
=None):
1989 start_page
= start
// self
._pagesize
1991 self
._pagecount
if end
is None else (end
// self
._pagesize
+ 1))
1992 skip_elems
= start
- start_page
* self
._pagesize
1993 only_more
= None if end
is None else end
- start
1994 for pagenum
in range(start_page
, end_page
):
1995 page
= list(self
._pagefunc
(pagenum
))
1997 page
= page
[skip_elems
:]
1999 if only_more
is not None:
2000 if len(page
) < only_more
:
2001 only_more
-= len(page
)
2003 page
= page
[:only_more
]
2010 def uppercase_escape(s
):
2011 unicode_escape
= codecs
.getdecoder('unicode_escape')
2013 r
'\\U[0-9a-fA-F]{8}',
2014 lambda m
: unicode_escape(m
.group(0))[0],
2018 def lowercase_escape(s
):
2019 unicode_escape
= codecs
.getdecoder('unicode_escape')
2021 r
'\\u[0-9a-fA-F]{4}',
2022 lambda m
: unicode_escape(m
.group(0))[0],
2026 def escape_rfc3986(s
):
2027 """Escape non-ASCII characters as suggested by RFC 3986"""
2028 if sys
.version_info
< (3, 0) and isinstance(s
, compat_str
):
2029 s
= s
.encode('utf-8')
2030 return compat_urllib_parse
.quote(s
, b
"%/;:@&=+$,!~*'()?#[]")
2033 def escape_url(url
):
2034 """Escape URL as suggested by RFC 3986"""
2035 url_parsed
= compat_urllib_parse_urlparse(url
)
2036 return url_parsed
._replace
(
2037 netloc
=url_parsed
.netloc
.encode('idna').decode('ascii'),
2038 path
=escape_rfc3986(url_parsed
.path
),
2039 params
=escape_rfc3986(url_parsed
.params
),
2040 query
=escape_rfc3986(url_parsed
.query
),
2041 fragment
=escape_rfc3986(url_parsed
.fragment
)
2045 def read_batch_urls(batch_fd
):
2047 if not isinstance(url
, compat_str
):
2048 url
= url
.decode('utf-8', 'replace')
2049 BOM_UTF8
= '\xef\xbb\xbf'
2050 if url
.startswith(BOM_UTF8
):
2051 url
= url
[len(BOM_UTF8
):]
2053 if url
.startswith(('#', ';', ']')):
2057 with contextlib
.closing(batch_fd
) as fd
:
2058 return [url
for url
in map(fixup
, fd
) if url
]
2061 def urlencode_postdata(*args
, **kargs
):
2062 return compat_urllib_parse_urlencode(*args
, **kargs
).encode('ascii')
2065 def update_url_query(url
, query
):
2068 parsed_url
= compat_urlparse
.urlparse(url
)
2069 qs
= compat_parse_qs(parsed_url
.query
)
2071 return compat_urlparse
.urlunparse(parsed_url
._replace
(
2072 query
=compat_urllib_parse_urlencode(qs
, True)))
2075 def update_Request(req
, url
=None, data
=None, headers
={}, query
={}):
2076 req_headers
= req
.headers
.copy()
2077 req_headers
.update(headers
)
2078 req_data
= data
or req
.data
2079 req_url
= update_url_query(url
or req
.get_full_url(), query
)
2080 req_get_method
= req
.get_method()
2081 if req_get_method
== 'HEAD':
2082 req_type
= HEADRequest
2083 elif req_get_method
== 'PUT':
2084 req_type
= PUTRequest
2086 req_type
= compat_urllib_request
.Request
2088 req_url
, data
=req_data
, headers
=req_headers
,
2089 origin_req_host
=req
.origin_req_host
, unverifiable
=req
.unverifiable
)
2090 if hasattr(req
, 'timeout'):
2091 new_req
.timeout
= req
.timeout
2095 def dict_get(d
, key_or_keys
, default
=None, skip_false_values
=True):
2096 if isinstance(key_or_keys
, (list, tuple)):
2097 for key
in key_or_keys
:
2098 if key
not in d
or d
[key
] is None or skip_false_values
and not d
[key
]:
2102 return d
.get(key_or_keys
, default
)
2105 def try_get(src
, getter
, expected_type
=None):
2108 except (AttributeError, KeyError, TypeError, IndexError):
2111 if expected_type
is None or isinstance(v
, expected_type
):
2115 def encode_compat_str(string
, encoding
=preferredencoding(), errors
='strict'):
2116 return string
if isinstance(string
, compat_str
) else compat_str(string
, encoding
, errors
)
2128 TV_PARENTAL_GUIDELINES
= {
2138 def parse_age_limit(s
):
2140 return s
if 0 <= s
<= 21 else None
2141 if not isinstance(s
, compat_basestring
):
2143 m
= re
.match(r
'^(?P<age>\d{1,2})\+?$', s
)
2145 return int(m
.group('age'))
2147 return US_RATINGS
[s
]
2148 return TV_PARENTAL_GUIDELINES
.get(s
)
2151 def strip_jsonp(code
):
2153 r
'(?s)^[a-zA-Z0-9_.$]+\s*\(\s*(.*)\);?\s*?(?://[^\n]*)*$', r
'\1', code
)
2156 def js_to_json(code
):
2157 COMMENT_RE
= r
'/\*(?:(?!\*/).)*?\*/|//[^\n]*'
2158 SKIP_RE
= r
'\s*(?:{comment})?\s*'.format(comment
=COMMENT_RE
)
2160 (r
'(?s)^(0[xX][0-9a-fA-F]+){skip}:?$'.format(skip
=SKIP_RE
), 16),
2161 (r
'(?s)^(0+[0-7]+){skip}:?$'.format(skip
=SKIP_RE
), 8),
2166 if v
in ('true', 'false', 'null'):
2168 elif v
.startswith('/*') or v
.startswith('//') or v
== ',':
2171 if v
[0] in ("'", '"'):
2172 v
= re
.sub(r
'(?s)\\.|"', lambda m
: {
2177 }.get(m
.group(0), m
.group(0)), v
[1:-1])
2179 for regex
, base
in INTEGER_TABLE
:
2180 im
= re
.match(regex
, v
)
2182 i
= int(im
.group(1), base
)
2183 return '"%d":' % i
if v
.endswith(':') else '%d' % i
2187 return re
.sub(r
'''(?sx)
2188 "(?:[^"\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^"\\]*"|
2189 '(?:[^'\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^'\\]*'|
2190 {comment}|,(?={skip}[\]}}])|
2191 [a-zA-Z_][.a-zA-Z_0-9]*|
2192 \b(?:0[xX][0-9a-fA-F]+|0+[0-7]+)(?:{skip}:)?|
2194 '''.format(comment
=COMMENT_RE
, skip
=SKIP_RE
), fix_kv
, code
)
2197 def qualities(quality_ids
):
2198 """ Get a numeric quality value out of a list of possible values """
2201 return quality_ids
.index(qid
)
2207 DEFAULT_OUTTMPL
= '%(title)s-%(id)s.%(ext)s'
2210 def limit_length(s
, length
):
2211 """ Add ellipses to overly long strings """
2216 return s
[:length
- len(ELLIPSES
)] + ELLIPSES
2220 def version_tuple(v
):
2221 return tuple(int(e
) for e
in re
.split(r
'[-.]', v
))
2224 def is_outdated_version(version
, limit
, assume_new
=True):
2226 return not assume_new
2228 return version_tuple(version
) < version_tuple(limit
)
2230 return not assume_new
2233 def ytdl_is_updateable():
2234 """ Returns if youtube-dl can be updated with -U """
2235 from zipimport
import zipimporter
2237 return isinstance(globals().get('__loader__'), zipimporter
) or hasattr(sys
, 'frozen')
2240 def args_to_str(args
):
2241 # Get a short string representation for a subprocess command
2242 return ' '.join(compat_shlex_quote(a
) for a
in args
)
2245 def error_to_compat_str(err
):
2247 # On python 2 error byte string must be decoded with proper
2248 # encoding rather than ascii
2249 if sys
.version_info
[0] < 3:
2250 err_str
= err_str
.decode(preferredencoding())
2254 def mimetype2ext(mt
):
2260 # Per RFC 3003, audio/mpeg can be .mp1, .mp2 or .mp3. Here use .mp3 as
2261 # it's the most popular one
2262 'audio/mpeg': 'mp3',
2267 _
, _
, res
= mt
.rpartition('/')
2268 res
= res
.split(';')[0].strip().lower()
2272 'smptett+xml': 'tt',
2278 'x-mp4-fragmented': 'mp4',
2281 'x-mpegurl': 'm3u8',
2282 'vnd.apple.mpegurl': 'm3u8',
2287 'vnd.ms-sstr+xml': 'ism',
2292 def parse_codecs(codecs_str
):
2293 # http://tools.ietf.org/html/rfc6381
2296 splited_codecs
= list(filter(None, map(
2297 lambda str: str.strip(), codecs_str
.strip().strip(',').split(','))))
2298 vcodec
, acodec
= None, None
2299 for full_codec
in splited_codecs
:
2300 codec
= full_codec
.split('.')[0]
2301 if codec
in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v'):
2304 elif codec
in ('mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3'):
2308 write_string('WARNING: Unknown codec %s' % full_codec
, sys
.stderr
)
2309 if not vcodec
and not acodec
:
2310 if len(splited_codecs
) == 2:
2315 elif len(splited_codecs
) == 1:
2322 'vcodec': vcodec
or 'none',
2323 'acodec': acodec
or 'none',
2328 def urlhandle_detect_ext(url_handle
):
2329 getheader
= url_handle
.headers
.get
2331 cd
= getheader('Content-Disposition')
2333 m
= re
.match(r
'attachment;\s*filename="(?P<filename>[^"]+)"', cd
)
2335 e
= determine_ext(m
.group('filename'), default_ext
=None)
2339 return mimetype2ext(getheader('Content-Type'))
2342 def encode_data_uri(data
, mime_type
):
2343 return 'data:%s;base64,%s' % (mime_type
, base64
.b64encode(data
).decode('ascii'))
2346 def age_restricted(content_limit
, age_limit
):
2347 """ Returns True iff the content should be blocked """
2349 if age_limit
is None: # No limit set
2351 if content_limit
is None:
2352 return False # Content available for everyone
2353 return age_limit
< content_limit
2356 def is_html(first_bytes
):
2357 """ Detect whether a file contains HTML by examining its first bytes. """
2360 (b
'\xef\xbb\xbf', 'utf-8'),
2361 (b
'\x00\x00\xfe\xff', 'utf-32-be'),
2362 (b
'\xff\xfe\x00\x00', 'utf-32-le'),
2363 (b
'\xff\xfe', 'utf-16-le'),
2364 (b
'\xfe\xff', 'utf-16-be'),
2366 for bom
, enc
in BOMS
:
2367 if first_bytes
.startswith(bom
):
2368 s
= first_bytes
[len(bom
):].decode(enc
, 'replace')
2371 s
= first_bytes
.decode('utf-8', 'replace')
2373 return re
.match(r
'^\s*<', s
)
2376 def determine_protocol(info_dict
):
2377 protocol
= info_dict
.get('protocol')
2378 if protocol
is not None:
2381 url
= info_dict
['url']
2382 if url
.startswith('rtmp'):
2384 elif url
.startswith('mms'):
2386 elif url
.startswith('rtsp'):
2389 ext
= determine_ext(url
)
2395 return compat_urllib_parse_urlparse(url
).scheme
2398 def render_table(header_row
, data
):
2399 """ Render a list of rows, each as a list of values """
2400 table
= [header_row
] + data
2401 max_lens
= [max(len(compat_str(v
)) for v
in col
) for col
in zip(*table
)]
2402 format_str
= ' '.join('%-' + compat_str(ml
+ 1) + 's' for ml
in max_lens
[:-1]) + '%s'
2403 return '\n'.join(format_str
% tuple(row
) for row
in table
)
2406 def _match_one(filter_part
, dct
):
2407 COMPARISON_OPERATORS
= {
2415 operator_rex
= re
.compile(r
'''(?x)\s*
2417 \s*(?P<op>%s)(?P<none_inclusive>\s*\?)?\s*
2419 (?P<intval>[0-9.]+(?:[kKmMgGtTpPeEzZyY]i?[Bb]?)?)|
2420 (?P<quote>["\'])(?P
<quotedstrval
>(?
:\\.|
(?
!(?P
=quote
)|
\\).)+?
)(?P
=quote
)|
2421 (?P
<strval
>(?
![0-9.])[a
-z0
-9A
-Z
]*)
2424 ''' % '|'.join(map(re.escape, COMPARISON_OPERATORS.keys())))
2425 m = operator_rex.search(filter_part)
2427 op = COMPARISON_OPERATORS[m.group('op')]
2428 actual_value = dct.get(m.group('key'))
2429 if (m.group('quotedstrval') is not None or
2430 m.group('strval') is not None or
2431 # If the original field is a string and matching comparisonvalue is
2432 # a number we should respect the origin of the original field
2433 # and process comparison value as a string (see
2434 # https://github.com/rg3/youtube-dl/issues/11082).
2435 actual_value is not None and m.group('intval') is not None and
2436 isinstance(actual_value, compat_str)):
2437 if m.group('op') not in ('=', '!='):
2439 'Operator %s does not support string values!' % m.group('op'))
2440 comparison_value = m.group('quotedstrval') or m.group('strval') or m.group('intval')
2441 quote = m.group('quote')
2442 if quote is not None:
2443 comparison_value = comparison_value.replace(r'\%s' % quote, quote)
2446 comparison_value = int(m.group('intval'))
2448 comparison_value = parse_filesize(m.group('intval'))
2449 if comparison_value is None:
2450 comparison_value = parse_filesize(m.group('intval') + 'B')
2451 if comparison_value is None:
2453 'Invalid integer value %r in filter part %r' % (
2454 m.group('intval'), filter_part))
2455 if actual_value is None:
2456 return m.group('none_inclusive')
2457 return op(actual_value, comparison_value)
2460 '': lambda v: v is not None,
2461 '!': lambda v: v is None,
2463 operator_rex = re.compile(r'''(?x
)\s
*
2464 (?P
<op
>%s)\s
*(?P
<key
>[a
-z_
]+)
2466 ''' % '|'.join(map(re.escape, UNARY_OPERATORS.keys())))
2467 m = operator_rex.search(filter_part)
2469 op = UNARY_OPERATORS[m.group('op')]
2470 actual_value = dct.get(m.group('key'))
2471 return op(actual_value)
2473 raise ValueError('Invalid filter part %r' % filter_part)
2476 def match_str(filter_str, dct):
2477 """ Filter a dictionary with a simple string syntax. Returns True (=passes filter) or false """
2480 _match_one(filter_part, dct) for filter_part in filter_str.split('&'))
2483 def match_filter_func(filter_str):
2484 def _match_func(info_dict):
2485 if match_str(filter_str, info_dict):
2488 video_title = info_dict.get('title', info_dict.get('id', 'video'))
2489 return '%s does not pass filter %s, skipping ..' % (video_title, filter_str)
2493 def parse_dfxp_time_expr(time_expr):
2497 mobj = re.match(r'^(?P<time_offset>\d+(?:\.\d+)?)s?$', time_expr)
2499 return float(mobj.group('time_offset'))
2501 mobj = re.match(r'^(\d+):(\d\d):(\d\d(?:(?:\.|:)\d+)?)$', time_expr)
2503 return 3600 * int(mobj.group(1)) + 60 * int(mobj.group(2)) + float(mobj.group(3).replace(':', '.'))
2506 def srt_subtitles_timecode(seconds):
2507 return '%02d:%02d:%02d,%03d' % (seconds / 3600, (seconds % 3600) / 60, seconds % 60, (seconds % 1) * 1000)
2510 def dfxp2srt(dfxp_data):
2511 _x = functools.partial(xpath_with_ns, ns_map={
2512 'ttml': 'http://www.w3.org/ns/ttml',
2513 'ttaf1': 'http://www.w3.org/2006/10/ttaf1',
2514 'ttaf1_0604': 'http://www.w3.org/2006/04/ttaf1',
2517 class TTMLPElementParser(object):
2520 def start(self, tag, attrib):
2521 if tag in (_x('ttml:br'), _x('ttaf1:br'), 'br'):
2527 def data(self, data):
2531 return self.out.strip()
2533 def parse_node(node):
2534 target = TTMLPElementParser()
2535 parser = xml.etree.ElementTree.XMLParser(target=target)
2536 parser.feed(xml.etree.ElementTree.tostring(node))
2537 return parser.close()
2539 dfxp = compat_etree_fromstring(dfxp_data.encode('utf-8'))
2541 paras = dfxp.findall(_x('.//ttml:p')) or dfxp.findall(_x('.//ttaf1:p')) or dfxp.findall(_x('.//ttaf1_0604:p')) or dfxp.findall('.//p')
2544 raise ValueError('Invalid dfxp/TTML subtitle')
2546 for para, index in zip(paras, itertools.count(1)):
2547 begin_time = parse_dfxp_time_expr(para.attrib.get('begin'))
2548 end_time = parse_dfxp_time_expr(para.attrib.get('end'))
2549 dur = parse_dfxp_time_expr(para.attrib.get('dur'))
2550 if begin_time is None:
2555 end_time = begin_time + dur
2556 out.append('%d\n%s --> %s\n%s\n\n' % (
2558 srt_subtitles_timecode(begin_time),
2559 srt_subtitles_timecode(end_time),
2565 def cli_option(params, command_option, param):
2566 param = params.get(param)
2568 param = compat_str(param)
2569 return [command_option, param] if param is not None else []
2572 def cli_bool_option(params, command_option, param, true_value='true', false_value='false', separator=None):
2573 param = params.get(param)
2574 assert isinstance(param, bool)
2576 return [command_option + separator + (true_value if param else false_value)]
2577 return [command_option, true_value if param else false_value]
2580 def cli_valueless_option(params, command_option, param, expected_value=True):
2581 param = params.get(param)
2582 return [command_option] if param == expected_value else []
2585 def cli_configuration_args(params, param, default=[]):
2586 ex_args = params.get(param)
2589 assert isinstance(ex_args, list)
2593 class ISO639Utils(object):
2594 # See http://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt
2783 def short2long(cls, code):
2784 """Convert language code from ISO 639-1 to ISO 639-2/T"""
2785 return cls._lang_map.get(code[:2])
2788 def long2short(cls, code):
2789 """Convert language code from ISO 639-2/T to ISO 639-1"""
2790 for short_name, long_name in cls._lang_map.items():
2791 if long_name == code:
2795 class ISO3166Utils(object):
2796 # From http://data.okfn.org/data/core/country-list
2798 'AF': 'Afghanistan',
2799 'AX': 'Åland Islands',
2802 'AS': 'American Samoa',
2807 'AG': 'Antigua and Barbuda',
2824 'BO': 'Bolivia, Plurinational State of',
2825 'BQ': 'Bonaire, Sint Eustatius and Saba',
2826 'BA': 'Bosnia and Herzegovina',
2828 'BV': 'Bouvet Island',
2830 'IO': 'British Indian Ocean Territory',
2831 'BN': 'Brunei Darussalam',
2833 'BF': 'Burkina Faso',
2839 'KY': 'Cayman Islands',
2840 'CF': 'Central African Republic',
2844 'CX': 'Christmas Island',
2845 'CC': 'Cocos (Keeling) Islands',
2849 'CD': 'Congo, the Democratic Republic of the',
2850 'CK': 'Cook Islands',
2852 'CI': 'Côte d\'Ivoire',
2857 'CZ': 'Czech Republic',
2861 'DO': 'Dominican Republic',
2864 'SV': 'El Salvador',
2865 'GQ': 'Equatorial Guinea',
2869 'FK': 'Falkland Islands (Malvinas)',
2870 'FO': 'Faroe Islands',
2874 'GF': 'French Guiana',
2875 'PF': 'French Polynesia',
2876 'TF': 'French Southern Territories',
2891 'GW': 'Guinea-Bissau',
2894 'HM': 'Heard Island and McDonald Islands',
2895 'VA': 'Holy See (Vatican City State)',
2902 'IR': 'Iran, Islamic Republic of',
2905 'IM': 'Isle of Man',
2915 'KP': 'Korea, Democratic People\'s Republic of',
2916 'KR': 'Korea, Republic of',
2919 'LA': 'Lao People\'s Democratic Republic',
2925 'LI': 'Liechtenstein',
2929 'MK': 'Macedonia, the Former Yugoslav Republic of',
2936 'MH': 'Marshall Islands',
2942 'FM': 'Micronesia, Federated States of',
2943 'MD': 'Moldova, Republic of',
2954 'NL': 'Netherlands',
2955 'NC': 'New Caledonia',
2956 'NZ': 'New Zealand',
2961 'NF': 'Norfolk Island',
2962 'MP': 'Northern Mariana Islands',
2967 'PS': 'Palestine, State of',
2969 'PG': 'Papua New Guinea',
2972 'PH': 'Philippines',
2976 'PR': 'Puerto Rico',
2980 'RU': 'Russian Federation',
2982 'BL': 'Saint Barthélemy',
2983 'SH': 'Saint Helena, Ascension and Tristan da Cunha',
2984 'KN': 'Saint Kitts and Nevis',
2985 'LC': 'Saint Lucia',
2986 'MF': 'Saint Martin (French part)',
2987 'PM': 'Saint Pierre and Miquelon',
2988 'VC': 'Saint Vincent and the Grenadines',
2991 'ST': 'Sao Tome and Principe',
2992 'SA': 'Saudi Arabia',
2996 'SL': 'Sierra Leone',
2998 'SX': 'Sint Maarten (Dutch part)',
3001 'SB': 'Solomon Islands',
3003 'ZA': 'South Africa',
3004 'GS': 'South Georgia and the South Sandwich Islands',
3005 'SS': 'South Sudan',
3010 'SJ': 'Svalbard and Jan Mayen',
3013 'CH': 'Switzerland',
3014 'SY': 'Syrian Arab Republic',
3015 'TW': 'Taiwan, Province of China',
3017 'TZ': 'Tanzania, United Republic of',
3019 'TL': 'Timor-Leste',
3023 'TT': 'Trinidad and Tobago',
3026 'TM': 'Turkmenistan',
3027 'TC': 'Turks and Caicos Islands',
3031 'AE': 'United Arab Emirates',
3032 'GB': 'United Kingdom',
3033 'US': 'United States',
3034 'UM': 'United States Minor Outlying Islands',
3038 'VE': 'Venezuela, Bolivarian Republic of',
3040 'VG': 'Virgin Islands, British',
3041 'VI': 'Virgin Islands, U.S.',
3042 'WF': 'Wallis and Futuna',
3043 'EH': 'Western Sahara',
3050 def short2full(cls, code):
3051 """Convert an ISO 3166-2 country code to the corresponding full name"""
3052 return cls._country_map.get(code.upper())
3055 class GeoUtils(object):
3056 # Major IPv4 address blocks per country
3058 'AD': '85.94.160.0/19',
3059 'AE': '94.200.0.0/13',
3060 'AF': '149.54.0.0/17',
3061 'AG': '209.59.64.0/18',
3062 'AI': '204.14.248.0/21',
3063 'AL': '46.99.0.0/16',
3064 'AM': '46.70.0.0/15',
3065 'AO': '105.168.0.0/13',
3066 'AP': '159.117.192.0/21',
3067 'AR': '181.0.0.0/12',
3068 'AS': '202.70.112.0/20',
3069 'AT': '84.112.0.0/13',
3070 'AU': '1.128.0.0/11',
3071 'AW': '181.41.0.0/18',
3072 'AZ': '5.191.0.0/16',
3073 'BA': '31.176.128.0/17',
3074 'BB': '65.48.128.0/17',
3075 'BD': '114.130.0.0/16',
3077 'BF': '129.45.128.0/17',
3078 'BG': '95.42.0.0/15',
3079 'BH': '37.131.0.0/17',
3080 'BI': '154.117.192.0/18',
3081 'BJ': '137.255.0.0/16',
3082 'BL': '192.131.134.0/24',
3083 'BM': '196.12.64.0/18',
3084 'BN': '156.31.0.0/16',
3085 'BO': '161.56.0.0/16',
3086 'BQ': '161.0.80.0/20',
3087 'BR': '152.240.0.0/12',
3088 'BS': '24.51.64.0/18',
3089 'BT': '119.2.96.0/19',
3090 'BW': '168.167.0.0/16',
3091 'BY': '178.120.0.0/13',
3092 'BZ': '179.42.192.0/18',
3093 'CA': '99.224.0.0/11',
3094 'CD': '41.243.0.0/16',
3095 'CF': '196.32.200.0/21',
3096 'CG': '197.214.128.0/17',
3097 'CH': '85.0.0.0/13',
3098 'CI': '154.232.0.0/14',
3099 'CK': '202.65.32.0/19',
3100 'CL': '152.172.0.0/14',
3101 'CM': '165.210.0.0/15',
3102 'CN': '36.128.0.0/10',
3103 'CO': '181.240.0.0/12',
3104 'CR': '201.192.0.0/12',
3105 'CU': '152.206.0.0/15',
3106 'CV': '165.90.96.0/19',
3107 'CW': '190.88.128.0/17',
3108 'CY': '46.198.0.0/15',
3109 'CZ': '88.100.0.0/14',
3111 'DJ': '197.241.0.0/17',
3112 'DK': '87.48.0.0/12',
3113 'DM': '192.243.48.0/20',
3114 'DO': '152.166.0.0/15',
3115 'DZ': '41.96.0.0/12',
3116 'EC': '186.68.0.0/15',
3117 'EE': '90.190.0.0/15',
3118 'EG': '156.160.0.0/11',
3119 'ER': '196.200.96.0/20',
3120 'ES': '88.0.0.0/11',
3121 'ET': '196.188.0.0/14',
3122 'EU': '2.16.0.0/13',
3123 'FI': '91.152.0.0/13',
3124 'FJ': '144.120.0.0/16',
3125 'FM': '119.252.112.0/20',
3126 'FO': '88.85.32.0/19',
3128 'GA': '41.158.0.0/15',
3130 'GD': '74.122.88.0/21',
3131 'GE': '31.146.0.0/16',
3132 'GF': '161.22.64.0/18',
3133 'GG': '62.68.160.0/19',
3134 'GH': '45.208.0.0/14',
3135 'GI': '85.115.128.0/19',
3136 'GL': '88.83.0.0/19',
3137 'GM': '160.182.0.0/15',
3138 'GN': '197.149.192.0/18',
3139 'GP': '104.250.0.0/19',
3140 'GQ': '105.235.224.0/20',
3141 'GR': '94.64.0.0/13',
3142 'GT': '168.234.0.0/16',
3143 'GU': '168.123.0.0/16',
3144 'GW': '197.214.80.0/20',
3145 'GY': '181.41.64.0/18',
3146 'HK': '113.252.0.0/14',
3147 'HN': '181.210.0.0/16',
3148 'HR': '93.136.0.0/13',
3149 'HT': '148.102.128.0/17',
3150 'HU': '84.0.0.0/14',
3151 'ID': '39.192.0.0/10',
3152 'IE': '87.32.0.0/12',
3153 'IL': '79.176.0.0/13',
3154 'IM': '5.62.80.0/20',
3155 'IN': '117.192.0.0/10',
3156 'IO': '203.83.48.0/21',
3157 'IQ': '37.236.0.0/14',
3158 'IR': '2.176.0.0/12',
3159 'IS': '82.221.0.0/16',
3160 'IT': '79.0.0.0/10',
3161 'JE': '87.244.64.0/18',
3162 'JM': '72.27.0.0/17',
3163 'JO': '176.29.0.0/16',
3164 'JP': '126.0.0.0/8',
3165 'KE': '105.48.0.0/12',
3166 'KG': '158.181.128.0/17',
3167 'KH': '36.37.128.0/17',
3168 'KI': '103.25.140.0/22',
3169 'KM': '197.255.224.0/20',
3170 'KN': '198.32.32.0/19',
3171 'KP': '175.45.176.0/22',
3172 'KR': '175.192.0.0/10',
3173 'KW': '37.36.0.0/14',
3174 'KY': '64.96.0.0/15',
3175 'KZ': '2.72.0.0/13',
3176 'LA': '115.84.64.0/18',
3177 'LB': '178.135.0.0/16',
3178 'LC': '192.147.231.0/24',
3179 'LI': '82.117.0.0/19',
3180 'LK': '112.134.0.0/15',
3181 'LR': '41.86.0.0/19',
3182 'LS': '129.232.0.0/17',
3183 'LT': '78.56.0.0/13',
3184 'LU': '188.42.0.0/16',
3185 'LV': '46.109.0.0/16',
3186 'LY': '41.252.0.0/14',
3187 'MA': '105.128.0.0/11',
3188 'MC': '88.209.64.0/18',
3189 'MD': '37.246.0.0/16',
3190 'ME': '178.175.0.0/17',
3191 'MF': '74.112.232.0/21',
3192 'MG': '154.126.0.0/17',
3193 'MH': '117.103.88.0/21',
3194 'MK': '77.28.0.0/15',
3195 'ML': '154.118.128.0/18',
3196 'MM': '37.111.0.0/17',
3197 'MN': '49.0.128.0/17',
3198 'MO': '60.246.0.0/16',
3199 'MP': '202.88.64.0/20',
3200 'MQ': '109.203.224.0/19',
3201 'MR': '41.188.64.0/18',
3202 'MS': '208.90.112.0/22',
3203 'MT': '46.11.0.0/16',
3204 'MU': '105.16.0.0/12',
3205 'MV': '27.114.128.0/18',
3206 'MW': '105.234.0.0/16',
3207 'MX': '187.192.0.0/11',
3208 'MY': '175.136.0.0/13',
3209 'MZ': '197.218.0.0/15',
3210 'NA': '41.182.0.0/16',
3211 'NC': '101.101.0.0/18',
3212 'NE': '197.214.0.0/18',
3213 'NF': '203.17.240.0/22',
3214 'NG': '105.112.0.0/12',
3215 'NI': '186.76.0.0/15',
3216 'NL': '145.96.0.0/11',
3217 'NO': '84.208.0.0/13',
3218 'NP': '36.252.0.0/15',
3219 'NR': '203.98.224.0/19',
3220 'NU': '49.156.48.0/22',
3221 'NZ': '49.224.0.0/14',
3222 'OM': '5.36.0.0/15',
3223 'PA': '186.72.0.0/15',
3224 'PE': '186.160.0.0/14',
3225 'PF': '123.50.64.0/18',
3226 'PG': '124.240.192.0/19',
3227 'PH': '49.144.0.0/13',
3228 'PK': '39.32.0.0/11',
3229 'PL': '83.0.0.0/11',
3230 'PM': '70.36.0.0/20',
3231 'PR': '66.50.0.0/16',
3232 'PS': '188.161.0.0/16',
3233 'PT': '85.240.0.0/13',
3234 'PW': '202.124.224.0/20',
3235 'PY': '181.120.0.0/14',
3236 'QA': '37.210.0.0/15',
3237 'RE': '139.26.0.0/16',
3238 'RO': '79.112.0.0/13',
3239 'RS': '178.220.0.0/14',
3240 'RU': '5.136.0.0/13',
3241 'RW': '105.178.0.0/15',
3242 'SA': '188.48.0.0/13',
3243 'SB': '202.1.160.0/19',
3244 'SC': '154.192.0.0/11',
3245 'SD': '154.96.0.0/13',
3246 'SE': '78.64.0.0/12',
3247 'SG': '152.56.0.0/14',
3248 'SI': '188.196.0.0/14',
3249 'SK': '78.98.0.0/15',
3250 'SL': '197.215.0.0/17',
3251 'SM': '89.186.32.0/19',
3252 'SN': '41.82.0.0/15',
3253 'SO': '197.220.64.0/19',
3254 'SR': '186.179.128.0/17',
3255 'SS': '105.235.208.0/21',
3256 'ST': '197.159.160.0/19',
3257 'SV': '168.243.0.0/16',
3258 'SX': '190.102.0.0/20',
3260 'SZ': '41.84.224.0/19',
3261 'TC': '65.255.48.0/20',
3262 'TD': '154.68.128.0/19',
3263 'TG': '196.168.0.0/14',
3264 'TH': '171.96.0.0/13',
3265 'TJ': '85.9.128.0/18',
3266 'TK': '27.96.24.0/21',
3267 'TL': '180.189.160.0/20',
3268 'TM': '95.85.96.0/19',
3269 'TN': '197.0.0.0/11',
3270 'TO': '175.176.144.0/21',
3271 'TR': '78.160.0.0/11',
3272 'TT': '186.44.0.0/15',
3273 'TV': '202.2.96.0/19',
3274 'TW': '120.96.0.0/11',
3275 'TZ': '156.156.0.0/14',
3276 'UA': '93.72.0.0/13',
3277 'UG': '154.224.0.0/13',
3279 'UY': '167.56.0.0/13',
3280 'UZ': '82.215.64.0/18',
3281 'VA': '212.77.0.0/19',
3282 'VC': '24.92.144.0/20',
3283 'VE': '186.88.0.0/13',
3284 'VG': '172.103.64.0/18',
3285 'VI': '146.226.0.0/16',
3286 'VN': '14.160.0.0/11',
3287 'VU': '202.80.32.0/20',
3288 'WF': '117.20.32.0/21',
3289 'WS': '202.4.32.0/19',
3290 'YE': '134.35.0.0/16',
3291 'YT': '41.242.116.0/22',
3292 'ZA': '41.0.0.0/11',
3293 'ZM': '165.56.0.0/13',
3294 'ZW': '41.85.192.0/19',
3298 def random_ipv4(cls, code):
3299 block = cls._country_ip_map.get(code.upper())
3302 addr, preflen = block.split('/')
3303 addr_min = compat_struct_unpack('!L', socket.inet_aton(addr))[0]
3304 addr_max = addr_min | (0xffffffff >> int(preflen))
3305 return compat_str(socket.inet_ntoa(
3306 compat_struct_pack('!L', random.randint(addr_min, addr_max))))
3309 class PerRequestProxyHandler(compat_urllib_request.ProxyHandler):
3310 def __init__(self, proxies=None):
3311 # Set default handlers
3312 for type in ('http', 'https'):
3313 setattr(self, '%s_open' % type,
3314 lambda r, proxy='__noproxy__', type=type, meth=self.proxy_open:
3315 meth(r, proxy, type))
3316 return compat_urllib_request.ProxyHandler.__init__(self, proxies)
3318 def proxy_open(self, req, proxy, type):
3319 req_proxy = req.headers.get('Ytdl-request-proxy')
3320 if req_proxy is not None:
3322 del req.headers['Ytdl-request-proxy']
3324 if proxy == '__noproxy__':
3325 return None # No Proxy
3326 if compat_urlparse.urlparse(proxy).scheme.lower() in ('socks', 'socks4', 'socks4a', 'socks5'):
3327 req.add_header('Ytdl-socks-proxy', proxy)
3328 # youtube-dl's http/https handlers do wrapping the socket with socks
3330 return compat_urllib_request.ProxyHandler.proxy_open(
3331 self, req, proxy, type)
3334 # Both long_to_bytes and bytes_to_long are adapted from PyCrypto, which is
3335 # released into Public Domain
3336 # https://github.com/dlitz/pycrypto/blob/master/lib/Crypto/Util/number.py#L387
3338 def long_to_bytes(n, blocksize=0):
3339 """long_to_bytes(n:long, blocksize:int) : string
3340 Convert a long integer to a byte string.
3342 If optional blocksize is given and greater than zero, pad the front of the
3343 byte string with binary zeros so that the length is a multiple of
3346 # after much testing, this algorithm was deemed to be the fastest
3350 s = compat_struct_pack('>I', n & 0xffffffff) + s
3352 # strip off leading zeros
3353 for i in range(len(s)):
3354 if s[i] != b'\000'[0]:
3357 # only happens when n == 0
3361 # add back some pad bytes. this could be done more efficiently w.r.t. the
3362 # de-padding being done above, but sigh...
3363 if blocksize > 0 and len(s) % blocksize:
3364 s = (blocksize - len(s) % blocksize) * b'\000' + s
3368 def bytes_to_long(s):
3369 """bytes_to_long(string) : long
3370 Convert a byte string to a long integer.
3372 This is (essentially) the inverse of long_to_bytes().
3377 extra = (4 - length % 4)
3378 s = b'\000' * extra + s
3379 length = length + extra
3380 for i in range(0, length, 4):
3381 acc = (acc << 32) + compat_struct_unpack('>I', s[i:i + 4])[0]
3385 def ohdave_rsa_encrypt(data, exponent, modulus):
3387 Implement OHDave
's RSA algorithm. See http://www.ohdave.com/rsa/
3390 data: data to encrypt, bytes-like object
3391 exponent, modulus: parameter e and N of RSA algorithm, both integer
3392 Output: hex string of encrypted data
3394 Limitation: supports one block encryption only
3397 payload = int(binascii.hexlify(data[::-1]), 16)
3398 encrypted = pow(payload, exponent, modulus)
3399 return '%x' % encrypted
3402 def pkcs1pad(data, length):
3404 Padding input data with PKCS#1 scheme
3406 @param {int[]} data input data
3407 @param {int} length target length
3408 @returns {int[]} padded data
3410 if len(data) > length - 11:
3411 raise ValueError('Input data too
long for PKCS
#1 padding')
3413 pseudo_random
= [random
.randint(0, 254) for _
in range(length
- len(data
) - 3)]
3414 return [0, 2] + pseudo_random
+ [0] + data
3417 def encode_base_n(num
, n
, table
=None):
3418 FULL_TABLE
= '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
3420 table
= FULL_TABLE
[:n
]
3423 raise ValueError('base %d exceeds table length %d' % (n
, len(table
)))
3430 ret
= table
[num
% n
] + ret
3435 def decode_packed_codes(code
):
3436 mobj
= re
.search(PACKED_CODES_RE
, code
)
3437 obfucasted_code
, base
, count
, symbols
= mobj
.groups()
3440 symbols
= symbols
.split('|')
3445 base_n_count
= encode_base_n(count
, base
)
3446 symbol_table
[base_n_count
] = symbols
[count
] or base_n_count
3449 r
'\b(\w+)\b', lambda mobj
: symbol_table
[mobj
.group(0)],
3453 def parse_m3u8_attributes(attrib
):
3455 for (key
, val
) in re
.findall(r
'(?P<key>[A-Z0-9-]+)=(?P<val>"[^"]+"|[^",]+)(?:,|$)', attrib
):
3456 if val
.startswith('"'):
3462 def urshift(val
, n
):
3463 return val
>> n
if val
>= 0 else (val
+ 0x100000000) >> n
3466 # Based on png2str() written by @gdkchan and improved by @yokrysty
3467 # Originally posted at https://github.com/rg3/youtube-dl/issues/9706
3468 def decode_png(png_data
):
3469 # Reference: https://www.w3.org/TR/PNG/
3470 header
= png_data
[8:]
3472 if png_data
[:8] != b
'\x89PNG\x0d\x0a\x1a\x0a' or header
[4:8] != b
'IHDR':
3473 raise IOError('Not a valid PNG file.')
3475 int_map
= {1: '>B', 2: '>H', 4: '>I'}
3476 unpack_integer
= lambda x
: compat_struct_unpack(int_map
[len(x
)], x
)[0]
3481 length
= unpack_integer(header
[:4])
3484 chunk_type
= header
[:4]
3487 chunk_data
= header
[:length
]
3488 header
= header
[length
:]
3490 header
= header
[4:] # Skip CRC
3498 ihdr
= chunks
[0]['data']
3500 width
= unpack_integer(ihdr
[:4])
3501 height
= unpack_integer(ihdr
[4:8])
3505 for chunk
in chunks
:
3506 if chunk
['type'] == b
'IDAT':
3507 idat
+= chunk
['data']
3510 raise IOError('Unable to read PNG data.')
3512 decompressed_data
= bytearray(zlib
.decompress(idat
))
3517 def _get_pixel(idx
):
3522 for y
in range(height
):
3523 basePos
= y
* (1 + stride
)
3524 filter_type
= decompressed_data
[basePos
]
3528 pixels
.append(current_row
)
3530 for x
in range(stride
):
3531 color
= decompressed_data
[1 + basePos
+ x
]
3532 basex
= y
* stride
+ x
3537 left
= _get_pixel(basex
- 3)
3539 up
= _get_pixel(basex
- stride
)
3541 if filter_type
== 1: # Sub
3542 color
= (color
+ left
) & 0xff
3543 elif filter_type
== 2: # Up
3544 color
= (color
+ up
) & 0xff
3545 elif filter_type
== 3: # Average
3546 color
= (color
+ ((left
+ up
) >> 1)) & 0xff
3547 elif filter_type
== 4: # Paeth
3553 c
= _get_pixel(basex
- stride
- 3)
3561 if pa
<= pb
and pa
<= pc
:
3562 color
= (color
+ a
) & 0xff
3564 color
= (color
+ b
) & 0xff
3566 color
= (color
+ c
) & 0xff
3568 current_row
.append(color
)
3570 return width
, height
, pixels
3573 def write_xattr(path
, key
, value
):
3574 # This mess below finds the best xattr tool for the job
3576 # try the pyxattr module...
3579 if hasattr(xattr
, 'set'): # pyxattr
3580 # Unicode arguments are not supported in python-pyxattr until
3582 # See https://github.com/rg3/youtube-dl/issues/5498
3583 pyxattr_required_version
= '0.5.0'
3584 if version_tuple(xattr
.__version
__) < version_tuple(pyxattr_required_version
):
3585 # TODO: fallback to CLI tools
3586 raise XAttrUnavailableError(
3587 'python-pyxattr is detected but is too old. '
3588 'youtube-dl requires %s or above while your version is %s. '
3589 'Falling back to other xattr implementations' % (
3590 pyxattr_required_version
, xattr
.__version
__))
3592 setxattr
= xattr
.set
3594 setxattr
= xattr
.setxattr
3597 setxattr(path
, key
, value
)
3598 except EnvironmentError as e
:
3599 raise XAttrMetadataError(e
.errno
, e
.strerror
)
3602 if compat_os_name
== 'nt':
3603 # Write xattrs to NTFS Alternate Data Streams:
3604 # http://en.wikipedia.org/wiki/NTFS#Alternate_data_streams_.28ADS.29
3605 assert ':' not in key
3606 assert os
.path
.exists(path
)
3608 ads_fn
= path
+ ':' + key
3610 with open(ads_fn
, 'wb') as f
:
3612 except EnvironmentError as e
:
3613 raise XAttrMetadataError(e
.errno
, e
.strerror
)
3615 user_has_setfattr
= check_executable('setfattr', ['--version'])
3616 user_has_xattr
= check_executable('xattr', ['-h'])
3618 if user_has_setfattr
or user_has_xattr
:
3620 value
= value
.decode('utf-8')
3621 if user_has_setfattr
:
3622 executable
= 'setfattr'
3623 opts
= ['-n', key
, '-v', value
]
3624 elif user_has_xattr
:
3625 executable
= 'xattr'
3626 opts
= ['-w', key
, value
]
3628 cmd
= ([encodeFilename(executable
, True)] +
3629 [encodeArgument(o
) for o
in opts
] +
3630 [encodeFilename(path
, True)])
3633 p
= subprocess
.Popen(
3634 cmd
, stdout
=subprocess
.PIPE
, stderr
=subprocess
.PIPE
, stdin
=subprocess
.PIPE
)
3635 except EnvironmentError as e
:
3636 raise XAttrMetadataError(e
.errno
, e
.strerror
)
3637 stdout
, stderr
= p
.communicate()
3638 stderr
= stderr
.decode('utf-8', 'replace')
3639 if p
.returncode
!= 0:
3640 raise XAttrMetadataError(p
.returncode
, stderr
)
3643 # On Unix, and can't find pyxattr, setfattr, or xattr.
3644 if sys
.platform
.startswith('linux'):
3645 raise XAttrUnavailableError(
3646 "Couldn't find a tool to set the xattrs. "
3647 "Install either the python 'pyxattr' or 'xattr' "
3648 "modules, or the GNU 'attr' package "
3649 "(which contains the 'setfattr' tool).")
3651 raise XAttrUnavailableError(
3652 "Couldn't find a tool to set the xattrs. "
3653 "Install either the python 'xattr' module, "
3654 "or the 'xattr' binary.")