cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
4271
Views
0
Helpful
4
Replies

Webex Room Kit Plus (Full screen self view on call initiate) Release CE9.6.2

Gelby
Level 1
Level 1

Hi all,

 

I have Webex Room Kit Plus with a P60 camera connected to dual displays. I would like to have selfview maximized at all times without user control/interference.

 

I was able to assign the second display to show selfview in full screen screen; however once I initiate a call then selfview goes to PIP mode and a gray background is on screen 2.

 

Note there is no content being presented on either end.

 

Thanks for your help.

4 Replies 4

Magnus Ohm
Cisco Employee
Cisco Employee

One way to solve this is to use a macro to get the device to behave the way you want.

const xapi = require('xapi');

xapi.event.on("OutgoingCallIndication", (event) => {
  xapi.command('Video Selfview Set', {
    FullscreenMode: 'On', 
    Mode: 'On',
    OnMonitorRole: 'Second'
  });
});

I have not tested this, but something like the above example. So when the macro detects that you are making a call it will set the selfview mode to on and in fullscreen on the second monitor. You could also change the outgoingcallindication to CallSuccessful which will make the unit do the same operation when the call is connected. 

 

OR

Experiment with the default selfview configuration:

*c xConfiguration Video Selfview Default FullscreenMode: Current
*c xConfiguration Video Selfview Default Mode: Current
*c xConfiguration Video Selfview Default OnMonitorRole: Current
*c xConfiguration Video Selfview Default PIPPosition: Current
*c xConfiguration Video Selfview OnCall Duration: 10
*c xConfiguration Video Selfview OnCall Mode: Off

/Magnus

Thank you, will try this next week and will let you know if that resolves the issue.

Tianjun Zhou
Level 1
Level 1
https://ip of Kit Plus Setup->Configuration->Video->Selfview FullscreenMode->On Mode->On OnMonitorRole->Second

Hi,

 

Those are the settings I have ;however once the call is initiated, self view goes to PIP mode.