Skip to main content
These events fire when media tracks start or stop, when screen sharing changes, and when audio level and face detection information is available. Support varies per event — see the badge on each section.

track-started

Fires when a participant’s media track begins. Use this to attach the track to a media element or update your UI when a new audio, video, or screen share track becomes available.
string
Always "track-started".
string
The ID of the call client instance that emitted this event.
DailyParticipant
The participant whose track started. See participants() for the full shape.
MediaStreamTrack
The MediaStreamTrack that started.
string
The track type. One of 'audio', 'video', 'screenAudio', 'screenVideo', or a custom track name.

track-stopped

Fires when a participant’s media track stops. Use this to remove a media element or update your UI when a track is no longer active.
string
Always "track-stopped".
string
The ID of the call client instance that emitted this event.
DailyParticipant
The participant whose track stopped. See participants() for the full shape.
MediaStreamTrack
The MediaStreamTrack that stopped.
string
The track type. One of 'audio', 'video', 'screenAudio', 'screenVideo', or a custom track name.

local-screen-share-started

Fires when the local participant’s screen share has started. Use this to update your UI to reflect that sharing is active.
string
Always "local-screen-share-started".
string
The ID of the call client instance that emitted this event.

local-screen-share-stopped

Fires when the local participant’s screen share has stopped. Use this to reset any screen-share UI state.
string
Always "local-screen-share-stopped".
string
The ID of the call client instance that emitted this event.

local-screen-share-canceled

Fires when the user dismisses the browser’s screen picker before ever starting a screen share.
Detection of this user action only works in Chrome. On Safari and Firefox, this action is reported as the user blocking the permission and a nonfatal screen-share-error event is sent instead.
string
Always "local-screen-share-canceled".
string
The ID of the call client instance that emitted this event.

local-audio-level

Fires at the frequency specified when starting the local audio level observer, providing the local participant’s current audio level. Use this to drive a volume indicator in your UI.
string
Always "local-audio-level".
string
The ID of the call client instance that emitted this event.
number
The local participant’s current audio level, from 0.0 (silent) to 1.0 (maximum).

remote-participants-audio-level

Fires at the frequency specified when starting the remote participants audio level observer, providing audio levels for all remote participants. Use this to drive per-participant volume indicators or highlight the active speaker.
string
Always "remote-participants-audio-level".
string
The ID of the call client instance that emitted this event.
object
A map of participant session_id to audio level (0.01.0). Only remote participants are included.

face-counts-updated

Fires when the face count in the local camera view has changed. Use this to identify how many people are visible in frame at a given time. This event is only emitted while the face-detection video processor is active. See updateInputSettings() for details on enabling it.
string
Always "face-counts-updated".
string
The ID of the call client instance that emitted this event.
number
The number of faces currently detected in the local camera view.

See also