diff options
| author | faker <nspyia2002@gmail.com> | 2023-05-22 12:46:08 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-22 12:46:08 +0800 |
| commit | 75bce58469fea55b2a57adb0ad4dc97c7870731d (patch) | |
| tree | ff2df667d5b78583cb8705e82d4f540ad3c9edc4 /Scripts/transcribe.py | |
| parent | 2d544407e64bed9328ee493d3daa095b20445b52 (diff) | |
Fix accidental semicolon typo
Diffstat (limited to 'Scripts/transcribe.py')
| -rw-r--r-- | Scripts/transcribe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Scripts/transcribe.py b/Scripts/transcribe.py index 1d19543..c066957 100644 --- a/Scripts/transcribe.py +++ b/Scripts/transcribe.py @@ -252,7 +252,7 @@ def transcribeAudio(audio_state, model, use_cpu: bool): old_text = audio_state.text audio_state.text = string_matcher.matchStrings(audio_state.text, - text, window_size = 25); + text, window_size = 25) now = time.time() print("Transcription ({} seconds): {}".format( |
