getting video from your cam by Remode in your web pages
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!DOCTYPE html> <html> <body> <img id="myimg" src="http://q8edvppv.synaptica.it:2222/?keycode=takepicture" width="500px" height="500px"> <script> var counter=0; var prev2 = new Date(); function myFunction() { document.getElementById('myimg').src ="http://q8edvppv.synaptica.it:2222/?keycode=takepicture&Time=" + counter; //prev2.getMilliseconds(); counter = counter+1; console.log('CIAOOOO'+counter); } setInterval(function(){myFunction();}, 1500); </script> </body> </html> |