webcamjs icon indicating copy to clipboard operation
webcamjs copied to clipboard

saving the continuous image into the local

Open murali7313 opened this issue 7 years ago • 3 comments

murali7313 avatar Jun 16 '17 05:06 murali7313

We will need more than just a title... what is your goal? What have you tried?

positlabs avatar Aug 15 '17 17:08 positlabs

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 avatar Sep 20 '17 13:09 danielecacone

@danielecacone what do you put in the php file?

BetaStacks avatar Dec 14 '17 22:12 BetaStacks