Files
faster-whisper/faster_whisper/__init__.py
2023-03-22 20:50:03 +01:00

10 lines
226 B
Python

from faster_whisper.audio import decode_audio
from faster_whisper.transcribe import WhisperModel
from faster_whisper.utils import format_timestamp
__all__ = [
"decode_audio",
"WhisperModel",
"format_timestamp",
]