Chatterbox Multilingual

Esta página de Soniqo documenta Chatterbox Multilingual tal como está implementado en speech-swift / speech-core. Los enlaces a Hugging Face aparecen debajo de las notas de integración.

Primero página interna

Las tarjetas y menús apuntan primero aquí; los enlaces al modelo fuente y a los bundles siguen disponibles en esta página.

Resumen

ModeloChatterbox Multilingual
RolMultilingual zero-shot voice-cloning TTS
BackendMLX fp16 on Apple; LiteRT default-voice runtime in Speech Core
Salida24 kHz mono waveform
Idiomas23 languages
LicenciaMIT
EstadoMLX cloning runtime; LiteRT greedy/default-voice runtime for edge deployments
FuenteResemble AI Chatterbox
Producto SwiftChatterboxTTS
CLI / runtimeProgrammatic speech-swift runtime; LiteRT example CLI in speech-core/examples/litert

Uso

El fragmento siguiente refleja la API o el comando actual expuesto por speech-swift.

import ChatterboxTTS

let model = try await ChatterboxTTSModel.fromPretrained()
let pcm = try model.clone(
    referenceSamples: reference,
    sampleRate: 24_000,
    text: "The cloned voice now speaks a new sentence.",
    languageId: "en"
)

Enlaces del modelo

Notas de implementación