Share Screen On Click WebRTC
function sharescreen(){ let displayMediaOptions = {video: true, audio: false};navigator.mediaDevices.getDisplayMedia(displayMediaOptions).then(function(stream){video_el.srcObject = stream;}) }
function sharescreen(){ let displayMediaOptions = {video: true, audio: false};navigator.mediaDevices.getDisplayMedia(displayMediaOptions).then(function(stream){video_el.srcObject = stream;}) }
This is Magento bug. Wrong paths to Windows are generated. The fixed fix is Magento 2.3.0 #/vendor/magento/framework/View/Element/Template/File/Validator.php:114 the string $realPath = $this->fileDriver->getRealPath($path); to replace $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path)); Magento…