Files @ b42cb1ea1d20
Branch filter:

Location: light9/stubs/moviepy/audio/io/AudioFileClip.pyi - annotation

drewp@bigasterisk.com
rm - we don't do a kernel module anymore; just usb api
# Stubs for moviepy.audio.io.AudioFileClip (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from moviepy.audio.AudioClip import AudioClip
from typing import Any

class AudioFileClip(AudioClip):
    filename: Any = ...
    reader: Any = ...
    fps: Any = ...
    duration: Any = ...
    end: Any = ...
    buffersize: Any = ...
    make_frame: Any = ...
    nchannels: Any = ...
    def __init__(self, filename: Any, buffersize: int = ..., nbytes: int = ..., fps: int = ...) -> None: ...
    def coreader(self): ...
    def close(self) -> None: ...