syng/typings/mpv.pyi
Christoph Stahl 4c93964123
All checks were successful
Check / mypy (push) Successful in 54s
Check / ruff (push) Successful in 6s
First draft implementation for "next up" popup (See Issue #13)
2025-06-23 22:21:53 +02:00

57 lines
1.9 KiB
Python

from typing import Any, Callable, Iterable, Optional, Protocol
from PIL.Image import Image
class ShutdownError(Exception):
pass
class Unregisterable(Protocol):
def unregister(self) -> None: ...
class ImageOverlay:
overlay_id: int
def remove(self) -> None: ...
class MpvEvent:
def as_dict(self) -> dict[str, bytes]: ...
class MPV:
pause: bool
keep_open: str
image_display_duration: int
sub_pos: int
osd_width: str
osd_height: str
title: str
def __init__(
self,
ytdl: bool,
input_default_bindings: bool,
input_vo_keyboard: bool,
osc: bool,
*args: Any,
**kwargs: Any,
) -> None: ...
def terminate(self) -> None: ...
def play(self, file: str) -> None: ...
def playlist_append(self, file: str) -> None: ...
def wait_for_property(self, property: str) -> None: ...
def playlist_next(self) -> None: ...
def audio_add(self, file: str) -> None: ...
def wait_for_event(self, event: str) -> None: ...
def python_stream(
self, stream_name: str
) -> Callable[[Callable[[], Iterable[bytes]]], Unregisterable]: ...
def sub_add(self, file: str) -> None: ...
def create_image_overlay(self, image: Image, pos: tuple[int, int]) -> ImageOverlay: ...
def remove_overlay(self, overlay_id: int) -> None: ...
def observe_property(self, property: str, callback: Callable[[str, Any], None]) -> None: ...
def loadfile(
self, file: str, audio_file: Optional[str] = None, sub_file: Optional[str] = None
) -> None: ...
def register_event_callback(self, callback: Callable[..., Any]) -> None: ...
def __setitem__(self, key: str, value: str) -> None: ...
def __getitem__(self, key: str) -> str: ...
def command(self, command: str, *args: Any, **kwargs: Any) -> None: ...
def allocate_overlay_id(self) -> int: ...