2016-05-18 17:09:47 +00:00
[![Build status ](https://travis-ci.org/mpromonet/v4l2rtspserver.png )](https://travis-ci.org/mpromonet/v4l2rtspserver)
2015-03-25 21:46:11 +00:00
[![Coverity Scan Build Status ](https://scan.coverity.com/projects/4644/badge.svg )](https://scan.coverity.com/projects/4644)
2016-05-18 17:09:47 +00:00
[![Coverage Status ](https://coveralls.io/repos/github/mpromonet/v4l2rtspserver/badge.svg?branch=master )](https://coveralls.io/github/mpromonet/v4l2rtspserver?branch=master)
2016-01-31 10:11:25 +00:00
2014-09-12 22:51:38 +00:00
2016-05-18 17:09:47 +00:00
v4l2rtspserver
2013-11-09 23:08:44 +00:00
====================
2013-11-09 23:34:56 +00:00
2016-05-18 17:09:47 +00:00
This is an streamer feed from an Video4Linux device that support H264/JPEG or VP8 capture.
2013-11-09 23:34:56 +00:00
The RTSP server support :
- RTP/UDP unicast
- RTP/UDP multicast
- RTP/TCP
- RTP/RTSP/HTTP
2016-05-18 17:09:47 +00:00
The HTTP server support :
- HLS
- MPEG-DASH
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-11-22 14:35:59 +00:00
Dependencies
2014-09-13 15:33:45 +00:00
------------
2016-02-07 17:13:57 +00:00
- liblivemedia-dev [License LGPL ](http://www.live555.com/liveMedia/ ) > live.2012.01.07 (need StreamReplicator)
- liblog4cpp5-dev [License LGPL ](http://log4cpp.sourceforge.net/#license )
Download
--------
2016-02-07 17:16:10 +00:00
[Latest build ](https://github.com/mpromonet/h264_v4l2_rtspserver/releases/latest/ )
2014-09-13 15:33:45 +00:00
2016-06-04 17:08:46 +00:00
Before build
2014-08-18 21:35:23 +00:00
-------
2016-06-04 17:08:46 +00:00
The build try to install live555 package using apt-get, however in order to install live555 disabling check of port reuse, you can proceed like this:
2016-05-18 17:09:47 +00:00
2016-05-29 20:52:22 +00:00
wget http://www.live555.com/liveMedia/public/live555-latest.tar.gz -O - | tar xvzf -
2016-05-18 17:09:47 +00:00
cd live
2016-05-29 20:54:26 +00:00
./genMakefiles linux
2016-05-18 17:09:47 +00:00
sudo make CPPFLAGS=-DALLOW_RTSP_SERVER_PORT_REUSE=1 install
2016-06-04 17:08:46 +00:00
Build
-------
cmake . & & make
If it fails you will need to install liblivemedia-dev liblog4cpp5-dev.
If it still not work you will need to read Makefile.
2014-08-18 21:35:23 +00:00
Install
---------
2015-09-05 16:09:13 +00:00
make install
2015-10-17 22:22:34 +00:00
Build Package
-------------
2014-08-18 21:35:23 +00:00
cpack .
2016-06-04 17:08:46 +00:00
dpkg -i v4l2rtspserver*.deb
2014-08-18 21:35:23 +00:00
2015-10-17 22:22:34 +00:00
Using Raspberry Pi Camera
-------------------------
This RTSP server works using Raspberry Pi camera with :
2014-08-18 21:35:23 +00:00
- the unofficial V4L2 driver for the Raspberry Pi Camera Module http://www.linux-projects.org/modules/sections/index.php?op=viewarticle& artid=14
2015-01-22 21:37:35 +00:00
2015-01-22 21:30:27 +00:00
sudo uv4l --driver raspicam --auto-video_nr --encoding h264
2014-08-18 21:35:23 +00:00
- the official V4L2 driver bcm2835-v4l2
2015-01-22 21:37:35 +00:00
2015-01-22 21:30:27 +00:00
sudo modprobe -v bcm2835-v4l2
2013-11-09 23:44:03 +00:00
2015-10-17 22:22:34 +00:00
Using with v4l2loopback
-----------------------
For camera providing uncompress format [v4l2tools ](https://github.com/mpromonet/v4l2tools ) can compress the video to an intermediate virtual V4L2 device [v4l2loopback ](https://github.com/umlaeute/v4l2loopback ):
2016-06-04 17:08:46 +00:00
/dev/video0 (camera device)-> v4l2compress_h264 -> /dev/video10 (v4l2loopback device) -> v4l2rtspserver
2015-10-17 22:22:34 +00:00
This workflow could be set using :
modprobe v4l2loopback video_nr=10
v4l2compress_h264 /dev/video0 /dev/video10 &
2016-06-04 17:08:46 +00:00
v4l2rtspserver /dev/video10 &
2015-10-17 22:22:34 +00:00
2013-11-09 23:45:40 +00:00
Usage
-----
2016-06-04 17:08:46 +00:00
./v4l2rtspserver [-v[v]] [-Q queueSize] [-O file] \
2016-05-24 19:45:08 +00:00
[-I interface] [-P RTSP port] [-p RTSP/HTTP port] [-m multicast url] [-u unicast url] [-M multicast addr] [-c] [-t timeout] \
2015-09-05 16:09:13 +00:00
[-r] [-s] [-W width] [-H height] [-F fps] [device1] [device2]
2015-01-22 21:30:27 +00:00
-v : verbose
-vv : very verbose
2013-11-09 23:49:18 +00:00
-Q length: Number of frame queue (default 10)
2015-01-22 21:30:27 +00:00
-O output: Copy captured frame to a file or a V4L2 device
2014-08-18 21:35:23 +00:00
RTSP options :
2015-07-07 19:06:11 +00:00
-I addr : RTSP interface (default autodetect)
2013-11-09 23:49:18 +00:00
-P port : RTSP port (default 8554)
2016-05-24 19:45:08 +00:00
-p port : RTSP over HTTP port (default 0)
2015-08-01 16:39:46 +00:00
-u url : unicast url (default unicast)
-m url : multicast url (default multicast)
2015-09-06 18:15:19 +00:00
-M addr : multicast group:port (default is random_address:20000)
2015-08-01 16:39:46 +00:00
-c : don't repeat config (default repeat config before IDR frame)
2015-05-03 21:38:49 +00:00
-t secs : RTCP expiration timeout (default 65)
2016-05-24 19:45:08 +00:00
-T : send Transport Stream instead of elementary Stream
-S secs : HTTP segment duration (enable HLS & MPEG-DASH)
2014-08-18 21:35:23 +00:00
V4L2 options :
2015-03-14 16:37:26 +00:00
-r : V4L2 capture using read interface (default use memory mapped buffers)
2016-05-24 19:45:08 +00:00
-w : V4L2 capture using write interface (default use memory mapped buffers)
2015-03-14 16:37:26 +00:00
-s : V4L2 capture using live555 mainloop (default use a separated reading thread)
2016-05-24 19:45:08 +00:00
-f : V4L2 capture using current capture format (-W,-H,-F are ignored)
-fformat : V4L2 capture using format (-W,-H,-F are used)
2013-11-09 23:49:18 +00:00
-W width : V4L2 capture width (default 640)
-H height: V4L2 capture height (default 480)
2015-09-05 16:09:13 +00:00
-F fps : V4L2 capture framerate (default 25)
2013-11-09 23:49:18 +00:00
device : V4L2 capture device (default /dev/video0)
2015-01-25 18:31:18 +00:00
2016-06-04 17:08:46 +00:00
Receiving HTTP streams
-----------------------
When v4l2rtspserver is started with '-S' arguments it give access to streams through HTTP. These streams could be reveced :
* for MPEG-DASH with :
MP4Client http://..../unicast.mpd
* for HLS with :
vlc http://..../unicast.m3u8
gstreamer-launch-1.0 playbin uri=http://.../unicast.m3u8