v4l2rtspserver/README.md

64 lines
1.8 KiB
Markdown
Raw Normal View History

2014-09-12 22:59:58 +00:00
[![Build status](https://travis-ci.org/mpromonet/h264_v4l2_rtspserver.png)](https://travis-ci.org/mpromonet/h264_v4l2_rtspserver)
2014-09-12 22:51:38 +00:00
2013-11-09 23:08:44 +00:00
h264_v4l2_rtspserver
====================
2013-11-09 23:34:56 +00:00
2014-09-13 15:33:45 +00:00
It is an RTSP server feed from an Video4Linux device that support H264 format.
2013-11-09 23:34:56 +00:00
2014-09-13 15:33:45 +00:00
It is based on :
2013-11-10 14:41:05 +00:00
- libv4l-dev to capture video frames
- liblivemedia-dev (http://www.live555.com) to implement RTSP server
2013-11-09 23:34:56 +00:00
The RTSP server support :
- RTP/UDP unicast
- RTP/UDP multicast
- RTP/TCP
- RTP/RTSP/HTTP
2013-11-09 23:44:03 +00:00
License
2014-08-18 21:35:23 +00:00
------------
2013-11-09 23:44:03 +00:00
Domain public
2014-09-13 15:33:45 +00:00
Requirements
------------
- liblivemedia-dev > live.2012.01.07 (need StreamReplicator)
- libv4l-dev
2013-11-09 23:44:03 +00:00
Build
2014-08-18 21:35:23 +00:00
-------
2014-08-15 22:33:02 +00:00
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.
2013-11-10 14:41:05 +00:00
2014-08-18 21:35:23 +00:00
Install
---------
cpack .
dpkg -i h264_v4l2_rtspserver*.deb
2013-11-10 14:41:05 +00:00
Raspberry Pi
------------
2014-08-18 21:35:23 +00:00
This RTSP server works on Raspberry Pi using :
- the unofficial V4L2 driver for the Raspberry Pi Camera Module http://www.linux-projects.org/modules/sections/index.php?op=viewarticle&artid=14
- the official V4L2 driver bcm2835-v4l2
2013-11-09 23:44:03 +00:00
2013-11-09 23:45:40 +00:00
Usage
-----
2014-08-18 21:35:23 +00:00
./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
2013-11-09 23:49:18 +00:00
-Q length: Number of frame queue (default 10)
-O file : Dump capture to a file
2014-08-18 21:35:23 +00:00
RTSP options :
2013-11-09 23:49:18 +00:00
-m : Enable multicast output
-P port : RTSP port (default 8554)
-H port : RTSP over HTTP port (default 8080)
2014-08-18 21:35:23 +00:00
V4L2 options :
-M : V4L2 capture using memory mapped buffers (default use read interface)
2013-11-09 23:49:18 +00:00
-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)
2014-08-18 21:35:23 +00:00