Upcoming noteworthy MistServer changes
This page displays all noteworthy changes that are currently in planning, and is intended as an overview that people without an engineering background can understand.
Noteworthy changes that have already been released can be found here.
Upcoming releases
MistServer 3.2
New sessions system
In development branch
Until now, Mist has already had a concept of a “session”, but it was hardcoded to our predetermined definition: a session is considered to be a single view action, over a single protocol, a single IP address, and for a single stream name. This new sessions system makes this definition configurable, and splits out the session management into a new MistSession binary that collates connection stats into session stats, and passes those on to the rest of the system as a single thing.
Somebody’s definition of “session” might not match ours, and the work of matching connections to sessions was quite a bit of strain on the MistController binary, which turned this into a single point of failure in the system. This change not only allows more use cases to work without needing to make changes to the code, but also speeds up the whole system and increases reliability and predictability.
Custom variables support
In development branch
MistServer already supports using various variables in places, mostly covering the current date and time, stream name, etcetera.
This functionality would add support for custom-defined variables, which may be either static or the result of running some command or calling some URL (similar to the trigger system) at a configurable interval.
This makes re-using paths, hostnames, and other similar types of configuration while allowing them to change in the future easy.
It's also a step up for another upcoming feature: the ability to use these variables to configure arbitrary recording times/intervals, allowing for much more powerful advance scheduling of recordings and pushes.
Scheduled Pushes
In development branch
So far, MistServer's ability to "push" streams (which is a single concept that encompasses both recording to disk as well as sending the stream elsewhere over various protocols for replication) has been limited to two styles of pushes:
Regular pushes, which are started whenever they are configured and disappear once they end.
Automatic pushes, which are started whenever their corresponding stream is active, and automatically restarted as needed while the stream is still active/available, even if it fails or gets disconnect.
The new scheduled pushes system lets you use arbitrary variable comparisons to determine when a push should and shouldn't be active, giving extra flexibility on top of and alongside the existing features.
The perfect use case for this is a stream that may be active continuously, but only should be pushed out and/or recorded at set intervals or times. The flexibility of this new system lets you call out to external sources to set variables and then write rules to interpret those variables into a decision to push or not. For example, MistServer could be linked to a calendar that decides when pushes are active, or some kind of external toggle/switch system that can be polled for the current wanted state.
MacOS server support
Planned
The 3.0 release does not work well on MacOS. This corrects that and makes Mac a worthy release target again.
The lack of Mac support in 3.0 was a regression that we accepted due to time constraints, not an intentional change in supported operating systems.
Near future
Player reporting
In testing
The ability to collect metrics from playback sessions in real time, and graph them by geolocation/protocol/stream/OS/browser. Specifically, we track the “playback quality”, which is a score between 0 (non-functional) to 100 (flawless, no buffering, no stuttering).
This gives the ability to track the effect of changes to the setup in the viewership’s ability to watch streams with a good experience. Perhaps the single most important metric of all.
Load testing tools
In testing
A set of tools that allow running load tests on media servers, both in general and MistServer specifically. The tools are a collection of analysers (each capable of realistically simulating the load of a single real viewer) and a load testing utility that runs these analysers in bulk and collects their output to create pretty graphs and provide reliable information on what a specific system can/can’t handle.
This project started as an internal tool to test our own performance, but we found that many users of MistServer are also interested in getting these kind of metrics for their installs to assist with scaling better.
Direct input/output piping in DTSC format
In progress
Sep 2025
Long ago, MistServer had the ability to run any input and have it demux into a DTSC stream on standard output, as well as running any output and pipe DTSC data into it over standard input to create a muxed output in the format it speaks.
This brings back that capability, enabling "daisy chaining" of Mist processes without needing a shared memory buffer in between.
While this feature might not sound very exciting - and indeed, it does not bring any new capabilities for the average user - it does unlock a few key things for improving MistServer in general.
Specifically, this allows us to write unit tests for Mist's various inputs and outputs that can be ran under controlled conditions without having external state that may interfere with them.
It also opens the door to processing pipelines, where MistController can convert files or streams between various formats automatically and/or perform operations on them that then have a result that can be stored back to disk.
Livestreams already had the ability to run processes like this, but VoD assets do not have this option currently. This change is a big step towards enabling these workflows for VoD as well.
Far future
LSP Mk4
In progress
Jul 2537
A new version of the web interface that is more straight-forward to use, follows the latest user interface best practices, and is ready for upcoming features and configuration changes.
This is another one of those projects that keeps being pushed back, despite being long overdue. While the current web interface is servicable, it’s nothing more than that. Only parts of the current API are used, let alone the new APIv3.
Current viewer count in player
In progress
Oct 2511
On many platforms, it’s possible to see the current count of viewers in the video player. This makes it possible to do this natively with MistServer as well. Not only that, but for streams that are pulled from other MistServer instances, the two sides of the connection will communicate with each other to sync player counts so they are consistent regardless of what server in the network you are connected to. The player count can be set to be exposed publicly or not, giving those that prefer to keep this data secret the ability to still do so.
While it is already possible to do this by polling each server and adding the counts together and then inserting them into the player manually, this is a fairly common setup and it makes sense to support it officially. Because the media server itself keeps the count, it also updates instantly and can piggyback on existing connections that are needed to play the stream anyway. This makes a native setup significantly more efficient than it would have been otherwise.
Better support for live subtitles
In progress
Sep 2042
This will make live subtitles in MistServer as well-supported as VoD subtitles are, both for inputs/outputs and for the integrated meta-player.
Currently, MistServer has pretty good support for VoD subtitles in various formats, including even some conversions between formats. For livestreams, however, there are quite a few unsuspected caveats and difficulties. For example, there is no clear ingest method to insert them, and even when inserted through some roundabout way, most outputs don’t time/sync (or support at all) live subtitles as well as you’d want/expect them to be.
APIv3
In progress
Nov 2027
A new API to control MistServer (alongside the old API, which will still be supported), that follows RESTful principles more closely, and is more straightforward to use without needing complex integrations. It also supports more authentication methods than the old API, including token authentication, and can restrict access to specific submodules and config to specific credentials for more security in automation tasks.
An upgrade to the API has been long overdue/planned. This item should really not need further explanation; anyone that has worked with the old API in the past will know why this is important.
SNMP support
In progress
Jul 2028
Support for making available all of the “prometheus” stats that MistServer makes available, through standard SNMPv2 messages.
Todo: create MiB + config for port&addr
SNMP is a common method to monitor professional equipment in a network. It doesn’t add anything else beyond the ability to use this standard to access already existing metrics.
MistServer as a Livepeer node
In progress
The ability to use MistServer as a `B`/`O`/`T` node in the Livepeer network. We will likely start with `B`-only at first, and later extend it to also support `O`+`T` modes.
MistServer already has (or is about to gain) most of the functionality needed to do this effectively, so it just makes sense to support actually using it like this.
Flowplan
Planned
The ability to create rulesets for how a stream should behave after a use connects to it (“flowplans”). The flowplan is used to decide what each separate viewer actually sees. Each such execution is called a “flowpath”, and may be unique to a specific viewer or shared with others. To those familiar with it, this is similar to (and inspired by) Asterisk’s dialplan feature.
This will allow using MistServer for use cases such as dynamic (and personalized) ad insertion while making it impossible for viewers to block them, running geo-aware (or even user-aware) content, serving high quality for paying customers but low quality after the first few minutes for non-paying customers, switching what a user is watching from the server side without letting the client side change it, etc.
Native load balancer
Planned
Adds a load balancing mechanism to MistServer, that allows forming clusters of MistServer installs that automatically exchange stream data as needed and direct users to the best node to view streams on for their location and the current resource usage of all the nodes. This effectively lets you manage a cluster of MistServer instances as-if they were a single instance, and expand/shrink the cluster with almost no effort.
MistServer has had an experimental load balancer since 2016, but it was never developed beyond a proof of concept that “just works”. Not only do we want to make this a “properly” supported feature (as opposed to a standalone tool), but since then we’ve also learned a lot and want to integrate our new learnings as well.
Native hardware accelerated transcoding support
Planned
Support for transcoding through MistServer with a “Process” (similar to the current ffmpeg process, MKVExec process, and Livepeer process), which supports NVEnc, Netint encoders, and Intel Quick Sync Video, without needing to have any extra/external software installed.
Currently transcoding on the local machine requires using ffmpeg or writing your own script that integrates any other transcoder. This native support for some of the most commonly used hardware accelerated transcoding methods improves ease of use and ease of deployment.
Windows server support
Planned
The 3.0 release does not work well on Windows. This corrects that and makes Windows a worthy release target again.
The lack of Windows support in 3.0 was a regression that we accepted due to time constraints, not an intentional change in supported operating systems.
Stream cache system
Planned
This system will allow users to configure a cache directory (and optional maximum size), which will be used to keep fast-lookup files (DTSH headers) for VoD files stores on non-writable media (remote HTTP, read-only drives, etc). It can also be used to keep actual VoD assets themselves if they need to be fetched from a remote endpoint, to speed up subsequent accesses.
This enables workflows where VoD assets are stored across potentially infinite servers, rather than needing a central storage location. It also allows workflows where directories containing stream data may not be writable for MistServer for any reason (these workflows are currently needlessly slow, since the header file must be re-created every time file access happens).