Self-hosting a Live Stream Server
This Sunday, I will be running the technical side of an online Pride event hosted by my partner. Part of this includes live music performances that all need to go to the same stream output. I also need to be able to scale and transcode the streams appropriately. There are, of course, commercial options available, but that wouldn’t be very fun (or cheap!). What fun is having servers if I can’t also mess around with them?
The specific final destination has particular codecs and resolutions, and they recommend something like Oven Media Engine to take in all the streams and allow them to be rebroadcasted into their intake server. I spent most of today trying to make it work, and while I was able to successfully send to it, I couldn’t get anything out of it, no matter how much I tried. This was mostly because of a lack of understanding on my part, but also the relatively confusing-to-newcomers way that the configuration and documentation is presented.
That’s not to say that it’s unfriendly to new users, just that it requires a lot more prior knowledge and research than I expected or was capable of dealing with in the moment. I’m sure it’s a wonderfully useful software, it just didn’t fulfill my need for something that could be set up and tested for this weekend.
Eventually I remembered an old post by Drew DeVault that talked
about self-hosting his own live-streaming server with nginx
. In it, he streams
a screengrab of an X11 window via ffmpeg
1 into a DASH2 sink using the
nginx-rtmp
module.
This looks great! Streaming into nginx that then can be republished and pulled into OBS for transcoding and restreaming. I ended up installing the RTMP module on one of my servers, and wrote the following configuration:
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off;
}
}
}
That’s really all it takes. 1935
is used because it’s the standard RTMP port,
but really any one can be used. This lets me send streams to
rtmp://<my-server>:1935/live/<key or name>
. Where it says <key or name>
,
that’s the bit where you can separate each stream. Then, I can add a Media
Source to OBS or VLC with that same URL, and it will automatically pull the
stream down. By managing stream keys, you can have multiple people streaming in
at once, and then switch between them using software like OBS.
I’m mostly using the stock OBS settings, but I’m making sure to use the x264
encoder and the veryfast
encoder preset, which is easier on web browsers.
There’s no noticable difference in quality, so in my opinion there’s no need to
go any higher.
The RTMP module also lets you use the nginx allow
and deny
directives, for
access control based on IP addresses or subnets. For example, if I only wanted
to be able to stream from within my VPN, I could set
allow publish <my-laptops-vpn-ip>;
deny publish all;
which would only let my laptop (or any other IP I wanted) broadcast. I’m sure there’s some way to do this better, like predetermining which stream keys are able to play, but I haven’t been able to find it yet, so I’ve just been disabling the module when I don’t need it.
To recap, the general steps I took were:
- Install and configure the nginx RTMP module
- Configure OBS to stream to the RTMP URL
- Add a media source to VLC with that same URL to play
I hope this was able to help! I plan on looking into this more, especially the access control bits, so I’ll be sure to update this post with anything I find.
Update 2022-06-19:
I should’ve known this was too good to be true. RTMP does not do well with cross-continent streaming. The last act was delayed 30 minutes by technical audio difficulties from the extreme delay.
A better alternative would be SRT3, via nginx-srt-module. It uses UDP as the underlying protocol, so it’s more error-resistant. Part of the issue was a delay in tech checks and the network quality of the remote talent, but this was an issue that could have also been prevented by not using a protocol that’s not designed for cross-continent use.
Articles from my webring
Using Podman, Compose and BuildKit
For my day job, I need to build and run a Docker Compose project. However, because Docker doesn’t play well with nftables and I prefer a rootless + daemonless approach, I’m using Podman. Podman supports Docker Compose projects with two possible solutions: ei…
via emersion February 23, 2025Announcing Rust 1.85.0 and Rust 2024
The Rust team is happy to announce a new version of Rust, 1.85.0. This stabilizes the 2024 edition as well. Rust is a programming language empowering everyone to build reliable and efficient software. If you have a previous version of Rust installed via rus…
via Rust Blog February 20, 2025A holistic perspective on intellectual property, part 1
I’d like to write about intellectual property in depth, in this first of a series of blog posts on the subject. I’m not a philosopher, but philosophy is the basis of reasonable politics so buckle up for a healthy Friday afternoon serving of it. To understand …
via Drew DeVault's blog February 13, 2025Generated by openring