Changes
forceMax
has been added. This will force the use ofmaxWidth
,maxHeight
,maxFPS
, andmaxBitrate
when set.- If
maxWidth
,maxHeight
, ormaxFPS
are set to0
, the width, height, or framerate of the source will now be used for the output. - If
maxBitrate
is set to0
, the bitrate of the encoder will not be limited. I strongly recommend against this, but it is a better option than setting it to999999
or similar values, as I've seen in some configs. - Reorganized config UI options.
Bug Fixes
- Fix handling of IPv6 connections.
Breaking Changes
- Horizontal and vertical flip have been removed. If you need these options, pass
hflip
and/orvflip
invideoFilter
. forceMax
has resulted in the removal ofminBitrate
, as it is now redundant. To replicate the old behavior, setmaxBitrate
to the bitrate you want to use and setforceMax
to true.preserveRatio
is now a boolean to reduce confusion and support the better handling of that option.