1. Listener Mode
For example, if the IP of the video encoder is 192.168.1.168, and the SRT setting in the encoder is below image.
Then SRT video stream address will be:
srt://192.168.1.168:9000 (without password)
srt://0123456789@192.168.1.168:9000 (with password)
How to use video decoder to decode the SRT stream URL?
You can input the above SRT stream URL in the decoder to decode the SRT video stream from the encoder. Support multi decoders decode one SRT stream when using listener mode.
2. Caller Mode
For example, if the IP of the video decoder is 192.168.1.169. How to push SRT video stream from the encoder to the decoder?
First we need to define two values: Port number and SRT password. For example, we define the value of port number as 9000, and define the password as 0123456789. Then, we need to input the SRT following information in the encoder and decoder simultaneously.
(1). Setting in the encoder:
(2). Setting in the decoder:
srt://@9000 (without password)
srt://0123456789@9000 (with password)
3. Advanced SRT Setting
There are two SRT settings in the 'Advanced Setting', SRT latency and SRT Bandwidth Limited. For example, if we set SRT Latency as 150, and set the SRT Bandwidth as 1024.
Then SRT video stream address will be:
srt://192.168.1.168:9000?latency=150&maxbw-1024 (without password)
srt://0123456789@192.168.1.168:9000?latency=150&maxbw-1024 (with password)
** Note: The above port number 9000 is not fixed, you can modify it according to your own needs.