Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ asr_pipe_whisper = pipeline(task="automatic-speech-recognition", model="openai/w
|
|
13 |
def transcribeFile(inputlang, audio_path : str) -> str:
|
14 |
#transcription = asr_pipe_audio2Text_Ge(audio_path)
|
15 |
#transcription = asr_pipe_whisper(audio_path, max_new_tokens=256, generate_kwargs={"task":"transcribe"})
|
16 |
-
|
17 |
transcription = asr_pipe_whisper(audio_path, chunk_length_s=10, stride_length_s=(4, 2))
|
18 |
elif inputlang == "German":
|
19 |
transcription = asr_pipe_audio2Text_Ge(audio_path, chunk_length_s=10, stride_length_s=(4, 2))
|
|
|
13 |
def transcribeFile(inputlang, audio_path : str) -> str:
|
14 |
#transcription = asr_pipe_audio2Text_Ge(audio_path)
|
15 |
#transcription = asr_pipe_whisper(audio_path, max_new_tokens=256, generate_kwargs={"task":"transcribe"})
|
16 |
+
if inputlang == "English":
|
17 |
transcription = asr_pipe_whisper(audio_path, chunk_length_s=10, stride_length_s=(4, 2))
|
18 |
elif inputlang == "German":
|
19 |
transcription = asr_pipe_audio2Text_Ge(audio_path, chunk_length_s=10, stride_length_s=(4, 2))
|