Go to file
2015-10-11 21:05:07 +02:00
inc accept short start code 2015-09-05 17:58:59 +02:00
src fix #11 do not try to open an output when parameter is not set + do not start mainloop if no source is available 2015-10-04 10:30:35 +02:00
v4l2wrapper@95a99a01ab upgrade v4l2wrapper 2015-09-06 20:07:24 +02:00
.gitignore add .gitignore 2015-02-15 10:40:37 +01:00
.gitmodules extract V4L2 wrapper 2015-01-22 19:42:08 +00:00
.travis.yml append notification_email to travis configuration for coverity plugins 2015-06-14 17:00:48 +02:00
CMakeLists.txt use relative path in cmake file 2015-10-11 21:05:07 +02:00
LICENSE Initial commit 2013-11-09 15:08:44 -08:00
README.md upgrade reade 2015-09-06 20:15:19 +02:00

Build status Coverity Scan Build Status

h264_v4l2_rtspserver

It is an RTSP server feed from an Video4Linux device that support H264 format.

It is based on :

The RTSP server support :

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

License

Domain public

Dependencies

  • liblivemedia-dev > live.2012.01.07 (need StreamReplicator)
  • libv4l-dev
  • liblog4cpp5-dev

Build

cmake .
make

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

Install

make install

Package

cpack .
dpkg -i h264_v4l2_rtspserver*.deb

Raspberry Pi

This RTSP server works on Raspberry Pi using :

Usage

./h264_v4l2_rtspserver [-v[v]] [-Q queueSize] [-O file] \
		       [-I interface] [-P RTSP port] [-T RTSP/HTTP port] [-m multicast url] [-u unicast url] [-M multicast addr] [-c] [-t timeout] \
		       [-r] [-s] [-W width] [-H height] [-F fps] [device1] [device2]
	 -v       : verbose
	 -vv      : very verbose
	 -Q length: Number of frame queue  (default 10)
	 -O output: Copy captured frame to a file or a V4L2 device
	 RTSP options :
	 -I addr  : RTSP interface (default autodetect)
	 -P port  : RTSP port (default 8554)
	 -T port  : RTSP over HTTP port (default 0)
	 -u url   : unicast url (default unicast)
	 -m url   : multicast url (default multicast)
	 -M addr  : multicast group:port (default is random_address:20000)
	 -c       : don't repeat config (default repeat config before IDR frame)
	 -t secs  : RTCP expiration timeout (default 65)
	 V4L2 options :
	 -r       : V4L2 capture using read interface (default use memory mapped buffers)
	 -s       : V4L2 capture using live555 mainloop (default use a separated reading thread)
	 -f       : V4L2 capture using current format (-W,-H,-F are ignored)
	 -W width : V4L2 capture width (default 640)
	 -H height: V4L2 capture height (default 480)
	 -F fps   : V4L2 capture framerate (default 25)
	 device   : V4L2 capture device (default /dev/video0)