Get active speaker to show "speaking" indicator for each user

Is there a way to get the active speaker so I can display an indicator to show which user is speaking?

Hey @joshua1

Maybe the active-speaker event will fit your needs.

client.on('active-speaker', (payload) => {
   // the first element of payload is the active speaker.
  console.log(`Active user:`,payload);
});

Thanks
Vic

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.