Views
No views yet
mlx-audio:pip install mlx-audiomlx_audio.tts.generate:1python -m mlx_audio.tts.generate \
2 --model LunaFox/DraculaFlow-TTS-mlx-8bit \
3 --text "We are smoking joint out of a custom carved bong." \
4 --voice dracula_flow \
5 --output_path ./output.wav--play flag:1python -m mlx_audio.tts.generate \
2 --model LunaFox/DraculaFlow-TTS-mlx-8bit \
3 --text "This shit ain't nothing to me man." \
4 --voice dracula_flow \
5 --play1from mlx_audio.tts.generate import generate_audio
2
3generate_audio(
4 text="We are smoking joint out of a custom carved bong.",
5 model="LunaFox/DraculaFlow-TTS-mlx-8bit",
6 voice="dracula_flow",
7 output_path="./output.wav",
8)