aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/minicurses.py
Commit message (Collapse)AuthorAgeFilesLines
* [docs] Consistent use of `e.g.` (#4643)Lesmiscore2022-08-141-1/+1
| | | Authored by: Lesmiscore
* `--match-filter -` to interactively ask for each videopukkandan2022-04-281-0/+1
|
* [cleanup] Sort importspukkandan2022-04-121-1/+1
| | | | | | Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
* [cookies] Report progress when importing cookiespukkandan2022-04-101-1/+1
|
* [dash,youtube] Download live from start to end (#888)The Hatsune Daishi2021-12-201-0/+1
| | | | | | | | | | | | | | | * Add option `--live-from-start` to enable downloading live videos from start * Add key `is_from_start` in formats to identify formats (of live videos) that downloads from start * [dash] Create protocol `http_dash_segments_generator` that allows a function to be passed instead of fragments * [fragment] Allow multiple live dash formats to download simultaneously * [youtube] Implement fragment re-fetching for the live dash formats * [youtube] Re-extract dash manifest every 5 hours (manifest expires in 6hrs) * [postprocessor/ffmpeg] Add `FFmpegFixupDuplicateMoovPP` to fixup duplicated moov atoms Known issue: Ctrl+C doesn't work on Windows when downloading multiple formats Closes #1521 Authored by: nao20010128nao, pukkandan
* [downloader] Add colors to download progresspukkandan2021-11-291-1/+1
|
* [cleanup] Add keyword automatically to SearchIE descriptionspukkandan2021-10-231-0/+5
| | | | and some minor cleanup of docs
* [minicurses] Add more colorspukkandan2021-10-231-6/+72
|
* [minicurses] Fix when printing to filepukkandan2021-10-101-20/+22
| | | | Closes #1215
* [cleanup] Misc cleanuppukkandan2021-10-091-0/+2
|
* Improved progress reporting (See desc) (#1125)pukkandan2021-10-091-104/+74
| | | | | | | | | | | * Separate `--console-title` and `--no-progress` * Add option `--progress` to show progress-bar even in quiet mode * Fix and refactor `minicurses` * Use `minicurses` for all progress reporting * Standardize use of terminal sequences and enable color support for windows 10 * Add option `--progress-template` to customize progress-bar and console-title * Add postprocessor hooks and progress reporting Closes: #906, #901, #1085, #1170
* Basic framework for simultaneous download of multiple formats (#1036)The Hatsune Daishi2021-09-221-0/+135
Authored by: nao20010128nao