Files
@ 1241e61fcf74
Branch filter:
Location: light9/stubs/moviepy/video/tools/subtitles.pyi - annotation
1241e61fcf74
812 B
text/plain
old math bug where KC was sending to collector as fast as it could (100fps)
Ignore-this: 4541336057ab4c892c79d648f46c6f43
Ignore-this: 4541336057ab4c892c79d648f46c6f43
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.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): ...
|