Spaces:
Running
Running
NeuroSenko
commited on
Commit
•
7179888
1
Parent(s):
bb75822
added info about original repo
Browse files
README.md
CHANGED
@@ -10,6 +10,9 @@ pinned: false
|
|
10 |
license: wtfpl
|
11 |
---
|
12 |
|
|
|
|
|
|
|
13 |
# rus-edge-tts-webui
|
14 |
Русскоязычный интерфейс для edge tts
|
15 |
Код взят у https://github.com/ycyy/edge-tts-webui и локализован мной.
|
|
|
10 |
license: wtfpl
|
11 |
---
|
12 |
|
13 |
+
This space is just an HF-instance of this repository:
|
14 |
+
https://github.com/hinaichigo-fox/rus-edge-tts-webui
|
15 |
+
|
16 |
# rus-edge-tts-webui
|
17 |
Русскоязычный интерфейс для edge tts
|
18 |
Код взят у https://github.com/ycyy/edge-tts-webui и локализован мной.
|
app.py
CHANGED
@@ -58,6 +58,9 @@ with gr.Blocks(css="style.css", title="Преобразование текста
|
|
58 |
with gr.Column():
|
59 |
text = gr.TextArea(label="Текст", elem_classes="text-area")
|
60 |
btn = gr.Button("Сгенерировать", elem_id="submit-btn")
|
|
|
|
|
|
|
61 |
with gr.Column():
|
62 |
voices = gr.Dropdown(choices=[
|
63 |
"DmitryNeural-Руский(муж.)", "SvetlanaNeural-Русский(жен.)", "OstapNeural-Украинский(муж.)", "PolinaNeural-Украинский(жен.)"
|
|
|
58 |
with gr.Column():
|
59 |
text = gr.TextArea(label="Текст", elem_classes="text-area")
|
60 |
btn = gr.Button("Сгенерировать", elem_id="submit-btn")
|
61 |
+
gr.Markdown(
|
62 |
+
"Original repository: https://github.com/hinaichigo-fox/rus-edge-tts-webui"
|
63 |
+
)
|
64 |
with gr.Column():
|
65 |
voices = gr.Dropdown(choices=[
|
66 |
"DmitryNeural-Руский(муж.)", "SvetlanaNeural-Русский(жен.)", "OstapNeural-Украинский(муж.)", "PolinaNeural-Украинский(жен.)"
|