Cloud automatic speech recognition supporting real-time streaming and batch transcription. Features custom vocabulary, automatic content redaction, speaker identification, channel separation, and a specialized medical variant.
Transcript will appear here in real-time as you speak…
Automatic PII redaction removes sensitive data from transcripts
Specialized medical model trained on clinical terminology
Custom vocabulary and language model adaptation for domain accuracy
Transcribe meetings in real-time with speaker identification and punctuation.
Analyze customer calls at scale with sentiment detection and keyword spotting.
Convert audio and video libraries into searchable text archives.
Provide real-time captions for broadcasts, presentations, and live events.
// Amazon Transcribe — Speech-to-Text
import { transcribe } from "@arkitekton/voice";
const result = await transcribe({
model: "vm-amz-003",
vendor: "amazon",
audio: audioFile,
language: "en",
options: {
punctuate: true,
diarize: true,
smart_format: true,
},
});
console.log("Transcript:", result.text);
console.log("Confidence:", result.confidence);Cloud-native speech services within the AWS ecosystem