Whisper Transcription
Description
Main transcription API for Whisper. Transcribe Audio Transcribe speech from an audio file using Whisper.
Usage
transcribe(
file,
model = "tiny",
language = "en",
task = "transcribe",
device = "auto",
dtype = "auto",
verbose = TRUE
)
Arguments
file: Path to audio file (WAV, MP3, etc.)model: Model name: “tiny”, “base”, “small”, “medium”, “large-v3”language: Language code (e.g., “en”, “es”). NULL for auto-detection.task: “transcribe” or “translate” (translate to English)device: Device: “auto”, “cpu”, “cuda”dtype: Data type: “auto”, “float16”, “float32”verbose: Print progress messages
Value
List with text, language, and metadata