Files
@ b42cb1ea1d20
Branch filter:
Location: light9/stubs/moviepy/video/tools/subtitles.pyi - annotation
b42cb1ea1d20
812 B
text/plain
rm - we don't do a kernel module anymore; just usb api
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): ...
|