Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

JitsiTrackEvents.js 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. * The first argument is a number with audio level value in range [0, 1].
  8. * The second argument is a <tt>TraceablePeerConnection</tt> which is the peer
  9. * connection which measured the audio level (one audio track can be added
  10. * to multiple peer connection at the same time). This argument is optional for
  11. * local tracks for which we can measure audio level without the peer
  12. * connection (the value will be <tt>undefined</tt>).
  13. *
  14. * NOTE The second argument should be treated as library internal and can be
  15. * removed at any time.
  16. */
  17. export const TRACK_AUDIO_LEVEL_CHANGED = 'track.audioLevelsChanged';
  18. /**
  19. * The audio output of the track was changed.
  20. */
  21. export const TRACK_AUDIO_OUTPUT_CHANGED = 'track.audioOutputChanged';
  22. /**
  23. * A media track mute status was changed.
  24. */
  25. export const TRACK_MUTE_CHANGED = 'track.trackMuteChanged';
  26. /**
  27. * The video type("camera" or "desktop") of the track was changed.
  28. */
  29. export const TRACK_VIDEOTYPE_CHANGED = 'track.videoTypeChanged';
  30. /**
  31. * Indicates that the track is not receiving any data even though we expect it
  32. * to receive data (i.e. the stream is not stopped).
  33. */
  34. export const NO_DATA_FROM_SOURCE = 'track.no_data_from_source';