aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader/mhtml.py
Commit message (Collapse)AuthorAgeFilesLines
* [downloader/fragment] HLS download can continue without first fragmentpukkandan2022-10-181-2/+1
| | | | Closes #5274
* [mhtml, cleanup] Use imghdrpukkandan2022-07-311-9/+2
|
* Show name of downloader in verbose logpukkandan2022-05-111-2/+0
| | | | Closes #3703
* [cleanup] Minor fixes (See desc)pukkandan2022-05-091-2/+2
| | | | | | | | | | * [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] Misc fixespukkandan2022-04-291-1/+1
| | | | Closes #3565, https://github.com/yt-dlp/yt-dlp/issues/3514#issuecomment-1105944364
* [cleanup] Sort importspukkandan2022-04-121-6/+1
| | | | | | Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
* [cleanup] Upgrade syntaxpukkandan2022-04-121-3/+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
* [fragment] Read downloaded fragments only when needed (#3069)Lesmiscore (Naoya Ozaki)2022-03-151-1/+2
| | | Authored by: Lesmiscore
* [downloader/mhtml] Fix fragments with absolute urls (#3044)coletdev2022-03-131-1/+5
| | | Authored-by: coletdjnz
* Fix `--check-formats` for `mhtml`pukkandan2021-11-201-2/+2
| | | | Closes #1709
* [downloader] Pass `info_dict` to `progress_hook`spukkandan2021-07-221-2/+2
|
* [downloader/mhtml] Add new downloader (#343)felix2021-06-131-0/+202
This downloader is intended to be used for streams that consist of a timed sequence of stand-alone images, such as slideshows or thumbnail streams This can be used for implementing: https://github.com/ytdl-org/youtube-dl/issues/4974#issue-58006762 https://github.com/ytdl-org/youtube-dl/issues/4540#issuecomment-69574231 https://github.com/ytdl-org/youtube-dl/pull/11185#issuecomment-335554239 https://github.com/ytdl-org/youtube-dl/issues/9868 https://github.com/ytdl-org/youtube-dl/pull/14951 Authored by: fstirlitz