Skip to content

Commit

Permalink
Fixed mac server error
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoroney committed Dec 9, 2024
1 parent a73bb86 commit c413a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Transcription-Server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def transcribe_audio(audio_file, kwargs, max_words, max_chars, sensitive_words):

else:
result = stable_whisper.transcribe_any(
inference, audio_file, inference_kwargs=kwargs, vad=True, force_order=True)
inference, audio_file, inference_kwargs=kwargs, vad=False)

result = modify_result(result, max_words, max_chars, sensitive_words)

Expand Down

0 comments on commit c413a0b

Please sign in to comment.