Kolja Beigel vor 1 Jahr
Ursprung
Commit
ddf96cfb6a
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  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)
 ```