您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

JitsiTrackEvents.js 783B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * The media track was removed to the conference.
  3. */
  4. export const LOCAL_TRACK_STOPPED = 'track.stopped';
  5. /**
  6. * Audio levels of a this track was changed.
  7. */
  8. export const TRACK_AUDIO_LEVEL_CHANGED = 'track.audioLevelsChanged';
  9. /**
  10. * The audio output of the track was changed.
  11. */
  12. export const TRACK_AUDIO_OUTPUT_CHANGED = 'track.audioOutputChanged';
  13. /**
  14. * A media track mute status was changed.
  15. */
  16. export const TRACK_MUTE_CHANGED = 'track.trackMuteChanged';
  17. /**
  18. * The video type("camera" or "desktop") of the track was changed.
  19. */
  20. export const TRACK_VIDEOTYPE_CHANGED = 'track.videoTypeChanged';
  21. /**
  22. * Indicates that the track is no receiving any data without reason(the
  23. * stream was stopped, etc)
  24. */
  25. export const NO_DATA_FROM_SOURCE = 'track.no_data_from_source';