Identify Active Speaker on Electron

@tommy,
Thanks for the attention.
I’m using the Windows SDK (Wrapper) so we can see if this might work for us.

I’m using

CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap().GetMeetingAudioController().Add_CB_onUserActiveAudioChange(onUserActiveAudioChangeAsync);

To get the active user, but the parameter is a uint lstActiveAudio

void onUserActiveAudioChangeAsync(uint lstActiveAudio)

I got with:

IUserInfoDotNetWrap user = CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap().
GetMeetingParticipantsController().GetUserByUserID(userid);

Thanks for the help!