summaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/common.py
Commit message (Collapse)AuthorAgeFilesLines
* [extractor/common] Relax interaction count extraction in _json_ldSergey M․2020-09-191-1/+5
|
* [extractor/common] Extract author as uploader for VideoObject in _json_ldSergey M․2020-09-191-0/+1
|
* [extractor/common] Handle ssl.CertificateError in _request_webpage (closes ↵Sergey M․2020-09-181-1/+5
| | | | | | #26601) ssl.CertificateError is raised on some python versions <= 3.7.x
* [extractor/common] Use compat_cookiejar_Cookie for _set_cookie (closes ↵Sergey M․2020-05-051-2/+2
| | | | | | #23256, closes #24776) To always ensure cookie name and value are bytestrings on python 2.
* [extractor/common] Extract multiple JSON-LD entriesSergey M․2020-05-021-9/+32
|
* [extractor/common] Skip malformed ISM manifest XMLs while extracting ISM ↵Sergey M․2020-04-071-0/+2
| | | | formats (#24667)
* Remove no longer needed compat_str around geturlSergey M․2020-02-291-1/+1
|
* [extractor/common] Convert ISM manifest to unicode before processing on ↵Sergey M․2020-02-291-1/+1
| | | | python 2 (#24152)
* [dailymotion] improve extractionRemita Amine2019-11-261-0/+13
| | | | | | | | | | - extract http formats included in m3u8 manifest - fix user extraction(closes #3553)(closes #21415) - add suport for User Authentication(closes #11491) - fix password protected videos extraction(closes #23176) - respect age limit option and family filter cookie value(closes #18437) - handle video url playlist query param - report alowed countries for geo-restricted videos
* [extractor/common] Add data, headers and query to all major extract methods ↵Sergey M․2019-11-161-8/+9
| | | | preserving standard order for potential future use
* [extractor/common] clean jwplayer description HTML tagsRemita Amine2019-11-091-1/+1
|
* [common] initialize headers param with empty dictRemita Amine2019-11-061-2/+2
|
* [common] fix typoRemita Amine2019-11-051-1/+1
|
* [common] pass headers to _extract_(m3u8|mpd)_formats methodsRemita Amine2019-11-051-4/+4
|
* [extractor/common] Make _is_valid_url more relaxedSergey M․2019-10-031-6/+4
|
* [extractor/common] Fix typo in thumbnails resolution description (#21817)Petr Vaněk2019-07-171-1/+1
|
* [extractor/common] Strip src attribute for HTML5 entries code (closes ↵Sergey M․2019-05-231-3/+4
| | | | #18485, closes #21169)
* [extractor/common] Add doc string for _apply_first_set_cookie_headerSergey M․2019-05-201-9/+13
|
* [extractor/common] Move workaround for applying first Set-Cookie header into ↵Sergey M․2019-05-181-0/+23
| | | | a separate method
* [extractor/common] Fix typoSergey M․2019-05-111-1/+1
|
* Fix W504 and disable W503 (closes #20863)Sergey M․2019-05-111-20/+20
|
* [vimeo] add support live streams and improve info extraction(closes #19144)Remita Amine2019-04-211-0/+2
|
* [extractor/common] Improve HTML5 entries extraction and add some realworld testsSergey M․2019-03-171-7/+36
|
* [extractor/common] Fix url meta field for unfragmented DASH formats (closes ↵Sergey M․2019-03-151-8/+17
| | | | #20346)
* Start moving to ytdl-orgSergey M․2019-03-111-10/+10
|
* Use compat_etree_ElementSergey M․2019-03-061-4/+4
|
* [extractor/common] Fallback url to base URL for DASH formatsSergey M․2019-03-061-2/+6
|
* [extractor/common] Do not fail on invalid data while parsing F4M manifest in ↵Sergey M․2019-03-051-0/+4
| | | | non fatal mode
* [extractor/common] Clarify url and manifest_url meta fieldsSergey M․2019-03-051-2/+12
|
* [extractor/common] Return MPD manifest as format's url meta field (#20242)Sergey M․2019-03-051-1/+1
| | | | For symmetry with other segmented media
* [malltv] Add extractor (closes #18058)Ales Jirasek2019-02-081-1/+1
|
* [extractor/common] Extract season in _json_ldSergey M․2019-01-271-1/+4
|
* [extractor/common] improve jwplayer relative url handling(closes #18892)Remita Amine2019-01-201-7/+4
|
* [extractor/common] fix typoRemita Amine2019-01-191-1/+1
|
* [extractor/common] imporove HLS video only format detection(closes #18923)Remita Amine2019-01-191-2/+8
|
* [extractor/common] Use episode name as title in _json_ldSergey M․2019-01-081-1/+4
|
* [extractor/common] Add support for movies in _json_ldSergey M․2019-01-081-0/+7
|
* [extractor/common] Ensure response handle is not prematurely closed before ↵Xiao Di Guan2018-11-031-0/+5
| | | | it can be read if it matches expected_status (resolves #17195, closes #17846, resolves #17447)
* [extractor/common] Add validation for JSON-LD URLsSergey M․2018-10-291-2/+3
|
* [extractor/common] Fix typosSergey M․2018-09-151-4/+4
|
* [extractor/common] Introduce channel meta fieldsSergey M․2018-09-151-0/+5
|
* [extractor/common] add support for DASH and MSS formats extraction in SMIL ↵Remita Amine2018-07-181-7/+8
| | | | manifests
* [utils] Share JSON-LD regexSergey M․2018-07-091-2/+2
|
* [extractor/common] Properly escape % in MPD templates (closes #16867)Sergey M․2018-07-011-1/+15
|
* [extractor/common] Use source URL as Referer for HTML5 entries (closes #16849)Sergey M․2018-06-291-0/+2
|
* [extractor/common] Introduce expected_status for convenient accept of failed ↵Sergey M․2018-06-181-22/+113
| | | | | | HTTP requests Useful when some non-success (2xx) HTTP status codes should be considered normal. Previously this required to manually catch corresponding exceptions and read the response.
* Remove experimental mark for some optionsSergey M․2018-05-191-6/+3
|
* Improve geo bypass mechanismSergey M․2018-05-021-17/+80
| | | | | | * Introduce geo bypass context * Add ability to bypass based on IP blocks in CIDR notation * Introduce --geo-bypass-ip-block
* [extractor/common] Extract interaction statisticSergey M․2018-04-281-0/+35
|
* [extractor/common] Add _download_json_handleSergey M․2018-04-281-9/+21
|