How Do I Stream Video From My USB Webcam To A Remote HTML Page
问题 I want to create a program that will stream video from my USB webcam over the internet to a web page. Currently, I use a webservice that when triggered, calls fswebcam to capture an image, save to data store, convert to base64 binary and send that data over to the HTML page where it is rendered into the 'src' attribute of 'img'. The HTML page has JavaScript that calls this service once per second. As you can tell this is a horrible way to do this. I would rather have a proper stream if I can.