Streaming Video Using gstreamer

gstreamer allows you to stream video with very low latency – a problem with VLC currently.  The catch is that you need need gstreamer on the client used to view the stream.  gstreamer is a development framework not a media player and there isn't a way to stream so that common players such as VLC can […]

Read More

Streaming Video Using VLC Player

Installing VLC Player sudo apt-get install vlc   Streaming The Camera Video Using RTSP Enter the following command to start the streaming: raspivid -o – -t 0 -n | cvlc -vvv stream:///dev/stdin –sout '#rtp{sdp=rtsp://:8554/}' :demux=h264 raspivid is used to capture the video "-o -" causes the output to be written to stdout "-t 0" sets […]

Read More

Using The Camera

Documentation Camera Board Documentation Connecting The Camera Ensure the Raspberry Pi board is not powered and connect the camera cable as shown: Setup For Camera Use Ensure the operating system is up to date by using these two commands: sudo apt-get update sudo apt-get upgrade Then run the config tool: sudo raspi-config Select the 'Enable […]

Read More