Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -22,6 +22,13 @@ def transcribe(audio_file):
|
|
22 |
|
23 |
with gr.Blocks(css=".container { max-width: 800px; margin: auto; } .gradio-app { background-color: #f0f0f0; } button { background-color: #4CAF50; color: white; }") as demo:
|
24 |
gr.Markdown("ASR 語音語料辨識修正工具")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
with gr.Row():
|
26 |
# 修改了 Audio 組件的宣告方式
|
27 |
audio_input = gr.Audio(label="上載你的音頻", type="filepath")
|
|
|
22 |
|
23 |
with gr.Blocks(css=".container { max-width: 800px; margin: auto; } .gradio-app { background-color: #f0f0f0; } button { background-color: #4CAF50; color: white; }") as demo:
|
24 |
gr.Markdown("ASR 語音語料辨識修正工具")
|
25 |
+
|
26 |
+
title="ASR 語音語料辨識修正工具",
|
27 |
+
description="""<a href='https://www.twman.org' target='_blank'>TonTon Huang Ph.D. @ 2024/04 </a><br>
|
28 |
+
<a href='https://blog.twman.org/2024/02/asr-tts.html' target='_blank'>那些ASR和TTS可能會踩的坑</a><br>
|
29 |
+
<a href='https://blog.twman.org/2021/04/ASR.html' target='_blank'>那些語音處理踩的坑</a><br>
|
30 |
+
<a href='https://blog.twman.org/2021/04/NLP.html' target='_blank'>那些自然語言處理踩的坑</a>""",
|
31 |
+
|
32 |
with gr.Row():
|
33 |
# 修改了 Audio 組件的宣告方式
|
34 |
audio_input = gr.Audio(label="上載你的音頻", type="filepath")
|