aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader/ism.py
Commit message (Collapse)AuthorAgeFilesLines
* [compat, networking] Deprecate old functions (#2861)coletdjnz2023-07-151-2/+2
| | | | Authored by: coletdjnz, pukkandan
* [downloader/fragment] HLS download can continue without first fragmentpukkandan2022-10-181-2/+1
| | | | Closes #5274
* [downloader/ism] Support ec-3 codec (#5004)nixxo2022-09-301-0/+2
| | | | Closes #296 Authored by: nixxo
* Standardize retry mechanism (#1649)pukkandan2022-08-021-13/+11
| | | | | | | * [utils] Create `RetryManager` * Migrate all retries to use the manager * [extractor] Add wrapper methods for convenience * Standardize console messages for retries * Add `--retry-sleep` for extractors
* [compat] Remove more functionspukkandan2022-06-251-2/+2
| | | | Removing any more will require changes to a large number of extractors
* Show name of downloader in verbose logpukkandan2022-05-111-2/+0
| | | | Closes #3703
* [cleanup] Minor fixes (See desc)pukkandan2022-05-091-1/+1
| | | | | | | | | | * [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
* [cleanup] Sort importspukkandan2022-04-121-5/+2
| | | | | | Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
* [cleanup] Upgrade syntaxpukkandan2022-04-121-2/+0
| | | | | | | | | | 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
* [cleanup] Mark some compat variables for removal (#2173)pukkandan2022-04-121-11/+11
| | | | Authored by fstirlitz, pukkandan
* [fragment] Read downloaded fragments only when needed (#3069)Lesmiscore (Naoya Ozaki)2022-03-151-1/+3
| | | Authored by: Lesmiscore
* [downloader] Pass `info_dict` to `progress_hook`spukkandan2021-07-221-2/+2
|
* [downloader/ism] Support muxing TTML subtitlesFelix S2021-04-281-2/+9
|
* [extractor/common, downloader/ism] Extract SSTR subtitle tracksFelix S2021-04-281-9/+29
| | | | | | | | | | _parse_ism_formats was extended into _parse_ism_formats_and_subtitles; all direct users were updated, though _extract_ism_formats was left as a compatibility wrapper. The SSTR downloader was also modified in order to prepare for muxing subtitle streams, although no support for any subtitle codecs was added in this commit.
* [downloader/ism] Prevent writing the header again when resuming an ↵Felix S2021-04-281-3/+6
| | | | interrupted download
* Completely change project name to yt-dlp (#85)Pccode662021-02-251-0/+259
* All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan