Go to file
2014-08-24 14:35:18 +00:00
inc fix member order createion/initialization 2014-08-24 14:35:18 +00:00
src split v4l2 interface from live555 FramedSource 2014-08-23 21:57:07 +00:00
CMakeLists.txt fix cpack configuration 2014-08-15 22:27:47 +00:00
LICENSE Initial commit 2013-11-09 15:08:44 -08:00
README.md update readme 2014-08-18 23:35:23 +02:00

h264_v4l2_rtspserver

This provide an RTSP server feed from an Video4Linux device that support H264 format.

It involves :

The RTSP server support :

  • RTP/UDP unicast
  • RTP/UDP multicast
  • RTP/TCP
  • RTP/RTSP/HTTP

License

Domain public

Build

cmake .
make

If it fails you will need to install libv4l-dev liblivemedia-dev.
If it still not work you will need to read Makefile.

Install

cpack .
dpkg -i h264_v4l2_rtspserver*.deb

Raspberry Pi

This RTSP server works on Raspberry Pi using :

Usage

./h264_v4l2_rtspserver [-v[v]][-m] [-P RTSP port][-P RTSP/HTTP port][-Q queueSize] [-M] [-W width] [-H height] [-F fps] [-O file] [device]
	 -v       : verbose 
	 -v v     : very verbose 
	 -Q length: Number of frame queue  (default 10)
	 -O file  : Dump capture to a file
	 RTSP options :
	 -m       : Enable multicast output
	 -P port  : RTSP port (default 8554)
	 -H port  : RTSP over HTTP port (default 8080)
	 V4L2 options :
	 -M       : V4L2 capture using memory mapped buffers (default use read interface)
	 -F fps   : V4L2 capture framerate (default 25)
	 -W width : V4L2 capture width (default 640)
	 -H height: V4L2 capture height (default 480)
	 device   : V4L2 capture device (default /dev/video0)