Live data from Hacker News

Show HN: Bark.cpp, fast TTS model for multilingual realistic audio generation

github.com

1–4 of 4 posts

Re: Show HN: Bark.cpp, fast TTS model for multilingual realistic audio generation

#2
Hello!

I ported Suno AI's Bark text-to-speech model in C/C++ to allow fast, realistic, multilingual audio generation on the CPU.

Generating a 5-second audio with vanilla Bark takes 1 minute on a M1 Pro CPU. Using my port in C++ with ggml, it goes down to 15 seconds.

I aim to bring it down to a second to allow on-device real-time audio generation.

Re: Show HN: Bark.cpp, fast TTS model for multilingual realistic audio generation

#3
post #2

Hello! I ported Suno AI's Bark text-to-speech model in C/C++ to allow fast, realistic, multilingual audio generation on the CPU. Generating a 5-second audio with vanilla Bark takes 1 minute on a M1 Pro CPU. Using my port in C++ with ggml, it goes down to 15 seconds. I aim to bring it down to a second to allow on-device real-time audio generation.

Congrats that's pretty impressive !

Re: Show HN: Bark.cpp, fast TTS model for multilingual realistic audio generation

#4
post #2

Hello! I ported Suno AI's Bark text-to-speech model in C/C++ to allow fast, realistic, multilingual audio generation on the CPU. Generating a 5-second audio with vanilla Bark takes 1 minute on a M1 Pro CPU. Using my port in C++ with ggml, it goes down to 15 seconds. I aim to bring it down to a second to allow on-device real-time audio generation.

Congrats that's pretty impressive !

Thank you!