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