fix: strip transcription text

This commit is contained in:
Timothy J. Baek 2024-02-11 02:17:24 -08:00
parent 98496a7055
commit 2ef4fc1215
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ def transcribe(
transcript = "".join([segment.text for segment in list(segments)])
return {"text": transcript}
return {"text": transcript.strip()}
except Exception as e:
print(e)