소스 검색

Minor changes

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

+ 2 - 2
README.md

@@ -147,8 +147,8 @@ def my_start_callback():
 def my_stop_callback():
     print("Recording stopped!")
 
-recorder = AudioToTextRecorder(on_recording_started=my_start_callback,
-                               on_recording_finished=my_stop_callback)
+recorder = AudioToTextRecorder(on_recording_start=my_start_callback,
+                               on_recording_stop=my_stop_callback)
 ```