Voice et bot modif
This commit is contained in:
parent
189d56026b
commit
7333a22bcd
10774 changed files with 634644 additions and 933308 deletions
21
venv/lib/python3.12/site-packages/av/index.pyi
Normal file
21
venv/lib/python3.12/site-packages/av/index.pyi
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
from typing import Iterator, overload
|
||||
|
||||
class IndexEntry:
|
||||
pos: int
|
||||
timestamp: int
|
||||
flags: int
|
||||
is_keyframe: bool
|
||||
is_discard: bool
|
||||
size: int
|
||||
min_distance: int
|
||||
|
||||
class IndexEntries:
|
||||
def __len__(self) -> int: ...
|
||||
def __iter__(self) -> Iterator[IndexEntry]: ...
|
||||
@overload
|
||||
def __getitem__(self, index: int) -> IndexEntry: ...
|
||||
@overload
|
||||
def __getitem__(self, index: slice) -> list[IndexEntry]: ...
|
||||
def search_timestamp(
|
||||
self, timestamp, *, backward: bool = True, any_frame: bool = False
|
||||
) -> int: ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue