aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader/f4m.py
Commit message (Collapse)AuthorAgeFilesLines
* [compat, networking] Deprecate old functions (#2861)coletdjnz2023-07-151-4/+4
| | | | Authored by: coletdjnz, pukkandan
* [downloader/fragment] HLS download can continue without first fragmentpukkandan2022-10-181-3/+1
| | | | Closes #5274
* [docs] Consistent use of `e.g.` (#4643)Lesmiscore2022-08-141-1/+1
| | | Authored by: Lesmiscore
* [compat] Remove deprecated functions from core codepukkandan2022-06-251-11/+8
|
* [compat] Remove more functionspukkandan2022-06-251-9/+8
| | | | Removing any more will require changes to a large number of extractors
* [f4m] Bugfixpukkandan2022-06-211-1/+2
|
* 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-7/+4
| | | | | | 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
* [dash,youtube] Download live from start to end (#888)The Hatsune Daishi2021-12-201-1/+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] Pass `info_dict` to `progress_hook`spukkandan2021-07-221-2/+2
|
* Completely change project name to yt-dlp (#85)Pccode662021-02-251-0/+439
* 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