aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata
Commit message (Collapse)AuthorAgeFilesLines
* Improve plugin architecture (#5553)Matthew2023-01-016-0/+41
| | | | | | | | | | | | | | | | | to make plugins easier to develop and use: * Plugins are now loaded as namespace packages. * Plugins can be loaded in any distribution of yt-dlp (binary, pip, source, etc.). * Plugin packages can be installed and managed via pip, or dropped into any of the documented locations. * Users do not need to edit any code files to install plugins. * Backwards-compatible with previous plugin architecture. As a side-effect, yt-dlp will now search in a few more locations for config files. Closes https://github.com/yt-dlp/yt-dlp/issues/1389 Authored by: flashdagger, coletdjnz, pukkandan, Grub4K Co-authored-by: Marcel <flashdagger@googlemail.com> Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com> Co-authored-by: Simon Sawicki <accounts@grub4k.xyz>
* [downloader/ism] Support ec-3 codec (#5004)nixxo2022-09-301-0/+1
| | | | Closes #296 Authored by: nixxo
* Add support for SSL client certificate authentication (#3435)coletdev2022-05-0210-0/+95
| | | | | | | Adds `--client-certificate`, `--client-certificate-key`, `--client-certificate-password` Authored-by: coletdjnz Co-authored-by: df <fieldhouse@gmx.net> Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
* [embedthumbnail] Correctly escape filenamepukkandan2021-05-291-0/+0
| | | | | | Closes #352 The approach in [1] is faulty as can be seen in the test cases 1. https://github.com/ytdl-org/youtube-dl/commit/bff857a8af696e701482208617bf0b7564951326
* [test] Test SSTR manifest parsingFelix S2021-04-281-0/+988
|
* [test] Test subtitle extraction from DASH manifestsFelix S2021-04-281-0/+351
|
* [test] Test subtitle extraction from HLS manifestsFelix S2021-04-281-0/+38
|
* Better support HLS media discontinuity and fully support media ↵shirt-dev2021-02-247-101/+76
| | | | | | | initialization (#105) * Added options: `--hls-split-discontinuity` and `--no-hls-split-discontinuity` Authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com>
* [utils] Improve cookie files supportSergey M․2020-05-051-0/+9
| | | | | + Add support for UTF-8 in cookie files * Skip malformed cookie file entries instead of crashing (invalid entry len, invalid expires at)
* Revert "[utils] Add support for cookies with spaces used instead of tabs"Sergey M․2020-03-101-5/+0
| | | | | | | | | | According to [1] TABs must be used as separators between fields. Files produces by some tools with spaces as separators are considered malformed. 1. https://curl.haxx.se/docs/http-cookies.html This reverts commit cff99c91d150df2a4e21962a3ca8d4ae94533b8c.
* [utils] Add support for cookies with spaces used instead of tabsSergey M․2020-03-081-0/+5
|
* [test_InfoExtractor] Add test for #20346Sergey M․2019-03-151-0/+28
|
* [utils] strip #HttpOnly_ prefix from cookies files (#20219)remitamine2019-03-031-0/+6
|
* [test/test_InfoExtractor] add test for #18923Remita Amine2019-01-201-0/+28
|
* [test/testdata/cookies/session_cookies.txt] Fix empty expires test dataSergey M․2018-12-101-1/+1
|
* [YoutubeDLCookieJar] Add test for keeping session cookiesSergey M․2018-12-091-0/+6
|
* [extractor/generic] Support relative URIs in _parse_xspfRicardo Constantino2018-03-181-0/+34
| | | | <location> can have relative URIs, not just absolute.
* [extractor/common] Add support for DASH manifests with SegmentLists with ↵Petr Novak2017-12-021-0/+218
| | | | bare SegmentURLs
* [test_InfoExtractor] Add test for #14660Sergey M․2017-11-041-0/+10
|
* [extractor/common] Add support for float durations in _parse_mpd_formats ↵Sergey M․2017-08-151-0/+18
| | | | (closes #13919)
* Add missing test m3u8 fileSergey M․2017-04-251-0/+10
|
* [extractor/common] Improve m3u8 extraction (closes #12211)Sergey M․2017-04-224-0/+63
* Extract m3u8 parsing to separate method * Improve rendition groups extraction * Build stream name according stream GROUP-ID * Ignore reference to AUDIO group without URI when stream has no CODECS + Add test coverage for parsing m3u8 from #11507, #11995, #12211 and twitch vod