kevinwang676 commited on
Commit
50ed16a
1 Parent(s): 1471f4c

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +71 -0
app.py ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+
5
+
6
+ gr.Markdown('''# <center>🥳 滔滔AI 🎶</center>
7
+ ## <center>🥰 - 滔滔AI,让有爱的AI滔滔不绝</center>
8
+ ### <center>🦄 - TalkTalkAI, let lovely AI brighten the future</center>
9
+ ''')
10
+
11
+ with gr.Tab("🤩 - 重磅首发:最强大的AI歌手界面"):
12
+
13
+ gr.Markdown('''
14
+ ## 🎶 AI歌手:今夜闻君琵琶语,如听仙乐耳暂明 🎸
15
+ ## 功能简介:歌声转换 + AI拟声 + 音乐视频一键制作 + 支持动态字幕与音浪特效 🌊
16
+ ##
17
+ # 点击这里进行访问:[滔滔AI](https://kevinwang676-test-1.hf.space) 🔮
18
+ ###
19
+ ### 诚挚欢迎所有优秀的音乐人与我们合作(联系方式见网站底部),我们将竭尽所能的提供AI声音方面的技术支持,并且免费为您制作行业内最高质量的AI歌手!🎙️
20
+ ### 滔滔AI期待与所有用户和合作者共同谱写AI时代的精彩乐章!💕
21
+ #
22
+ ''')
23
+
24
+
25
+ gr.HTML('''
26
+ <div class="footer">
27
+ <p>📧 - 联系我们:[email protected]
28
+ </p>
29
+
30
+ </div>
31
+ ''')
32
+
33
+ gr.HTML('''
34
+ <div class="footer">
35
+ <p>🖼️💕🎡 - 滔滔AI,为爱滔滔;有意清秋入衡霍,为君无尽写江天
36
+ </p>
37
+ </div>
38
+ ''')
39
+
40
+ with gr.Tab("🧸 - 发现更多有趣功能"):
41
+
42
+ gr.Markdown(
43
+ """
44
+ ## 😄 更多精彩,尽在滔滔AI
45
+
46
+ ## 🎙️ [Bark真实拟声](https://kevinwang676-bark-with-voice-cloning.hf.space):AI嘴替,为您在线发声
47
+ ## 🎶 [Sovits](https://kevinwang676-voice-cloning-for-bilibili.hf.space):AI歌手,为您一展歌喉
48
+
49
+ ## 🤖 [快速声音克隆](https://kevinwang676-voice-cloning-demo.hf.space):AI拟声,为您妙语连珠
50
+ #
51
+ """
52
+ )
53
+
54
+ gr.HTML('''
55
+ <div class="footer">
56
+ <p>📧 - 联系我们:[email protected]
57
+ </p>
58
+
59
+ </div>
60
+ ''')
61
+
62
+ gr.HTML('''
63
+ <div class="footer">
64
+ <p>🖼️💕🎡 - 滔滔AI,为爱滔滔;有意清秋入衡霍,为君无尽写江天
65
+ </p>
66
+
67
+ </div>
68
+ ''')
69
+
70
+
71
+ demo.launch(debug=True)