IPTV Live Video Encoding & Streaming SRT
Stream from SRT Source
SRT (Secure Reliable Transport) makes udp streaming reliable transmission similar to TCP. You can deliver stream losslessly between different places over the internet.
Streaming from SRT source is like streaming from HTTP. Just choose srt
as source type and enter srt url in source address, like
srt://192.168.1.2:1234
Note: SRT source works in caller mode by default. i.e. It
initiates connection to the source server to start streaming. If you want to
switch to listener mode instead, change address to a local host address
with option "mode=listener", for example
srt://0.0.0.0:1234?mode=listener
. In this case, it
waits until the remote peer connects and starts streaming then.
Stream P2P SRT Output
Choose SRT in Target Format and enter destination IP address
you want to deliver to. For example srt://0.0.0.0:1234
.
Note: SRT output works in listener mode by default.
i.e. It waits for remote peer to connect to start streaming. If you want to
switch to caller mode instead, change address to a remote host address
with option "mode=caller", like
srt://192.168.1.2:1234?mode=caller
. In this case,
it initiates connection to remote and starts streaming.