web - Vb.Net Take snapshot of streaming webcam video (over internet) -
i have video streaming of security webcam. i'd need take screenshots @ high possible resolution @ regular intervals.
option 1 fullscreen video , take regular screenshots , save them i'd have computer busy , couldnt work on anymore.
option 2 somehow capture webstream, , extract screenshot stream.
are there better otpions? how capture screenshots stream?
thanks
here code can taking screen shot , automatically saving it. option 1.
dim screenshot new bitmap(screen.primaryscreen.bounds.width, screen.primaryscreen.bounds.height, pixelformat.format32bppargb) dim g = graphics.fromimage(screenshot) g.copyfromscreen(0, 0, 0, 0, screenshot.size) g.dispose() screenshot.save("c:\test.bmp")
you put in timer or , add date or incremented number end of file name.
for option 2 might have resort third party program able want. far know, way capture of screen have visible. maybe i'll poke around @ it. you've got me curious now.
Comments
Post a Comment