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

@ -1,5 +1,5 @@
from fractions import Fraction
from typing import Sequence, TypeVar, Union, overload
from typing import Sequence, TypeVar, overload
from av.audio import _AudioCodecName
from av.audio.stream import AudioStream
@ -39,6 +39,12 @@ class OutputContainer(Container):
options: dict[str, str] | None = None,
**kwargs,
) -> VideoStream | AudioStream | SubtitleStream: ...
def add_mux_stream(
self,
codec_name: str,
rate: Fraction | int | None = None,
**kwargs,
) -> Stream: ...
def add_stream_from_template(
self, template: _StreamT, opaque: bool | None = None, **kwargs
) -> _StreamT: ...
@ -49,7 +55,6 @@ class OutputContainer(Container):
self, codec_name: str | None = None, options: dict[str, str] | None = None
) -> DataStream: ...
def start_encoding(self) -> None: ...
def close(self) -> None: ...
def mux(self, packets: Packet | Sequence[Packet]) -> None: ...
def mux_one(self, packet: Packet) -> None: ...
@property