diff --git a/README.md b/README.md index b3e0eae..60aaad8 100644 --- a/README.md +++ b/README.md @@ -405,6 +405,7 @@ A collection of delicious docker recipes. - [x] mitmproxy/mitmproxy - [x] mariadb :bucket: - [x] matomo +- [x] bluenviron/mediamtx - [x] memgraph :bucket: - [x] lab - [x] memgraph diff --git a/mediamtx/README.md b/mediamtx/README.md new file mode 100644 index 0000000..42c5cfa --- /dev/null +++ b/mediamtx/README.md @@ -0,0 +1,10 @@ +mediamtx +======== + +[MediaMTX][1] is a ready-to-use and zero-dependency real-time media server and +media proxy that allows to publish, read, proxy, record and playback video and +audio streams. It has been conceived as a "media router" that routes media +streams from one end to the other. + + +[1]: https://github.com/bluenviron/mediamtx diff --git a/mediamtx/docker-compose.yml b/mediamtx/docker-compose.yml new file mode 100644 index 0000000..ebe6f85 --- /dev/null +++ b/mediamtx/docker-compose.yml @@ -0,0 +1,14 @@ +version: "3.8" +services: + mediamtx: + image: bluenviron/mediamtx:latest-rpi + volumes: + - /run/udev:/run/udev:ro + tmpfs: + - /dev/shm:exec + environment: + - MTX_PATHS_CAM_SOURCE=rpiCamera + - MTX_PATHS_CAM_RPICAMERAWIDTH=1920 + - MTX_PATHS_CAM_RPICAMERAHEIGHT=1080 + network_mode: host + privileged: true