|
import gradio as gr |
|
|
|
with gr.Blocks(css="style.css") as demo: |
|
gr.Markdown("# 9-Volt Fan's RVC Voice Models") |
|
gr.Markdown("## I make RVC voice models! To request a voice model, ask in the discussions, and I'll be able to make it just for you.") |
|
|
|
gr.Markdown("# Example Voice Models:") |
|
gr.Markdown("### Made by using the [Pauline (Donkey Kong Bananza)](https://huggingface.co/9voltfan2009/Pauline-DonkeyKongBananza/tree/main) voice model:") |
|
gr.Audio(value="output - 2025-07-29T170308.496.wav", type="filepath") |
|
|
|
gr.Markdown("### Made by using the [Nikki Maxwell (Dork Diaries)](https://huggingface.co/9voltfan2009/NikkiMaxwell-DorkDiaries/tree/main) voice model:") |
|
gr.Audio(value="output - 2025-07-27T173109.397.wav", type="filepath") |
|
|
|
gr.Markdown("### Made by using the [MacKenzie Hollister (Dork Diaries)](https://huggingface.co/9voltfan2009/MacKenzieHollister-DorkDiaries/tree/main) voice model:") |
|
gr.Audio(value="output - 2025-07-21T181555.114.wav", type="filepath") |
|
|
|
gr.Markdown("### Made by using the [9-Volt (WarioWare)](https://huggingface.co/9voltfan2009/9-Volt-WarioWare/tree/main) voice model:") |
|
gr.Audio(value="output - 2025-07-20T133831.187.wav", type="filepath") |
|
|
|
gr.Markdown("## For more voice models, click [here](https://huggingface.co/collections/ark142/rvc-voice-models-681506cb89322fa7cb2e45fa)!") |
|
|
|
demo.launch() |