webcamjs
webcamjs copied to clipboard
saving the continuous image into the local
We will need more than just a title... what is your goal? What have you tried?
I've done this with the code:
myRec = setInterval(myRecrd, 1000); //every second
function myRecrd(){
Webcam.snap( function(data_uri) {
Webcam.upload( data_uri, 'myPhpSaveScript.php', function(code, text) {
console.log('done');
} );
});
@danielecacone what do you put in the php file?