KIMOSSINO commited on
Commit
ec3cde4
·
verified ·
1 Parent(s): 36abef4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -151,18 +151,18 @@ def text_to_speech_wrapper(text, language, voice_type):
151
  with gr.Blocks(title="معالج الصوت والترجمة", theme=gr.themes.Soft()) as demo:
152
  gr.Markdown("# معالج الصوت والترجمة متعدد اللغات")
153
 
154
- with gr.Tab("تحويل الوسائط إلى نص"):
155
  with gr.Row():
156
  media_input = gr.File(
157
  label="ملف صوتي أو فيديو",
158
- file_types=["audio/*", "video/*"]
159
  )
160
  source_lang = gr.Dropdown(
161
  choices=list(SUPPORTED_LANGUAGES.keys()),
162
  value="ar",
163
  label="لغة الملف"
164
  )
165
-
166
  transcribe_btn = gr.Button("تحويل إلى نص")
167
  transcribed_text = gr.Textbox(label="النص المستخرج", lines=5)
168
 
 
151
  with gr.Blocks(title="معالج الصوت والترجمة", theme=gr.themes.Soft()) as demo:
152
  gr.Markdown("# معالج الصوت والترجمة متعدد اللغات")
153
 
154
+ with gr.Tab("تحويل الوسائط إلى نص"):
155
  with gr.Row():
156
  media_input = gr.File(
157
  label="ملف صوتي أو فيديو",
158
+ file_types=[".mp3", ".wav", ".m4a", ".mp4", ".avi", ".mov", ".mkv"]
159
  )
160
  source_lang = gr.Dropdown(
161
  choices=list(SUPPORTED_LANGUAGES.keys()),
162
  value="ar",
163
  label="لغة الملف"
164
  )
165
+
166
  transcribe_btn = gr.Button("تحويل إلى نص")
167
  transcribed_text = gr.Textbox(label="النص المستخرج", lines=5)
168