add Node-Media-Server

This commit is contained in:
kev 2021-10-13 16:45:14 +08:00
parent 345bbc1996
commit 1f24311e4a
5 changed files with 20 additions and 3 deletions

View File

@ -365,6 +365,7 @@ A collection of delicious docker recipes.
- [x] erichough/nfs-server
- [x] luzifer/nginx-sso
- [x] n8nio/n8n
- [x] illuspas/node-media-server :cn:
- [x] notaitech/nudenet
- [x] odoo
- [x] ohmyform

View File

@ -0,0 +1,6 @@
node-media-server
=================
A Node.js implementation of RTMP/HTTP-FLV/WS-FLV/HLS/DASH/MP4 Media Server
Homepage: https://github.com/illuspas/Node-Media-Server

View File

@ -0,0 +1,8 @@
version: "3.8"
services:
node-media-server:
image: illuspas/node-media-server
ports:
- "1935:1935"
- "8000:8000"
restart: unless-stopped

View File

@ -1,10 +1,11 @@
version: "3.8"
services:
v4l2rtspserver:
image: mpromonet/v4l2rtspserver:latest-arm32v7
command: -v -P554 -H640 -W480 -F5 -ulive
image: mpromonet/v4l2rtspserver
command: -v -P554 -G640x480x5 -ulive /dev/video0
ports:
- "554:554"
devices:
- /dev/video0
privileged: true
restart: unless-stopped

View File

@ -2,9 +2,10 @@ version: "3.8"
services:
v4l2rtspserver:
image: mpromonet/v4l2rtspserver
command: -v -P554 -H640 -W480 -F5 -ulive
command: -v -P554 -G640x480x5 -ulive /dev/video0
ports:
- "554:554"
devices:
- /dev/video0
privileged: true
restart: unless-stopped