frogcho123 commited on
Commit
c3f4b33
·
1 Parent(s): 86d0c47

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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" + os.path.splitext(input_audio.name)[1]
12
- sf.write(input_file, input_audio[0], 44100)
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")