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

JitsiTrackEvents.js 891B

1234567891011121314151617181920212223242526272829
  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. * Detects that no audio have been sent.
  11. */
  12. export const TRACK_AUDIO_NOT_WORKING = "track.audioNotWorking";
  13. /**
  14. * The audio output of the track was changed.
  15. */
  16. export const TRACK_AUDIO_OUTPUT_CHANGED = "track.audioOutputChanged";
  17. /**
  18. * A media track mute status was changed.
  19. */
  20. export const TRACK_MUTE_CHANGED = "track.trackMuteChanged";
  21. /**
  22. * The video type("camera" or "desktop") of the track was changed.
  23. */
  24. export const TRACK_VIDEOTYPE_CHANGED = "track.videoTypeChanged";
  25. /**
  26. * Indicates that the track is no receiving any data without reason(the
  27. * stream was stopped, etc)
  28. */
  29. export const NO_DATA_FROM_SOURCE = "track.no_data_from_source";