Voice et bot modif
This commit is contained in:
parent
189d56026b
commit
7333a22bcd
10774 changed files with 634644 additions and 933308 deletions
|
|
@ -4,7 +4,6 @@ from typing import ClassVar, Literal, Sequence, cast, overload
|
|||
|
||||
from av.audio.codeccontext import AudioCodecContext
|
||||
from av.audio.format import AudioFormat
|
||||
from av.descriptor import Descriptor
|
||||
from av.subtitles.codeccontext import SubtitleCodecContext
|
||||
from av.video.codeccontext import VideoCodecContext
|
||||
from av.video.format import VideoFormat
|
||||
|
|
@ -53,7 +52,6 @@ class Codec:
|
|||
def is_decoder(self) -> bool: ...
|
||||
@property
|
||||
def mode(self) -> Literal["r", "w"]: ...
|
||||
descriptor: Descriptor
|
||||
@property
|
||||
def name(self) -> str: ...
|
||||
@property
|
||||
|
|
@ -61,7 +59,9 @@ class Codec:
|
|||
@property
|
||||
def long_name(self) -> str: ...
|
||||
@property
|
||||
def type(self) -> Literal["video", "audio", "data", "subtitle", "attachment"]: ...
|
||||
def type(
|
||||
self,
|
||||
) -> Literal["video", "audio", "data", "subtitle", "attachment", "unknown"]: ...
|
||||
@property
|
||||
def id(self) -> int: ...
|
||||
frame_rates: list[Fraction] | None
|
||||
|
|
@ -105,10 +105,6 @@ class Codec:
|
|||
VideoCodecContext | AudioCodecContext | SubtitleCodecContext | CodecContext
|
||||
): ...
|
||||
|
||||
class codec_descriptor:
|
||||
name: str
|
||||
options: tuple[int, ...]
|
||||
|
||||
codecs_available: set[str]
|
||||
|
||||
def dump_codecs() -> None: ...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue