Detect active users during a meeting

Hello,
Can someone provide some sample code for the method below. I’m trying to detect the active users (users who are talking) during a zoom meeting.

AudioCtrlEvent->onUserActiveAudioChange

See below the member function documentation.

https://zoom.github.io/zoom-sdk-windows/class_i_meeting_audio_ctrl_event.html#af1c8eaef123247b389046c1993759071

Hi @umeta,

We do not have the exact sample code for onUserActiveAudioChange in the demo app, but you could refer to the implementation of onUserAudioStatusChange, subscribe to the event, and the callback will be trigger when the active user’s audio has changed:https://github.com/zoom/zoom-sdk-windows/blob/69f8ff8310a4e52fd26be42d7547854484600940/demo/sdk_demo/EventMgr.cpp#L249

Thanks!