A quick way to convert your h264 RTMP stream to an HLS stream, and view it in your browser. The Docker image builds nginx with nginx-rtmp-module (using a less stale fork), and serves the HLS stream on a webpage using videojs.
! requires Docker compose
- download or clone, and modify the docker-compose.yml file to suit your configuration
! Make sure to replace SERVER_IP with your external IP to allow external access
docker swarm init
docker stack deploy -c docker-compose.yml ns
where "ns" is the name of the appdocker service ls
to see the new swarmdocker container ls
lists the containers in the swarmdocker exec -it ns_nginx-streamer.1.sdfk /bin/ash
launches a terminal in a container named ns_nginx-streamer.1.sdfk as shown usingdocker container ls
docker stack rm ns
stops the swarm where "ns" is the name of the appdocker swarm leave --force
leaves the swarmdocker system prune -a
remove all stopped containers and unused images
docker run --rm -d -p 1935:1935 -p 80:8080 --name=ns --tmpfs /tmp/hls \
-e "TITLE=My Stream" \
-e "STREAM_NAME=myStream" \
-e "SERVER_IP=127.0.0.1" \
-e "WORKER_PROCESSES=1" \
-e "NGINX_HTTP_CONF=access_log /tmp/hls/access.log;" \
-e "FEEDBACK=https://google.com" \
-e "GANALYTICS=UA-00000000-0" \
-e "BLACKLIST_MESSAGE=<strong>Blacklist Message\!</strong>" \
-e "BLACKLIST_IPS=192.168.120.5 1;192.168.120.6 1;" \
-e "HEADER=<h1>myStream</h1>" \
-e "FOOTER=footer message" \
cb51/nginx-streamer
To build the Docker image locally,
git clone https://github.com/cb50/nginx-streamer
cd nginx-streamer
docker build -t nginx-streamer .
docker run --rm -p 1935:1935 -p 80:8080 --name=ns --tmpfs /tmp/hls \
-e "TITLE=My Stream" \
-e "STREAM_NAME=myStream" \
-e "SERVER_IP=127.0.0.1" \
-e "WORKER_PROCESSES=1" \
-e "NGINX_HTTP_CONF=access_log /tmp/hls/access.log;" \
-e "FEEDBACK=https://google.com" \
-e "GANALYTICS=UA-00000000-0" \
-e "BLACKLIST_MESSAGE=<strong>Blacklist Message\!</strong>" \
-e "BLACKLIST_IPS=192.168.120.5 1;192.168.120.6 1;" \
-e "HEADER=<h1>myStream</h1>" \
-e "FOOTER=footer message" \
nginx-streamer
Create an h264 stream, [using OBS or XSplit], with the URL rtmp://127.0.0.1/stream
and stream name myStream
so the name matches the STREAM_NAME
variable in the docker run
command above.
Open http://127.0.0.1 in a browser to view the stream rendered using videojs. The HLS stream URL is http://127.0.0.1/hls/myStream.m3u8 View connected streams at http://127.0.0.1/stats View active connections at http://127.0.0.1/viewers. The webpage and stream each have a connection, so you can divide the active connections by 2 for good esimate of viewership.