Files
@ 1dc96b97a544
Branch filter:
Location: light9/stubs/moviepy/video/tools/subtitles.pyi - annotation
1dc96b97a544
812 B
text/plain
two zoomed spectrogram views in asco
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): ...
|