Views
No views yet
pip install f5-tts-mlxpython -m f5_tts_mlx.generate --text "The quick brown fox jumped over the lazy dog."1python -m f5_tts_mlx.generate \
2--text "The quick brown fox jumped over the lazy dog."
3--ref-audio /path/to/audio.wav
4--ref-text "This is the caption for the reference audio."ffmpeg -i /path/to/audio.wav -ac 1 -ar 24000 -sample_fmt s16 -t 10 /path/to/output_audio.wav1from f5_tts_mlx.generate import generate
2
3audio = generate(text = "Hello world.", ...)