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. But I don't know what technologies are available to achieve this.
The webservice is written in nodeJS
. The server is running on a raspberry pi 2
. I didn't put this question in the raspberry pi forum
because I think it's a general Linux/programming
issue.
Use a framework like livecam.
Webcam live-streaming solution using GStreamer and Node.js
This module allows you to stream your webcam over a network to be consumed by yuor browser and/or streamed to a file. See documentation for more inforamtion.
Usage:
The article here explains the whole process in the easiest way possible with working images. This is the Linux way of doing so, not any
node.js
script. I am stating here the main part of that.Connect with your Pi using the IP address. 'pi' & 'raspberry' is the default 'login as' and 'password' in Raspbian.
To update system type in the command
sudo apt-get update
andsudo apt-get upgrade
one at a time.Type in the command
sudo apt-get install motion
to start the installation.Now to make sure that the camera is correctly detected, type in the command
lsusb
and enter. You should see the name of your camera. If it is NOT there, then there is some problem in your camera or the camera is not supported in 'motion'.After the installation is complete, type in the command
sudo nano /etc/motion/motion.conf
and press enter.Then you have to change some settings in the
.conf
file. It might be difficult sometimes to find the settings but use Ctrl+W to find it. So follow the steps:Again type in the command
sudo nano /etc/default/motion
and press enter.Set
start_motion_daemon
to yes. Save and exit.First of all your have to restart the motion software. To do it type in the command
sudo service motion restart
and press enter.Again type in the command
sudo motion
and press enter. Now your server is ready.Now open up your browser. Type in the IP address of your raspberry Pi and the port number in this way:
192.168.0.107:8081
(First there is the IP address, then a ':', then the port number). Press Enter.Now you can see the Live feed coming from your webcam directly on your laptop or mobile or both at the same time. But, this is a local connection. To make it public set up your IP with a public one so that you it can be accessed from anywhere in the world.