Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

JitsiTrackEvents.js 779B

1234567891011121314151617181920212223242526
  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';