Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Since build 5.2.1314 it is possible to restrict client IP addresses whic which are allowed to publish MPEG-TS stream via UDP using REST API /mpegts/startup query parameter

Code Block
languagejs
themeRDark
{
  "localStreamName":"mpegts-stream",
  "transport":"udp",
  "allowedList": [
    "192.168.0.100",
    "172.16.0.1/24"
  ]
}

Since build 5.2.1485 MPEG-TS via SRT publishers may also be restricted

Code Block
languagejs
themeRDark
{
  "localStreamName":"mpegts-stream",
  "transport":"srt",
  "allowedList": [
    "192.168.0.100",
    "172.16.0.1/24"
  ]
}

...