Voice et bot modif
This commit is contained in:
parent
189d56026b
commit
7333a22bcd
10774 changed files with 634644 additions and 933308 deletions
19
venv/lib/python3.12/site-packages/av/device.pyi
Normal file
19
venv/lib/python3.12/site-packages/av/device.pyi
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
__all__ = ("DeviceInfo", "enumerate_input_devices", "enumerate_output_devices")
|
||||
|
||||
class DeviceInfo:
|
||||
name: str
|
||||
description: str
|
||||
is_default: bool
|
||||
media_types: list[str]
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
name: str,
|
||||
description: str,
|
||||
is_default: bool,
|
||||
media_types: list[str],
|
||||
) -> None: ...
|
||||
def __repr__(self) -> str: ...
|
||||
|
||||
def enumerate_input_devices(format_name: str) -> list[DeviceInfo]: ...
|
||||
def enumerate_output_devices(format_name: str) -> list[DeviceInfo]: ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue