Views
No views yet

| Speaker | Audio |
|---|---|
| 🇺🇸 Frank from Boston | |
| 🇺🇸 Jermaine from Oakland | |
| 🏴 Rory from Glasgow | |
| 🏴 Baddy from Liverpool | |
| 🇺🇸 Chelsea from New York | |
| 🇺🇸 Andrew from San Francisco |
1pip install kani-tts-2
2pip install -U "transformers==4.56.0"1from kani_tts import KaniTTS
2
3# Initialize model
4model = KaniTTS('repo/model')
5
6# Generate speech
7audio, text = model("Hello, world!")
8
9# Save to file
10model.save_audio(audio, "output.wav")1from kani_tts import KaniTTS, SpeakerEmbedder
2
3# Initialize models
4model = KaniTTS('repo/model')
5embedder = SpeakerEmbedder()
6
7# Extract speaker embedding from reference audio
8speaker_embedding = embedder.embed_audio_file("reference_voice.wav")
9
10# Generate speech with cloned voice
11audio, text = model(
12 "This is a cloned voice speaking!",
13 speaker_emb=speaker_embedding
14)
15model.save_audio(audio, "cloned_voice.wav")1
2@article{liquidai2025lfm2,
3 title={LFM2 Technical Report},
4 author={Liquid AI},
5 journal={arXiv preprint arXiv:2511.23404},
6 year={2025}
7}
8
9@inproceedings{emilialarge,
10 author={He, Haorui and Shang, Zengqiang and Wang, Chaoren and Li, Xuyuan and Gu, Yicheng and Hua, Hua and Liu, Liwei and Yang, Chen and Li, Jiaqi and Shi, Peiyang and Wang, Yuancheng and Chen, Kai and Zhang, Pengyuan and Wu, Zhizheng},
11 title={Emilia: A Large-Scale, Extensive, Multilingual, and Diverse Dataset for Speech Generation},
12 booktitle={arXiv:2501.15907},
13 year={2025}
14}
15
16@article{emonet_voice_2025,
17 author={Schuhmann, Christoph and Kaczmarczyk, Robert and Rabby, Gollam and Friedrich, Felix and Kraus, Maurice and Nadi, Kourosh and Nguyen, Huu and Kersting, Kristian and Auer, Sören},
18 title={EmoNet-Voice: A Fine-Grained, Expert-Verified Benchmark for Speech Emotion Detection},
19 journal={arXiv preprint arXiv:2506.09827},
20 year={2025}
21}
22
23@inproceedings{gengembre24_interspeech,
24 title = {Disentangling prosody and timbre embeddings via voice conversion},
25 author = {Nicolas Gengembre and Olivier {Le Blouch} and Cédric Gendrot},
26 year = {2024},
27 booktitle = {Interspeech 2024},
28 pages = {2765--2769},
29 doi = {10.21437/Interspeech.2024-207},
30 issn = {2958-1796},
31}1@software{kani_tts_2,
2 author = {Nineninesix},
3 title = {KaniTTS2: Text-to-Speech Model with Frame-level Position Encoding},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://github.com/nineninesix-ai/kani-tts-2}},
7 note = {Open-source TTS model}
8}