You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -172,10 +172,10 @@ class ReactPlayer(NoSSRComponent):
172
172
# Called when media starts or resumes playing after pausing or buffering.
173
173
on_playing: EventHandler[no_args_event_spec]
174
174
175
-
# Called while the video is loading. Contains played and loaded progress as a fraction, and playedSeconds and loadedSeconds in seconds. eg { played: 0.12, playedSeconds: 11.3, loaded: 0.34, loadedSeconds: 16.7 }
175
+
# Called while the video is loading only. Contains played and loaded progress as a fraction, and playedSeconds and loadedSeconds in seconds. eg { played: 0.12, playedSeconds: 11.3, loaded: 0.34, loadedSeconds: 16.7 }
176
176
on_progress: EventHandler[_on_progress_signature]
177
177
178
-
# Called when the media's current time changes.
178
+
# Called when the media's current time changes (~4Hz, use .throttle to limit calls to backend).
0 commit comments