12 lines
350 B
Python

"""Infra (adapters) package for whisper_project.
This package exposes adapters and thin wrappers to the legacy helper modules
while we progressively refactor implementations into adapter classes.
"""
__all__ = ["process_video", "transcribe"]
from . import ffmpeg_adapter
from . import kokoro_adapter
__all__ = ["ffmpeg_adapter", "kokoro_adapter"]