Files
@ 3ae1e7f8db23
Branch filter:
Location: light9/stubs/moviepy/video/io/ffmpeg_reader.pyi - annotation
3ae1e7f8db23
1.1 KiB
text/plain
vidref playback smoothness, autodelete short clips, manual-delete clips, vidref keyboard shortcuts
Ignore-this: 6daccf686fd66561029f3252ed4dbafd
Ignore-this: 6daccf686fd66561029f3252ed4dbafd
3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d 3b2255e3576d | # Stubs for moviepy.video.io.ffmpeg_reader (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class FFMPEG_VideoReader:
filename: Any = ...
proc: Any = ...
fps: Any = ...
size: Any = ...
rotation: Any = ...
resize_algo: Any = ...
duration: Any = ...
ffmpeg_duration: Any = ...
nframes: Any = ...
infos: Any = ...
pix_fmt: Any = ...
depth: int = ...
bufsize: Any = ...
pos: int = ...
lastread: Any = ...
def __init__(self, filename: Any, print_infos: bool = ..., bufsize: Optional[Any] = ..., pix_fmt: str = ..., check_duration: bool = ..., target_resolution: Optional[Any] = ..., resize_algo: str = ..., fps_source: str = ...) -> None: ...
def initialize(self, starttime: int = ...) -> None: ...
def skip_frames(self, n: int = ...) -> None: ...
def read_frame(self): ...
def get_frame(self, t: Any): ...
def close(self) -> None: ...
def ffmpeg_read_image(filename: Any, with_mask: bool = ...): ...
def ffmpeg_parse_infos(filename: Any, print_infos: bool = ..., check_duration: bool = ..., fps_source: str = ...): ...
|