about summary refs log tree commit diff
path: root/youtube_dl/utils.py
Commit message (Collapse)AuthorAgeFilesLines
* [utils] Fix youtube-dl under PyPy3 on WindowsPhilipp Hagemeister2018-01-011-7/+8
|
* [utils] Add another date format pattern (#14999)Sergey M․2017-12-161-0/+2
|
* [utils] add sami mimetype to mimetype2extRemita Amine2017-12-031-0/+1
|
* [utils] add hvc1 codec code to parse_codecsRemita Amine2017-11-271-1/+1
|
* [utils] Add support for zero years and months in parse_durationSergey M․2017-10-291-1/+11
|
* [utils] Use in OnDemandPagedList by defaultSergey M․2017-10-061-1/+1
| | | | Not using cache results in redundant network I/O due to downloading the same pages while using --playlist-items n-m
* Hide experimental phantomjs wrapperSergey M․2017-09-241-214/+0
|
* Fix flake8 issues after #14225Yen Chi Hsuan2017-09-171-16/+17
|
* [utils] Use bytes-like objects in dfxp2srtYen Chi Hsuan2017-09-161-7/+11
| | | | | | This fixes handling of non-UTF8 TTML subtitles Closes #14191
* Merge pull request #14225 from Tithen-Firion/openload-phantomjs-methodYen Chi Hsuan2017-09-161-0/+213
|\ | | | | Openload phantomjs method
| * [phantomjs] add exe version to debug infoTithen-Firion2017-08-031-1/+5
| |
| * Merge branch 'master' into openload-phantomjs-methodTithen-Firion2017-05-041-21/+189
| |\
| * | [phantomjs] Add required version checkingTithen-Firion2017-04-291-1/+10
| | |
| * | [phantomjs] add cookie supportTithen-Firion2017-04-251-1/+61
| | |
| * | [openload] separate PhantomJS code from extractorTithen-Firion2017-04-251-0/+141
| | |
* | | [utils] Introduce bool_or_noneSergey M․2017-09-101-0/+4
| | |
* | | [utils] Fix unescapeHTML for misformed string like "&a"" (#13935)Yen Chi Hsuan2017-08-191-1/+1
| | |
* | | [utils] Skip missing params in cli_bool_option (closes #13865)Sergey M․2017-08-091-0/+2
| | |
* | | [utils] Support attributes with no values in get_elements_by_attribute()Yen Chi Hsuan2017-07-051-2/+2
| | |
* | | [utils] Use compat_shlex_quote in shell_quoteSergey M․2017-06-171-2/+1
| | |
* | | [utils] Handle HTMLParseError in extract_attributes (closes #13349)Sergey M․2017-06-121-2/+7
| | |
* | | [utils] Improve unified_timestampSergey M․2017-06-111-1/+1
| | |
* | | [utils] Drop an compatibility wrapper for Python < 2.6Yen Chi Hsuan2017-05-271-10/+2
| | | | | | | | | | | | | | | | | | | | | addinfourl.getcode is added since Python 2.6a1. As youtube-dl now requires 2.6+, this is no longer necessary. See https://github.com/python/cpython/commit/9b0d46db115c10767b240a0a64286214b50fe6ad
* | | [utils] Recognize more patterns in strip_jsonp()Yen Chi Hsuan2017-05-261-1/+6
| | | | | | | | | | | | Used in Youku Show pages
* | | [utils] Recognize more audio codecs (#13081)Sergey M․2017-05-141-2/+2
| | |
* | | [utils] Rename try_multipart_encode to _multipart_encode_implYen Chi Hsuan2017-05-061-2/+2
| | | | | | | | | | | | | | | To state that this is an internal function and people should be careful when using it outside youtube-dl.
* | | [utils] Fix multipart_encode for Python < 3.5Yen Chi Hsuan2017-05-051-1/+1
| |/ |/|
* | [cda] Implement birthday verification (closes #12789)Yen Chi Hsuan2017-05-041-0/+61
| |
* | [utils] Improve unified_timestampSergey M․2017-04-301-0/+5
| | | | | | | | Seen at http://zaq1.pl/video/xev0e
* | [utils] add video/mp2t to mimetype2extRemita Amine2017-04-301-3/+1
| |
* | [utils] Fix inconsistent output of clean_htmlTithen-Firion2017-04-281-2/+2
| | | | | | | | | | `\s` in Python 2.x doesn't match unicode whitespace characters by default
* | [utils] add support for ttml stylesRemita Amine2017-04-191-9/+111
| |
* | [extractor/common] Add support multiple getters in try_getSergey M․2017-04-181-7/+10
|/
* [utils] Introduce expand_pathSergey M․2017-03-261-0/+6
|
* [utils] Process bytestrings in urljoin (closes #12369)Sergey M․2017-03-061-1/+6
|
* [utils] Carry long doc stringSergey M․2017-03-011-1/+2
|
* [utils] Add bytes_to_long() and long_to_bytes()Yen Chi Hsuan2017-02-281-0/+51
| | | | | | | Used in daisuki.net (#4738) Both are adapted from public domain PyCrypto: https://github.com/dlitz/pycrypto/blob/master/lib/Crypto/Util/number.py
* [utils] Add pkcs1padYen Chi Hsuan2017-02-281-0/+15
| | | | Used in daisuki.net (#4738)
* Improve geo bypass mechanismSergey M․2017-02-191-1/+1
| | | | | | * Rename options to preffixly match with --geo-verification-proxy * Introduce _GEO_COUNTRIES for extractors * Implement faking IP right away for sites with known geo restriction
* [utils] Make random_ipv4 return unicode stringSergey M․2017-02-191-2/+2
|
* Add experimental geo restriction bypass mechanismSergey M․2017-02-191-0/+267
| | | | Based on faking X-Forwarded-For HTTP header
* [utils] Introduce YoutubeDLError base class for all youtube-dl exceptionsPierre Mdawar2017-02-191-9/+18
|
* [utils] Add support for quoted string literals in --match-filter (closes ↵Sergey M․2017-02-151-2/+7
| | | | #8050, closes #12142, closes #12144)
* utils.py: Workaround TypeError with Python 2.7.13 in WindowsRicardo Constantino2017-02-111-0/+5
| | | | | | Fixes #11540 Tested with Windows Python 2.7.12 and 2.7.13.
* Introduce get_elements_by_class and get_elements_by_attribute utility functionsThomas Christlieb2017-02-111-10/+22
|
* [utils] Improve comments processing in js_to_json (closes #11947)Sergey M․2017-02-031-9/+11
|
* [utils] Handle single-line comments in js_to_jsonMichal Čihař2017-02-031-2/+2
|
* [utils] Improve parse_durationSergey M․2017-01-261-3/+3
|
* [utils] Add another date format seen in NextTVYen Chi Hsuan2017-01-231-0/+1
|
* [utils] Add more date formatsSergey M․2017-01-121-0/+6
|