Docker image for video streaming server that supports RTMP, RTMPS, HLS, and DASH streams.
This Docker image can be used to create a video streaming server that supports RTMP, HLS, DASH out of the box. It also allows adaptive streaming and custom transcoding of video streams. All modules are built from source on Debian and Alpine Linux base images.
Current Image is built using:
- Nginx 1.19.0 (compiled from source)
- Nginx-rtmp-module 1.2.1 (compiled from source)
- FFmpeg (compiled from source)
- Stunnel (installed from apt)
This image was inspired by similar docker images from tiangolo and alfg. It has small build size, adds support for HTTP-based streams and adaptive streaming using FFmpeg.
- The backend is Nginx with nginx-rtmp-module.
- FFmpeg for transcoding and adaptive streaming.
- Stunnel for secure RTMP (RTMPS) support.
- Default settings:
- ✅ RTMP
- ✅ HLS (adaptive, 5 variants)
- ✅ DASH
- Other Nginx configuration files are also provided to allow for RTMP-only streams or no-FFmpeg transcoding.
- Statistic page of RTMP streams at
http://<server ip>:<server port>/stats
. - Available web video players (based on video.js and hls.js) at
/usr/local/nginx/html/players
.
For your development convienence a devcontainer was provided utilizing Ubuntu-22.04 (Jammy).
Use Docker Compose to build and run the container with the following command:
docker-compose up -d
docker run -d -p 1935:1935 -p 8080 kneeki/rtmp-server
To run with custom conf file where custom.conf
is the new conf file for Nginx:
docker run -d -p 1935:1935 -p 8080 -v custom.conf:/etc/nginx/nginx.conf kneeki/rtmp-server
-
Stream live RTMP content to:
rtmp://<server ip>:1935/live/<stream_key>
where
<stream_key>
is any stream key you specify. -
Configure OBS to stream content:
Go to Settings > Stream, choose the following settings:- Service: Custom Streaming Server.
- Server:
rtmp://<server ip>:1935/live
. - Stream key: anything you want, however provided video players assume stream key is
test
-
Using VLC:
- Go to Media > Open Network Stream.
- Enter the streaming URL:
rtmp://<server ip>:1935/live/<stream-key>
Replace<server ip>
with the IP of where the server is running, and<stream-key>
with the stream key you used when setting up the stream. - For HLS and DASH, the URLs are of the forms:
http://<server ip>/hls/<stream-key>.m3u8
andhttp://<server ip>/dash/<stream-key>_src.mpd
respectively. - Click Play.
-
Using provided web players:
The provided demo players (http://localhost/players
) assume the stream-key is calledtest
and the player is opened in localhost.- To play RTMP content (requires Flash):
http://localhost/players/rtmp.html
- To play HLS content:
http://localhost/players/hls.html
- To play HLS content using hls.js library:
http://localhost/players/hlsjs.html
- To play DASH content:
http://localhost/players/dash.html
- To play RTMP and HLS contents on the same page:
http://localhost/players/rtmp_hls.html
Notes:
- These web players are hardcoded to play stream key "test" at localhost.
- To change the stream source for these players. Download the html files and modify the
src
attribute in the video tag in the html file. You can then mount the modified files to the container as follows:wheredocker run -d -p 1935:1935 -p 8080 -v custom_players:/usr/local/nginx/html/players kneeki/rtmp-server
custom_players
is the directory holding the modified html files.
- To play RTMP content (requires Flash):
Released under MIT license.
- GitHub repo: https://github.com/DaveTacker/rtmp-server.git
- Docker Hub image: https://hub.docker.com/r/kneeki/rtmp-server