Files @ a6b611f32cce
Branch filter:

Location: light9/stubs/moviepy/video/tools/subtitles.pyi

drewp@bigasterisk.com
rewrite Effect.ts to operate on new effect graphs
# Stubs for moviepy.video.tools.subtitles (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

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

class SubtitlesClip(VideoClip):
    subtitles: Any = ...
    textclips: Any = ...
    make_textclip: Any = ...
    start: int = ...
    duration: Any = ...
    end: Any = ...
    make_frame: Any = ...
    mask: Any = ...
    def __init__(self, subtitles: Any, make_textclip: Optional[Any] = ...) -> None: ...
    def in_subclip(self, t_start: Optional[Any] = ..., t_end: Optional[Any] = ...): ...
    def __iter__(self): ...
    def __getitem__(self, k: Any): ...
    def match_expr(self, expr: Any): ...
    def write_srt(self, filename: Any) -> None: ...

def file_to_subtitles(filename: Any): ...