https://github.com/bcanfield/mediamtx-connect
https://github.com/bcanfield/mediamtx-connect
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bcanfield/mediamtx-connect
- Owner: bcanfield
- License: mit
- Created: 2023-11-22T05:50:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-01T08:02:33.000Z (19 days ago)
- Last Synced: 2025-05-01T09:19:37.198Z (19 days ago)
- Language: TypeScript
- Size: 1.14 MB
- Stars: 38
- Watchers: 5
- Forks: 12
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
MediaMTX Connect
Interface for viewing and managing media streams of various formats
Leveraging the power of [MediaMTX](https://github.com/bluenviron/mediamtx)
[](https://hub.docker.com/r/bcanfield/mediamtx-connect)
[](https://github.com/bcanfield/mediamtx-connect/releases)
https://github.com/bcanfield/mediamtx-connect/assets/12603953/ae1e3e0f-401e-4560-a373-b46ea5679870
## Usage
docker-compose
```
version: "3.4"
services:
mediamtx:
image: bluenviron/mediamtx
container_name: mediamtx
restart: unless-stopped
environment:
- MTX_API=yes
- MTX_APIADDRESS=:9997
- MTX_RECORD=yes
volumes:
- ${MEDIAMTX_RECORDINGS_DIR}:/recordings
networks:
- mtx
ports:
- 8554:8554
- 8890:8890/udp
- 1935:1935
- 8888:8888
- 8889:8889
- 9997:9997
mediamtx-connect:
image: bcanfield/mediamtx-connect
container_name: mediamtx-connect
restart: unless-stopped
volumes:
- ${MEDIAMTX_RECORDINGS_DIR}:/recordings
networks:
- mtx
ports:
- 3000:3000
networks:
mtx:
name: mtx```