mlx-community/chatterbox-multilingual-v3
52.5k
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
pip install -U mlx-audioCommand line
mlx_audio.tts.generate --model mlx-community/chatterbox-multilingual-v3 --text "Bonjour, voici Chatterbox sur MLX !" --ref_audio reference.wav --lang_code frPython
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",
)