소스 검색

Update to Silore and WebRTCVAD

Kolja Beigel 1 년 전
부모
커밋
66e7372bb6
1개의 변경된 파일14개의 추가작업 그리고 14개의 파일을 삭제
  1. 14 14
      README.md

+ 14 - 14
README.md

@@ -27,31 +27,31 @@ Basic usage:
 
 Start and stop of recording are manually triggered.
 
-    ```python
-    recorder.start()
-    recorder.stop()
-    print(recorder.text())
-    ```
+```python
+recorder.start()
+recorder.stop()
+print(recorder.text())
+```
 
 ### Automatic Recording
 
 Recording based on voice activity detection.
 
-    ```python
-    recorder = AudioToTextRecorder()
-    print(recorder.text())
-    ```  
+```python
+recorder = AudioToTextRecorder()
+print(recorder.text())
+```  
 
 ### Wakewords
 
 Keyword activation before detecting voice.
 
-    ```python
-    recorder = AudioToTextRecorder(wake_words="jarvis")
+```python
+recorder = AudioToTextRecorder(wake_words="jarvis")
 
-    print('Say "Jarvis" then speak.')
-    print(recorder.text())
-    ```
+print('Say "Jarvis" then speak.')
+print(recorder.text())
+```
 
 ## Installation