You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JitsiTrackEvents.js 794B

12345678910111213141516171819202122232425262728
  1. var JitsiTrackEvents = {
  2. /**
  3. * A media track mute status was changed.
  4. */
  5. TRACK_MUTE_CHANGED: "track.trackMuteChanged",
  6. /**
  7. * Audio levels of a this track was changed.
  8. */
  9. TRACK_AUDIO_LEVEL_CHANGED: "track.audioLevelsChanged",
  10. /**
  11. * The media track was removed to the conference.
  12. */
  13. LOCAL_TRACK_STOPPED: "track.stopped",
  14. /**
  15. * The video type("camera" or "desktop") of the track was changed.
  16. */
  17. TRACK_VIDEOTYPE_CHANGED: "track.videoTypeChanged",
  18. /**
  19. * The audio output of the track was changed.
  20. */
  21. TRACK_AUDIO_OUTPUT_CHANGED: "track.audioOutputChanged",
  22. /**
  23. * Detects that no audio have been sent.
  24. */
  25. TRACK_AUDIO_NOT_WORKING: "track.audioNotWorking"
  26. };
  27. module.exports = JitsiTrackEvents;