Yes. While calling shareScreen, pass the first parameter to the shareScreen function as an object which has a deviceId for an audio device.
Here's some sample code you can refer to.
yourSkylinkInstance.shareScreen(
{
deviceId: 'your-audio-deviceid'
},
function(err, success) { .... }
); |