Update app.py
Browse files
app.py
CHANGED
@@ -43,8 +43,9 @@ with gr.Blocks() as demo:
|
|
43 |
with gr.Row():
|
44 |
with gr.Column():
|
45 |
microphone = gr.Audio(sources="microphone", type="filepath", label="Microphone")
|
|
|
46 |
uploaded_audio = gr.Audio(label="Upload Audio File", type="filepath",sources="upload")
|
47 |
-
|
48 |
with gr.Column():
|
49 |
transcription = gr.Textbox(type="text", label="Transcription")
|
50 |
with gr.Row():
|
|
|
43 |
with gr.Row():
|
44 |
with gr.Column():
|
45 |
microphone = gr.Audio(sources="microphone", type="filepath", label="Microphone")
|
46 |
+
print("microphone source: ",microphone)
|
47 |
uploaded_audio = gr.Audio(label="Upload Audio File", type="filepath",sources="upload")
|
48 |
+
print('upload path: ',uploaded_audio)
|
49 |
with gr.Column():
|
50 |
transcription = gr.Textbox(type="text", label="Transcription")
|
51 |
with gr.Row():
|