-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ShengqiangLi
authored and
ShengqiangLi
committed
Feb 1, 2024
1 parent
138e60a
commit dfa3b74
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
## WeTTS Web Demo | ||
|
||
* How to install? `pip install -r requirements.txt` | ||
* How to start? `python app.py` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright (c) 2024, Shengqiang Li ([email protected]) | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
import gradio as gr | ||
from wetts.cli.model import load_model | ||
|
||
|
||
def main(): | ||
title = "End-to-End Speech Synthesis in WeTTS | 基于 WeTTS 的端到端语音合成" | ||
description = "WeTTS Demo" | ||
inputs=[gr.Textbox(label="text")] | ||
phones = gr.Textbox(label="phones") | ||
audio = gr.Audio(label="audio") | ||
outputs = [phones, audio] | ||
gr.Interface( | ||
synthesis, | ||
title=title, | ||
description=description, | ||
inputs=inputs, | ||
outputs=outputs | ||
).launch(server_name='0.0.0.0', share=True) | ||
|
||
|
||
def synthesis(text): | ||
model = load_model() | ||
phones, audio = model.synthesis(text) | ||
sampling_rate = 16000 | ||
return ' '.join(phones), (sampling_rate, audio) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
git+https://github.com/wenet-e2e/wetts.git | ||
requests | ||
gradio |