diff --git a/README.md b/README.md index 34d9761..dda1cff 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,6 @@ A collection of delicious docker recipes. ## Affiliates -[![](https://bandwagonhost.com/templates/organicbandwagon/images/logo.png)](https://bandwagonhost.com/aff.php?aff=21106) [![](https://www.vultr.com/media/banner_1.png)](https://www.vultr.com/?ref=6821947) ## Todo @@ -152,16 +151,16 @@ A collection of delicious docker recipes. - [x] ffmpeg-arm - [x] ffserver :beetle: - [x] icecast -- [x] live555 +- [x] live555 :camera: - [x] minidlna - [x] mpd - [x] murmur -- [x] openmeetings +- [x] openmeetings :camera: - [x] plex :moneybag: - [x] red5 :+1: - [x] red5-arm :construction: - [x] rtmp-client-arm :+1: -- [x] rtmp-server +- [x] rtmp-server :camera: - [x] shairplay-arm - [x] shoutcast - [x] tesseract @@ -368,6 +367,7 @@ A collection of delicious docker recipes. - [x] jira - [x] amancevice/superset - [x] v2ray/official :cn: +- [x] mpromonet/v4l2rtspserver :camera: - [x] centurylink/watchtower - [x] anapsix/webdis - [x] wekanteam/wekan diff --git a/v4l2rtspserver/README.md b/v4l2rtspserver/README.md new file mode 100644 index 0000000..7187417 --- /dev/null +++ b/v4l2rtspserver/README.md @@ -0,0 +1,6 @@ +v4l2rtspserver +============== + +[v4l2rtspserver][1] is a RTSP Server for V4L2 device capture supporting HEVC/H264/JPEG/VP8/VP9. + +[1]: https://github.com/mpromonet/v4l2rtspserver diff --git a/v4l2rtspserver/docker-compose.yml b/v4l2rtspserver/docker-compose.yml new file mode 100644 index 0000000..b936629 --- /dev/null +++ b/v4l2rtspserver/docker-compose.yml @@ -0,0 +1,10 @@ +version: "3.8" +services: + v4l2rtspserver: + image: mpromonet/v4l2rtspserver + command: -H640 -W480 -P554 + ports: + - "554:554" + devices: + - /dev/video0 + restart: unless-stopped