9voltfan2009 commited on
Commit
d133c03
·
verified ·
1 Parent(s): dbe21c0

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks(css="style.css") as demo:
4
+ gr.Markdown("# 9-Volt Fan's RVC Voice Models")
5
+ 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.")
6
+
7
+ gr.Markdown("# Example Voice Models:")
8
+ gr.Markdown("### Made by using the [Pauline (Donkey Kong Bananza)](https://huggingface.co/9voltfan2009/Pauline-DonkeyKongBananza/tree/main) voice model:")
9
+ gr.Audio(value="output - 2025-07-29T170308.496.wav", type="filepath")
10
+
11
+ gr.Markdown("### Made by using the [Nikki Maxwell (Dork Diaries)](https://huggingface.co/9voltfan2009/NikkiMaxwell-DorkDiaries/tree/main) voice model:")
12
+ gr.Audio(value="output - 2025-07-27T173109.397.wav", type="filepath")
13
+
14
+ gr.Markdown("### Made by using the [MacKenzie Hollister (Dork Diaries)](https://huggingface.co/9voltfan2009/MacKenzieHollister-DorkDiaries/tree/main) voice model:")
15
+ gr.Audio(value="output - 2025-07-21T181555.114.wav", type="filepath")
16
+
17
+ gr.Markdown("### Made by using the [9-Volt (WarioWare)](https://huggingface.co/9voltfan2009/9-Volt-WarioWare/tree/main) voice model:")
18
+ gr.Audio(value="output - 2025-07-20T133831.187.wav", type="filepath")
19
+
20
+ gr.Markdown("## For more voice models, click [here](https://huggingface.co/collections/ark142/rvc-voice-models-681506cb89322fa7cb2e45fa)!")
21
+
22
+ demo.launch()