Skip to content Skip to sidebar Skip to footer

Uploading A Picture Taken From A Webcam

How do i upload a picture that i took from a webcam, i've found a code that worked (only on Chrome) i've used the code, and when clic on Take picture, i got the picture but i dont

Solution 1:

Build the SetInterval with snapshot() runing in 300ms.

The button only stop the interval, ;)


<button onclick="clearInterval(ivl)">TakePicture</button>

var ivl = setInterval(function(){  snapshot(); },300);

Post a Comment for "Uploading A Picture Taken From A Webcam"