CoolFace
Modelpublic

mlx-community/chatterbox-multilingual-v3

sourceHugging Facemitupdated 2mo agoView on Hugging Face
5likes2.5kdownloads
Model Card

mlx-community/chatterbox-multilingual-v3

This is Chatterbox Multilingual V3, converted to MLX format from ResembleAI/chatterbox using mlx-audio version 0.4.7.

Note: This model requires the S3Tokenizer weights from mlx-community/S3TokenizerV2, which will be downloaded automatically.

Use with mlx-audio

bash
pip install -U mlx-audio

Command line

bash
mlx_audio.tts.generate --model mlx-community/chatterbox-multilingual-v3 --text "Bonjour, voici Chatterbox sur MLX !" --ref_audio reference.wav --lang_code fr

Python

python
from mlx_audio.tts.generate import generate_audio

generate_audio(
    text="Bonjour, voici Chatterbox sur MLX !",
    model="mlx-community/chatterbox-multilingual-v3",
    ref_audio="reference.wav",
    lang_code="fr",
    file_prefix="output",
)