ek15072809 commited on
Commit
0905295
·
verified ·
1 Parent(s): e55b6a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -31,14 +31,14 @@ def transcribe(audio_path):
31
 
32
  demo = gr.Interface(
33
  fn=transcribe,
34
- inputs=gr.Audio(type="filepath", label="音声アップロード(mp3/wavなど)"),
35
  outputs=[
36
  gr.Textbox(label="文字起こし結果(タイムスタンプ付き)"),
37
  gr.Text(label="検出言語"),
38
  gr.Number(label="言語確信度")
39
  ],
40
- title="無料CPUで高速文字起こし(faster-whisper large-v3-turbo)",
41
- description="10分音声が2〜4分程度で処理可能(目安)"
42
  )
43
 
44
  if __name__ == "__main__":
 
31
 
32
  demo = gr.Interface(
33
  fn=transcribe,
34
+ inputs=gr.Audio(type="filepath", label="音声アップロード"),
35
  outputs=[
36
  gr.Textbox(label="文字起こし結果(タイムスタンプ付き)"),
37
  gr.Text(label="検出言語"),
38
  gr.Number(label="言語確信度")
39
  ],
40
+ title="Faster-Whisper",
41
+ description="音声よりも高速な文字起こしが可能です。"
42
  )
43
 
44
  if __name__ == "__main__":