aleksfinn23 commited on
Commit
4671ef8
·
verified ·
1 Parent(s): 70a1cf7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -95,8 +95,8 @@ demo = gr.Blocks(theme=gr.themes.Ocean())
95
  mf_transcribe = gr.Interface(
96
  fn=transcribe,
97
  inputs=[
98
- gr.Audio(sources="microphone", type="filepath"),
99
- gr.Radio(["transcribe", "translate"], label="Task", value="transcribe"),
100
  ],
101
  outputs="text",
102
  title="Транскрибация аудио с помощью модели Whisper 3 от OpenAI",
@@ -109,8 +109,8 @@ mf_transcribe = gr.Interface(
109
  file_transcribe = gr.Interface(
110
  fn=transcribe,
111
  inputs=[
112
- gr.Audio(sources="upload", type="filepath", label="Audio file"),
113
- gr.Radio(["transcribe", "translate"], label="Task", value="transcribe"),
114
  ],
115
  outputs="text",
116
  title="Транскрибация аудио с помощью модели Whisper 3 от OpenAI",
@@ -124,13 +124,13 @@ file_transcribe = gr.Interface(
124
  yt_transcribe = gr.Interface(
125
  fn=yt_transcribe,
126
  inputs=[
127
- gr.Textbox(lines=1, placeholder="Paste the URL to a YouTube video here", label="YouTube URL"),
128
- gr.Radio(["transcribe", "translate"], label="Task", value="transcribe")
129
  ],
130
  outputs=["html", "text"],
131
  title="Транскрибация YouTube с помощью модели Whisper 3 от OpenAI",
132
  description=(
133
- "Текстовая транскрибация видео с Yuoutube нажатием одной кнопки! Попробуйте сейчас!"
134
 
135
  ),
136
  allow_flagging="never",
 
95
  mf_transcribe = gr.Interface(
96
  fn=transcribe,
97
  inputs=[
98
+ gr.Audio(sources="Микрофон", type="filepath"),
99
+ gr.Radio(["Распознать"], label="Task", value="transcribe"),
100
  ],
101
  outputs="text",
102
  title="Транскрибация аудио с помощью модели Whisper 3 от OpenAI",
 
109
  file_transcribe = gr.Interface(
110
  fn=transcribe,
111
  inputs=[
112
+ gr.Audio(sources="Загрузить", type="filepath", label="Audio file"),
113
+ gr.Radio(["Распознать"], label="Task", value="transcribe"),
114
  ],
115
  outputs="text",
116
  title="Транскрибация аудио с помощью модели Whisper 3 от OpenAI",
 
124
  yt_transcribe = gr.Interface(
125
  fn=yt_transcribe,
126
  inputs=[
127
+ gr.Textbox(lines=1, placeholder="Вставьте ссылку на YouTube видео сюда", label="YouTube URL"),
128
+ gr.Radio(["Распознать"], label="Task", value="transcribe")
129
  ],
130
  outputs=["html", "text"],
131
  title="Транскрибация YouTube с помощью модели Whisper 3 от OpenAI",
132
  description=(
133
+ "Текстовая транскрибация видео с Youtube нажатием одной кнопки! Попробуйте сейчас!"
134
 
135
  ),
136
  allow_flagging="never",