MistServer is a streaming media server that works well in any streaming environment even on a Raspberry Pi! It bridges the gap between dedicated media servers and web servers, performing the best of both worlds when it comes to media streaming delivery.
The opensource version works best with HLS live streaming (gaming) and Open Broadcaster Software (OBS)! If you want more options such as VOD, buy a pro-license.
What makes this docker build better as the official one from DDTECH/MistServer?
It's more secure and because on docker stop it will gracefully shutdown your processes. It prevents data corruption and all config-files will be saved before shutting down.
docker create --name=mistserver \
--net=host \
-v <path to config>:/config \
-v <path to video>:/media \
r0gger/mistserver
Parameters
--net=host - Recommended! You can change ports within Mistserver Protocols.-v <path to config>:/config - config and log files-v <path to video>:/media - video and audio filesSpecial note - If you'd like to run Mistserver without requiring --net=host (NOT recommended) then you will need the following ports in your docker create command:
-p 4242 - Web UI-p 1935 - RTMP-p 554 - RTSP-p 8080 - HTTP / HLS-v /etc/localhost:ro - for timesync (read-only)push:// or push://your-ip-addressrtmp://mydomain.tld:1935/live/ and Play Path: obs.<video id=autoplay width="720" height="360" class="video-js vjs-default-skin vjs-big-play-centered" controls>
<source src="http://mydomain.tld:8080/hls/stream_name.m3u8" type="application/x-mpegURL">
</video>
<link href="https://vjs.zencdn.net/7.5.5/video-js.css" rel="stylesheet">
<script src="https://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script>
<script>
var player = videojs('autoplay');
player.play();
</script>
git clone https://github.com/R0GGER/mistserver.git mistservercd mistserver/docker build -t mistserver --build-arg MISTSERVER=https://r.mistserver.org/dl/mistserver_[version].tar.gz .Website: http://mistserver.org
Github: https://github.com/DDVTECH/mistserver
Content type
Image
Digest
Size
139.8 MB
Last updated
over 5 years ago
docker pull rasmusrasmussen/mistserver