Files @ 1bb30b0eaa38
Branch filter:

Location: light9/stubs/moviepy/video/io/VideoFileClip.pyi

drewp@bigasterisk.com
reformat
# Stubs for moviepy.video.io.VideoFileClip (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from moviepy.video.VideoClip import VideoClip
from typing import Any, Optional

class VideoFileClip(VideoClip):
    reader: Any = ...
    duration: Any = ...
    end: Any = ...
    fps: Any = ...
    size: Any = ...
    rotation: Any = ...
    filename: Any = ...
    make_frame: Any = ...
    mask: Any = ...
    audio: Any = ...
    def __init__(self, filename: Any, has_mask: bool = ..., audio: bool = ..., audio_buffersize: int = ..., target_resolution: Optional[Any] = ..., resize_algorithm: str = ..., audio_fps: int = ..., audio_nbytes: int = ..., verbose: bool = ..., fps_source: str = ...) -> None: ...
    def close(self) -> None: ...