Skip to content

Commit 0e9b8c9

Browse files
authored
[yt-dlp] Update to 2025.9.23 (#14776)
1 parent cef4154 commit 0e9b8c9

File tree

5 files changed

+3
-13
lines changed

5 files changed

+3
-13
lines changed

stubs/yt-dlp/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version = "2025.9.5"
1+
version = "2025.9.23"
22
upstream_repository = "https://github.com/yt-dlp/yt-dlp"
33
requires = ["websockets"]

stubs/yt-dlp/yt_dlp/__init__.pyi

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ class _Params(TypedDict, total=False):
140140
nopart: bool | None
141141
updatetime: bool | None
142142
writedescription: bool | None
143-
writeannotations: bool | None
144143
writeinfojson: bool | None
145144
allow_playlist_files: bool | None
146145
clean_infojson: bool | None
@@ -187,13 +186,9 @@ class _Params(TypedDict, total=False):
187186
socket_timeout: int | None
188187
bidi_workaround: bool | None
189188
debug_printtraffic: bool | None
190-
prefer_ffmpeg: bool | None
191-
include_ads: bool | None
192189
default_search: str | None
193190
dynamic_mpd: bool | None
194191
extractor_args: Mapping[str, Mapping[str, Any]] | None
195-
youtube_include_dash_manifest: bool | None
196-
youtube_include_hls_manifest: bool | None
197192
encoding: str | None
198193
extract_flat: bool | Literal["in_playlist", "discard", "discard_in_playlist"] | None
199194
live_from_start: bool | None
@@ -205,7 +200,6 @@ class _Params(TypedDict, total=False):
205200
postprocessors: Collection[Mapping[str, Any]]
206201
fixup: Literal["never", "warn", "detect_or_warn"] | None
207202
source_address: str | None
208-
call_home: bool | None
209203
sleep_interval_requests: int | None
210204
sleep_interval: int | None
211205
max_sleep_interval: int | None
@@ -215,7 +209,6 @@ class _Params(TypedDict, total=False):
215209
force_keyframes_at_cuts: bool | None
216210
list_thumbnails: str | None
217211
playlist_items: Collection[int] | None
218-
xattr_set_filesize: bool | None
219212
match_filter: NotRequired[Callable[[Mapping[str, Any], bool], str | None] | Callable[[Mapping[str, Any]], str | None] | None]
220213
color: _Color | None
221214
ffmpeg_location: str | None
@@ -240,9 +233,7 @@ class _Params(TypedDict, total=False):
240233
_warnings: Collection[str] | None
241234
autonumber_size: int | None
242235
autonumber_start: int | None
243-
cn_verification_proxy: str | None
244236
load_pages: bool | None
245-
youtube_print_sig_code: bool | None
246237
progress_hooks: list[Callable[[Mapping[str, Any]], object]]
247238
impersonate: ImpersonateTarget
248239

stubs/yt-dlp/yt_dlp/compat/__init__.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import datetime
12
import urllib
23
import urllib.request
34
import xml.etree.ElementTree as etree
@@ -8,5 +9,6 @@ class compat_HTMLParseError(ValueError): ...
89

910
def compat_etree_fromstring(text: str) -> etree.Element[str]: ...
1011
def compat_ord(c: str) -> int: ...
12+
def compat_datetime_from_timestamp(timestamp: float) -> datetime.datetime: ...
1113
def compat_expanduser(path: str) -> str: ...
1214
def urllib_req_to_req(urllib_request: urllib.request.Request) -> Request: ...

stubs/yt-dlp/yt_dlp/downloader/common.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class _FileDownloaderParams(TypedDict):
2929
throttledratelimit: int | None
3030
updatetime: bool
3131
verbose: bool
32-
xattr_set_filesize: bool
3332

3433
class FileDownloader:
3534
params: _FileDownloaderParams | None

stubs/yt-dlp/yt_dlp/downloader/external.pyi

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,5 @@ class FFmpegFD(ExternalFD):
5656
@classmethod
5757
def can_merge_formats(cls, info_dict: _InfoDict, params: Mapping[str, Any]) -> bool: ...
5858

59-
class AVconvFD(FFmpegFD): ...
60-
6159
def list_external_downloaders() -> list[str]: ...
6260
def get_external_downloader(external_downloader: str) -> type[ExternalFD]: ...

0 commit comments

Comments
 (0)