Views
No views yet
pip install -U mlx-audio-plusmlx_audio.tts --model mlx-community/Chatterbox-TTS-fp16 --text "Hello, this is Chatterbox on MLX!" --ref_audio reference.wav --ref_text "."1from mlx_audio.tts.generate import generate_audio
2
3generate_audio(
4 text="Hello, this is Chatterbox on MLX!",
5 model="mlx-community/Chatterbox-TTS-fp16",
6 ref_audio="reference.wav",
7 ref_text=".",
8 file_prefix="output",
9)