Skip to content

Commit

Permalink
[runtime] Support webui (#204)
Browse files Browse the repository at this point in the history
Co-authored-by: ShengqiangLi <[email protected]>
  • Loading branch information
Shengqiang-Li and ShengqiangLi authored Feb 2, 2024
1 parent 138e60a commit 7db9884
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
4 changes: 4 additions & 0 deletions runtime/web/README.md
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`
44 changes: 44 additions & 0 deletions runtime/web/app.py
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()
3 changes: 3 additions & 0 deletions runtime/web/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
git+https://github.com/wenet-e2e/wetts.git
requests
gradio

0 comments on commit 7db9884

Please sign in to comment.