04-02-2019 06:30 AM
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.
04-03-2019 07:53 AM
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
04-04-2019 02:32 AM
Thank you, will try this next week and will let you know if that resolves the issue.
04-03-2019 06:01 PM
04-04-2019 02:33 AM
Hi,
Those are the settings I have ;however once the call is initiated, self view goes to PIP mode.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide