Is there any way to take screenshot from webcam without any manual interaction? Well, ofc I found the following topic:
'?do=embed' frameborder='0' data-embedContent>>
Here's the simple script I wrote:
#include "Webcam.au3"
#include <WindowsConstants.au3>
#include <GUIConstants.au3>
$gui = GUICreate("Webcam", 640, 480, 100, 100)
$ope = _WebcamOpen($gui, 0, 0, 640, 480, 0) ;PORT GOES HERE! 0-3
GUISetState(@SW_SHOW)
Sleep(5000)
_WebcamClose($ope)
After starting the follow