Voice et bot modif
This commit is contained in:
parent
189d56026b
commit
7333a22bcd
10774 changed files with 634644 additions and 933308 deletions
|
|
@ -1,3 +1,4 @@
|
|||
from collections.abc import Sequence
|
||||
from fractions import Fraction
|
||||
from typing import Iterator, Literal
|
||||
|
||||
|
|
@ -20,6 +21,10 @@ class VideoStream(Stream):
|
|||
def encode(self, frame: VideoFrame | None = None) -> list[Packet]: ...
|
||||
def encode_lazy(self, frame: VideoFrame | None = None) -> Iterator[Packet]: ...
|
||||
def decode(self, packet: Packet | None = None) -> list[VideoFrame]: ...
|
||||
def set_display_matrix(self, matrix: Sequence[int] | None) -> None: ...
|
||||
def set_display_rotation(
|
||||
self, degrees: float, hflip: bool = ..., vflip: bool = ...
|
||||
) -> None: ...
|
||||
|
||||
# from codec context
|
||||
format: VideoFormat
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue