Voice et bot modif

This commit is contained in:
pi 2026-06-16 17:09:34 +00:00
parent 189d56026b
commit 7333a22bcd
10774 changed files with 634644 additions and 933308 deletions

View file

@ -6,14 +6,14 @@ class VideoFormat:
has_palette: bool
is_bit_stream: bool
is_planar: bool
width: int
height: int
@property
def components(self) -> tuple[VideoFormatComponent, ...]: ...
@property
def is_rgb(self) -> bool: ...
@property
def is_bayer(self) -> bool: ...
width: int
height: int
components: tuple[VideoFormatComponent, ...]
def __init__(self, name: str, width: int = 0, height: int = 0) -> None: ...
def chroma_width(self, luma_width: int = 0) -> int: ...
def chroma_height(self, luma_height: int = 0) -> int: ...