I'am developing a browser based application (React.js) specifically for my own custom touchscreen device. The OS of my touch screen device is window 10 enterprise edition.
I want to acheive screen sharing from laptop or mobile to my custom made touchscreen device.
I use
navigator.mediaDevices.enumerateDevices().then((devices) => { /**/})
To successfully list all my mediasource such as Camera, Captured card (for HDMI cable connection). It's work well and I can get the stream to assign to videoSource object.
However, I also want to do wireless screen sharing. So I install Airserver on my touchscreen device. I wish I could get its listed as one of my mediasource in javascript. So I can mirror the screen shared from other mobile device in browser (Chrome) using HTML video tags.
But there is no AirServer as a media source available.
I really appreciate in advance for any suggestion or tips sharing.
Thank you