OmniVoice

This first-party Soniqo page documents OmniVoice from the local speech-swift / speech-core implementation. Hugging Face bundles are linked below after the integration notes.

Internal Page First

Landing cards and docs menus now point here first; source model and bundle links remain available from this page.

At a Glance

ModelOmniVoice
RoleMassively multilingual zero-shot voice-cloning TTS
BackendMLX int8 default bundle; fp16 bundle available
Output24 kHz mono waveform
Languages600+ languages
LicenseApache-2.0 upstream family
StatusProgrammatic speech-swift runtime used by Studio sidecar
Sourcek2-fsa OmniVoice
Swift productOmniVoiceTTS
CLI / runtimeProgrammatic runtime; not a primary speech speak engine yet

Use

The snippet below mirrors the current speech-swift API or command exposed by the repo.

import OmniVoiceTTS

let model = try await OmniVoiceTTSModel.fromPretrained()
let pcm = try model.generate(
    text: "A new sentence in the reference speaker's voice.",
    referenceAudio: URL(fileURLWithPath: "reference.wav"),
    referenceText: "This is the reference voice.",
    language: "en"
)

Model Links

Implementation Notes