I have a screen where I am capturing video from camera, taking a snap. I also have a file input and I want to set this option to the captured image from the camera, i.e..snap.
I do not want to store the snap as a cookie and later retrieve it, as it will later make the users computer heavy and will require cleaning everytime.
so the code is
<input type="file" id="visitorphoto" name="visitorPhoto" accept="image/*" capture>
which is according to this w3 document.
Any Ideas using javascript?
Thanks, Abhijeet.