How to use speaker view in zoom sdk windows

Description
I want to know is there any way to achieve speaker view using zoom sdk , i have using method SwtichToAcitveSpeaker but in return value getting SDKERR_NO_IMPL .
if you have any other way to achieve please provide me some demo .or any help would be helpful.
Thank You

Which Windows Client SDK version?
1.1 version i am not confirm

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. Go to initialize sdk
  2. click on full screen
  3. see this value is return

Device (please complete the following information):

  • Device: [fujitsu lifebook A series]
  • OS: [ Windows 10]

Hey @gaurav,

Thanks for using the dev forum!

Are you using the C++ version of the SDK or the C# version?

Thanks!
Michael

hello, the person here didn’t replied this… but i had a similar problem, i am using jwt app in my website… but by default there is only fullscreen button (missing speaker view/grid view buttons on the meeting)… i am using html/js for ZoomMtg and php for zoom requests.
this is part of my code:

function joinMeeting(sign){
ZoomMtg.init({
debug: true, //optional
showMeetingHeader: false, //option
disableInvite: false, //optional
disableCallOut: false, //optional
disableRecord: false, //optional
disableJoinAudio: false, //optional
audioPanelAlwaysOpen: true, //optional
showPureSharingContent: false, //optional
isSupportAV: true, //optional,
isSupportChat: true, //optional,
screenShare: true, //optional,
rwcBackup: ‘’, //optional,
videoDrag: true, //optional,
sharingMode: ‘both’, //optional,
videoHeader: true, //optional,
leaveUrl: ‘Soporte’,
success() {
ZoomMtg.join({
signature: sign,
apiKey: API_KEY,
meetingNumber: meeting_number,
userName: user_name,
passWord: meeting_password,
success() {
console.log(res)
},
error(res) {
console.log(res)
}
});
},
error(res) {
console.log(res);
}
});
}

thanks in advance :slight_smile:

Hey @socialmedia2,

Thanks for using the dev forum!

Are you using the Windows SDK, WebSDK, or API?

Thanks!
Michael

1 Like

i solved it thanks so much!

1 Like

Thanks for sharing it, it’s really awesome and very informative for everyone. Keep Sharing
And also you can see this page for more information.

1 Like

Hey @socialmedia2,

Awesome! I am happy to hear :slight_smile:

Please let us know if you run into anything else!

Thanks!
Michael

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