aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2022-08-02[extractor/rai] Add raisudtirol extractor (#4524)nixxo
Closes #4206 Authored by: nixxo
2022-07-18Remove Python 3.6 supportpukkandan
Closes #3764
2022-07-15Fix a904a7f8c6edc42046f0a78fb279739d500d4887pukkandan
2022-07-15Allow users to specify encoding in each config files (#4357)Lesmiscore
Authored by: Lesmiscore
2022-07-12[aes] Add multiple padding modes in CBCElyse
Authored by: elyse0
2022-07-11[cleanup] Minor fixespukkandan
2022-07-09[cleanup] Misc cleanuppukkandan
2022-06-29[cleanup] Misc cleanuppukkandan
2022-06-25[compat] Remove deprecated functions from core codepukkandan
2022-06-25[cleanup] Consistent style for file headspukkandan
2022-06-25[compat] Remove more functionspukkandan
Removing any more will require changes to a large number of extractors
2022-06-25[compat] Fix `compat.WINDOWS_VT_MODE`pukkandan
2022-06-21[test] Fix `FakeYDL` signaturespukkandan
Authored by: coletdjnz
2022-06-20Update to ytdl-commit-8a158a9pukkandan
[NHK] Use new API URL https://github.com/ytdl-org/youtube-dl/commit/6508688e88c83bb811653083db9351702cd39a6a Closes #2337, Closes #4063
2022-06-17Add option `--lazy-playlist` to process entries as they are receivedpukkandan
2022-06-17Add slicing notation to `--playlist-items`pukkandan
* Adds support for negative indices and step * Add `-I` as alias for `--playlist-index` * Deprecates `--playlist-start`, `--playlist-end`, `--playlist-reverse`, `--no-playlist-reverse` Closes #2951, Closes #2853
2022-05-29[extractor/common] Recognize `src` attribute from HTML5 media elements (#3899)Lesmiscore
Authored by: Lesmiscore
2022-05-17[cleanup] Misc cleanuppukkandan
2022-05-09[cleanup] Minor fixes (See desc)pukkandan
* [youtube] Fix `--youtube-skip-dash-manifest` * [build] Use `$()` in `Makefile`. Closes #3684 * Fix bug in 385ffb467b2285e85a2a5495b90314ba1f8e0700 * Fix bug in 43d7f5a5d0c77556156a3f8caa6976d3908a1e38 * [cleanup] Remove unnecessary `utf-8` from `str.encode`/`bytes.decode` * [utils] LazyList: Expose unnecessarily "protected" attributes and other minor cleanup
2022-05-02Add support for SSL client certificate authentication (#3435)coletdev
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>
2022-04-28Improve `--clean-infojson`pukkandan
It should not removes fields that may be needed for `--load-infojson`. Eg: `_ffmpeg_args`, `_has_drm`
2022-04-26[compat] Ensure submodules are correctly wrappedpukkandan
2022-04-21[dependencies] Create module with all dependency importspukkandan
2022-04-18[compat] Split into sub-modules (#2173)felix
Authored by: fstirlitz, pukkandan
2022-04-18[cleanup] Misc cleanup and refactor (#2173)pukkandan
2022-04-18[test] Convert warnings into errorspukkandan
* And fix some existing warnings Authored by: fstirlitz
2022-04-12[cleanup] Misc cleanup (#2173)pukkandan
Authored by: fstirlitz, pukkandan
2022-04-12[cleanup] Sort importspukkandan
Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
2022-04-12[cleanup] Upgrade syntaxpukkandan
Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
2022-04-12[cleanup] Mark some compat variables for removal (#2173)pukkandan
Authored by fstirlitz, pukkandan
2022-04-12[cleanup] Remove unused code paths (#2173)felix
Notes: * `_windows_write_string`: Fixed in 3.6 * https://bugs.python.org/issue1602 * PEP: https://www.python.org/dev/peps/pep-0528 * Windows UTF-8 fix: Fixed in 3.3 * https://bugs.python.org/issue13216 * `__loader__`: is always present in 3.3+ * https://bugs.python.org/issue14646 * `workaround_optparse_bug9161`: Fixed in 2.7 * https://bugs.python.org/issue9161 Authored by: fstirlitz
2022-04-12[cleanup] Remove unused scripts/tests (#2173)felix
Authored by fstirlitz, pukkandan
2022-04-07[test] Add `test_locked_file`pukkandan
2022-03-28[youtube:tab] Fix duration extraction for shorts (#3171)coletdev
Related: https://github.com/TeamNewPipe/NewPipe/issues/8034 Authored-by: coletdjnz
2022-03-27[outtmpl] Limit changes during sanitizationpukkandan
Closes #2761
2022-03-26[outtmpl] Fix replacement/default when used with alternatepukkandan
2022-03-25Ignore format-specific fields in initial pass of `--match-filter`pukkandan
Closes #3074
2022-03-18[utils] `format_decimal_suffix`: Fix for very large numbers (#3109)s0u1h
Authored by: s0u1h
2022-03-18[extractor] Add `_perform_login` function (#2943)pukkandan
* Adds new functions `_initialize_pre_login` and `_perform_login` as part of the extractor API * Adds `ie.supports_login` to the public API
2022-02-23Add pre-processor stage `after_filter`pukkandan
* Move `_match_entry` and `post_extract` to `process_video_result`. It is also left in `process_info` for API compat * `--list-...` options and `--force-write-archive` now obey filtering options * Move `SponsorBlockPP` to `after_filter`. Closes https://github.com/yt-dlp/yt-dlp/issues/2536 * Reverts 4ec82a72bbf7ff0066edb50dcad20aa77ac2fe09 since this commit addresses the issue it was solving
2022-02-18[youtube] Fix n-sig extraction for phone player JS (#2816)MinePlayersPE
Authored by: MinePlayersPE
2022-02-03Release 2022.02.03pukkandan
2022-02-03Update to ytdl-commit-78ce962pukkandan
[youtube] Support channel search https://github.com/ytdl-org/youtube-dl/commit/78ce962f4fe020994c216dd2671546fbe58a5c67
2022-02-01[youtube] Fix n-sig for player e06dea74pukkandan
2022-01-24[docs,cleanup] Fix linter and misc cleanuppukkandan
Closes #2419
2022-01-21[cleanup] Minor fixespukkandan
Closes #2334
2022-01-19[Ted] Rewrite extractor (#2359)trasssh
Closes #2343 Authored by: pukkandan, trassshhub
2022-01-19[utils] Handle `ss:xxx` in `parse_duration`pukkandan
Closes #2388
2022-01-10[test] Fix TestVerboseOutputpukkandan
Closes #2269
2022-01-09[utils] Improve `get_elements_text_and_html_by_attribute` regex (#2280)Zenon Mousmoulas
Authored by: zmousm, pukkandan