Spaces:
Build error
Build error
Commit
·
c3f4b33
1
Parent(s):
86d0c47
Update app.py
Browse files
app.py
CHANGED
@@ -8,8 +8,8 @@ import os
|
|
8 |
|
9 |
def translate_speech_to_speech(input_audio):
|
10 |
# Save the input audio to a temporary file
|
11 |
-
input_file = "input_audio"
|
12 |
-
sf.write(input_file, input_audio[0],
|
13 |
|
14 |
# Language detection and translation code from the first code snippet
|
15 |
model = whisper.load_model("base")
|
|
|
8 |
|
9 |
def translate_speech_to_speech(input_audio):
|
10 |
# Save the input audio to a temporary file
|
11 |
+
input_file = "input_audio.wav"
|
12 |
+
sf.write(input_file, input_audio[0], input_audio[1])
|
13 |
|
14 |
# Language detection and translation code from the first code snippet
|
15 |
model = whisper.load_model("base")
|