microsoft / BotBuilder-RealTimeMediaCalling

BotBuilder-RealTimeMediaCalling extends the BotBuilder to enable bots to engage in Skype audio-video calling. It provides real-time, programmable access to the voice, video, and screen sharing streams of a Skype call. The bot is a direct participant in a Skype 1:1 call.
MIT License
76 stars 36 forks source link

Determine Participant.Identity (DisplayName) knowing MediaSourceId #17

Open PavelGladko opened 7 years ago

PavelGladko commented 7 years ago

I have faced following issue:

In HueBot sample when I get OnAudioMediaReceived(object sender, AudioMediaReceivedEventArgs e) event fired event argument e.Buffer.ActiveSpeakers contains list of MediaSourceIds of active speakers in the conference.

Could you please clarify how it is possible to determine Participant.Identity or DisplayName knowing that participant MediaSourceId?

MalarGit commented 7 years ago

hi Pavel, huebot is a 1:1 bot. The other sample MeetingScreenshots is for conference scenarios and it shows how to tie the dominant speaker to the Participant. But currently the conference scenarios are Not Supported..

PavelGladko commented 7 years ago

@MalarGit Thnx.