Как отобразить доминирующий динамик в первичном представлении в приложении быстрого запуска Android.
https://github.com/twilio/video-quickstart-android/tree/master/quickstart
Спасибо & С уважением Sylendra
Редактировать
Добавлен код:
public void OnDominantSpeakerChanged(Room room, RemoteParticipant remoteParticipant) {
if (remoteParticipant!=null) {
if (remoteParticipant.RemoteVideoTracks.Count > 0) {
RemoteVideoTrackPublication remoteVideoTrackPublication = remoteParticipant.RemoteVideoTracks[0];
remoteParticipantIdentity = remoteParticipant.Identity;
AddRemoteParticipantVideo(remoteVideoTrackPublication.RemoteVideoTrack);
}
}
}