123456789101112131415161718192021222324 |
- /**
- * The media track was removed to the conference.
- */
- export const LOCAL_TRACK_STOPPED = "track.stopped";
- /**
- * Audio levels of a this track was changed.
- */
- export const TRACK_AUDIO_LEVEL_CHANGED = "track.audioLevelsChanged";
- /**
- * Detects that no audio have been sent.
- */
- export const TRACK_AUDIO_NOT_WORKING = "track.audioNotWorking";
- /**
- * The audio output of the track was changed.
- */
- export const TRACK_AUDIO_OUTPUT_CHANGED = "track.audioOutputChanged";
- /**
- * A media track mute status was changed.
- */
- export const TRACK_MUTE_CHANGED = "track.trackMuteChanged";
- /**
- * The video type("camera" or "desktop") of the track was changed.
- */
- export const TRACK_VIDEOTYPE_CHANGED = "track.videoTypeChanged";
|