sakasegawa commited on
Commit
ac8601f
1 Parent(s): a169690
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -262,7 +262,7 @@ def create_transcription_with_speaker(openai_key, main_audio, reference_audio_1,
262
  return output_by_segment1, output_by_segment2
263
 
264
  inputs = [
265
- gr.Textbox(lines=1, label="openai_key"),
266
  gr.Audio(type="filepath", label="メイン音声ファイル"),
267
  gr.Audio(type="filepath", label="話者 (1) 参考音声ファイル"),
268
  gr.Textbox(lines=1, label="話者 (1) の名前"),
@@ -280,7 +280,7 @@ app = gr.Interface(
280
  inputs=inputs,
281
  outputs=outputs,
282
  title="話者アサイン機能付き書き起こしアプリ",
283
- description="音声ファイルをアップロードすると、各話者の名前がアサインされた文字起こしが作成されます。"
284
  )
285
 
286
  app.launch(debug=True)
 
262
  return output_by_segment1, output_by_segment2
263
 
264
  inputs = [
265
+ gr.Textbox(lines=1, label="openai_key", type="password"),
266
  gr.Audio(type="filepath", label="メイン音声ファイル"),
267
  gr.Audio(type="filepath", label="話者 (1) 参考音声ファイル"),
268
  gr.Textbox(lines=1, label="話者 (1) の名前"),
 
280
  inputs=inputs,
281
  outputs=outputs,
282
  title="話者アサイン機能付き書き起こしアプリ",
283
+ description="音声ファイルをアップロードすると、各話者の名前がアサインされた文字起こしが作成されます。参考: https://huggingface.co/spaces/vumichien/Whisper_speaker_diarization"
284
  )
285
 
286
  app.launch(debug=True)