Middleware for OvenMediaEngine to create a meeting or restream production experience
10,000 hours mucking with `git filter-repo` and no reasonable use-case found. On the plus side, anyone looking at this and curious what I nuked isn't missing much. This lived in a monorepo up until about a week ago. |
||
---|---|---|
assets | ||
example | ||
template | ||
.gitignore | ||
admission.py | ||
config.py | ||
main.py | ||
management.py | ||
ovenapi.py | ||
pyproject.toml | ||
README.md | ||
status.py | ||
viewer.py |
ovenemprex
OvenMediaEngine management middleware
Reqirements
This project tries to be pretty lean. Requirements should be roughly...
- OvenMediaEngine 0.10.30 or greater
- Python 3.8 or greater
- python-cherrypy
- python-requests
Setup
- Install and configure Ovenmediaengine. The following components are required:
- WebRTC publishing
- The API enabled with a user/password set
- Some number of applications
- Extract or clone this repository somewhere
- Configure your HTTP daemon/proxy/etc to proxy HTTPS to
http://localhost:8080
- Set up environment variables to your liking. The OvenMediaEngine API key and password are mandatory; see Configuration below
- Start the management engine with either
python3 main.py
or a systemd unit as noted inexamples/
Usage
By default this provides a few things:
https://<domain>/<appname>
will provide a "Discord like" interface to every stream live in the current apphttps://<domain>/<appname>/<streamname>
will display only that streamhttps://<domain>/<appname>/<management>
will, if configured, display a management interface to allow basic stream management
Configuration
All configuration is done with environment variables. If using systemd you can configure systemd unit overrides. If you're using your own management script you can set your environment variables any way you wish.
Check out the config files in the examples/
dir to see available configuration arguments.
Customization
There's only a couple supported methods of customization at this time:
assets/webhook_avatars
can provide for a way to assign stream keys an avatar that the webhook will use when announcing that key has gone liveassets/errorlogo.gif
can be replaced to replace the throbber on any interface waiting for a stream to start- Anything in
templates/
can be edited as desired but will likely be reverted in a future update