XzJosh commited on
Commit
5a873bc
1 Parent(s): c35b0e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -12
app.py CHANGED
@@ -75,7 +75,7 @@ def tts_fn(text, speaker, sdp_ratio, noise_scale, noise_scale_w, length_scale):
75
 
76
  if __name__ == "__main__":
77
  parser = argparse.ArgumentParser()
78
- parser.add_argument("--model_dir", default="./logs/Bella/G_3100.pth", help="path of your model")
79
  parser.add_argument("--config_dir", default="./configs/config.json", help="path of your config file")
80
  parser.add_argument("--share", default=False, help="make link public")
81
  parser.add_argument("-d", "--debug", action="store_true", help="enable DEBUG-LEVEL log")
@@ -113,15 +113,15 @@ if __name__ == "__main__":
113
  with gr.Row():
114
  with gr.Column():
115
  gr.Markdown(value="""
116
- 【AI贝拉】在线语音合成(Bert-Vits2)\n
117
  作者:Xz乔希 https://space.bilibili.com/5859321\n
118
- 声音归属:贝拉kira https://space.bilibili.com/672353429\n
119
  Bert-VITS2项目:https://github.com/Stardust-minus/Bert-VITS2\n
120
  使用本模型请严格遵守法律法规!\n
121
  发布二创作品请标注本项目作者及链接、作品使用Bert-VITS2 AI生成!\n
122
  """)
123
  text = gr.TextArea(label="Text", placeholder="Input Text Here",
124
- value="哈喽大家好这里是诶嗖的队长以及舞蹈担当贝拉")
125
  speaker = gr.Dropdown(choices=speakers, value=speakers[0], label='Speaker')
126
  sdp_ratio = gr.Slider(minimum=0.1, maximum=1, value=0.2, step=0.01, label='SDP/DP混合比')
127
  noise_scale = gr.Slider(minimum=0.1, maximum=1, value=0.5, step=0.01, label='感情调节')
@@ -132,19 +132,20 @@ if __name__ == "__main__":
132
  text_output = gr.Textbox(label="Message")
133
  audio_output = gr.Audio(label="Output Audio")
134
  gr.Markdown(value="""
135
- 【AI向晚】https://huggingface.co/spaces/XzJosh/Ava-Bert-VITS2\n
136
- 【AI嘉然】https://huggingface.co/spaces/XzJosh/Diana-Bert-VITS2\n
137
- 【AI乃琳】https://huggingface.co/spaces/XzJosh/Eileen-Bert-VITS2\n
138
- 【AI珈乐】https://huggingface.co/spaces/XzJosh/Carol-Bert-VITS2\n
139
  【AI塔菲】https://huggingface.co/spaces/XzJosh/Taffy-Bert-VITS2\n
140
  【AI东雪莲】https://huggingface.co/spaces/XzJosh/Azuma-Bert-VITS2\n
141
  【AI奶绿】https://huggingface.co/spaces/XzJosh/LAPLACE-Bert-VITS2\n
142
- 【AI尼奈】https://huggingface.co/spaces/XzJosh/nine1-Bert-VITS2\n
143
- 【AI电棍】https://huggingface.co/spaces/XzJosh/otto-Bert-VITS2\n
144
  【AI七海】https://huggingface.co/spaces/XzJosh/Nana7mi-Bert-VITS2\n
145
  【AI阿梓】https://huggingface.co/spaces/XzJosh/Azusa-Bert-VITS2\n
146
- 【AI星瞳】https://huggingface.co/spaces/XzJosh/XingTong-Bert-VITS2\n
147
- 【AI剑魔】https://huggingface.co/spaces/XzJosh/Aatrox-Bert-VITS2\n
 
 
 
 
148
  """)
149
  btn.click(tts_fn,
150
  inputs=[text, speaker, sdp_ratio, noise_scale, noise_scale_w, length_scale],
 
75
 
76
  if __name__ == "__main__":
77
  parser = argparse.ArgumentParser()
78
+ parser.add_argument("--model_dir", default="./logs/ShanBao/G_4000.pth", help="path of your model")
79
  parser.add_argument("--config_dir", default="./configs/config.json", help="path of your config file")
80
  parser.add_argument("--share", default=False, help="make link public")
81
  parser.add_argument("-d", "--debug", action="store_true", help="enable DEBUG-LEVEL log")
 
113
  with gr.Row():
114
  with gr.Column():
115
  gr.Markdown(value="""
116
+ 【AI扇宝】在线语音合成(Bert-Vits2)\n
117
  作者:Xz乔希 https://space.bilibili.com/5859321\n
118
+ 声音归属:扇宝 https://space.bilibili.com/698438232\n
119
  Bert-VITS2项目:https://github.com/Stardust-minus/Bert-VITS2\n
120
  使用本模型请严格遵守法律法规!\n
121
  发布二创作品请标注本项目作者及链接、作品使用Bert-VITS2 AI生成!\n
122
  """)
123
  text = gr.TextArea(label="Text", placeholder="Input Text Here",
124
+ value="大家好啊,我是扇宝")
125
  speaker = gr.Dropdown(choices=speakers, value=speakers[0], label='Speaker')
126
  sdp_ratio = gr.Slider(minimum=0.1, maximum=1, value=0.2, step=0.01, label='SDP/DP混合比')
127
  noise_scale = gr.Slider(minimum=0.1, maximum=1, value=0.5, step=0.01, label='感情调节')
 
132
  text_output = gr.Textbox(label="Message")
133
  audio_output = gr.Audio(label="Output Audio")
134
  gr.Markdown(value="""
135
+ 【AI星瞳】https://huggingface.co/spaces/XzJosh/XingTong-Bert-VITS2\n
136
+ 【AI尼奈】https://huggingface.co/spaces/XzJosh/nine1-Bert-VITS2\n
137
+ 【AI剑魔】https://huggingface.co/spaces/XzJosh/Aatrox-Bert-VITS2\n
 
138
  【AI塔菲】https://huggingface.co/spaces/XzJosh/Taffy-Bert-VITS2\n
139
  【AI东雪莲】https://huggingface.co/spaces/XzJosh/Azuma-Bert-VITS2\n
140
  【AI奶绿】https://huggingface.co/spaces/XzJosh/LAPLACE-Bert-VITS2\n
 
 
141
  【AI七海】https://huggingface.co/spaces/XzJosh/Nana7mi-Bert-VITS2\n
142
  【AI阿梓】https://huggingface.co/spaces/XzJosh/Azusa-Bert-VITS2\n
143
+ 【AI嘉然】https://huggingface.co/spaces/XzJosh/Diana-Bert-VITS2\n
144
+ 【AI向晚】https://huggingface.co/spaces/XzJosh/Ava-Bert-VITS2\n
145
+ 【AI乃琳】https://huggingface.co/spaces/XzJosh/Eileen-Bert-VITS2\n
146
+ 【AI贝拉】https://huggingface.co/spaces/XzJosh/Bella-Bert-VITS2\n
147
+ 【AI珈乐】https://huggingface.co/spaces/XzJosh/Carol-Bert-VITS2\n
148
+ 【AI电棍】https://huggingface.co/spaces/XzJosh/otto-Bert-VITS2\n
149
  """)
150
  btn.click(tts_fn,
151
  inputs=[text, speaker, sdp_ratio, noise_scale, noise_scale_w, length_scale],