OmniVoice

यह Soniqo पेज स्थानीय speech-swift / speech-core implementation में OmniVoice को दस्तावेज़ करता है। Hugging Face bundle links integration notes के बाद दिए गए हैं।

पहले आंतरिक पेज

Landing cards और docs menus पहले इसी पेज पर आते हैं; source model और bundle links यहीं उपलब्ध रहते हैं।

सारांश

मॉडलOmniVoice
भूमिकाMassively multilingual zero-shot voice-cloning TTS
BackendMLX int8 default bundle; fp16 bundle available
Output24 kHz mono waveform
भाषाएँ600+ languages
लाइसेंसApache-2.0 upstream family
स्थितिProgrammatic speech-swift runtime used by Studio sidecar
Sourcek2-fsa OmniVoice
Swift productOmniVoiceTTS
CLI / runtimeProgrammatic runtime; not a primary speech speak engine yet

उपयोग

नीचे का snippet मौजूदा speech-swift API या command से मेल खाता है।

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"
)

मॉडल लिंक

implementation notes