The core provides an internal RTMP and SRT server. Pulling in a stream results by default in a HLS output. Now, this stream can also be pushed additionaly to the internal RTMP and SRT servers, given they are enabled. This results in a lower latency when you play the stream from one of those servers. It was necessary to modify the RTMP configuration a bit, such that there's always a non-TLS RTMP server available for internal use. If you enable RTMPS, it will require now that there's also a RTMP server running. Both need to run on different ports. Please check your RTMP settings after the update. The RTMPS server will run on port 1936 by default. The RTMP server will run on port 1935 by default. The UI requires now core version 16.9.0
8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
import { name, version, bundle } from '../package.json';
|
|
|
|
const Core = '^16.9.0';
|
|
const FFmpeg = '^4.1.0 || ^5.0.0';
|
|
const UI = bundle ? bundle : name + ' v' + version;
|
|
|
|
export { Core, FFmpeg, UI };
|