From 399e9e7efe5cf2ed38a6f51bb6deae4bbfdb9579 Mon Sep 17 00:00:00 2001 From: makaveli10 Date: Tue, 28 May 2024 11:18:35 +0530 Subject: [PATCH] Fix README typo Signed-off-by: makaveli10 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c83c274..53de8d6 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ client = TranscriptionClient( ``` It connects to the server running on localhost at port 9090. Using a multilingual model, language for the transcription will be automatically detected. You can also use the language option to specify the target language for the transcription, in this case, English ("en"). The translate option should be set to `True` if we want to translate from the source language to English and `False` if we want to transcribe in the source language. -- Trancribe an audio file: +- Transcribe an audio file: ```python client("tests/jfk.wav") ``` @@ -94,7 +94,7 @@ client("tests/jfk.wav") client() ``` -- TO transcribe from a RTSP stream: +- To transcribe from a RTSP stream: ```python client(rtsp_url="rtsp://admin:admin@192.168.0.1/rtsp") ```