I have been experimenting in creating ABR streams using FFMPEG but I cant seem to be able to send 2 Video streams to the same SRT port? Is there anything I need to flag in ffmpeg so this will work?
my abr command runs fine when sending to 2 different ports but not to 1
This is for example what I am trying to do:
ffmpeg -stream_loop -1 -re \
-i /Users/finn/Movies/SDR_testpatterns_h264.mov \
-c:v copy \
-c:a copy -f mpegts \
'srt://server:port?pkt_size=1316' \
-c:v libx264 -b:v 2M -vf scale=540:-1 \
-c:a copy -f mpegts \
'srt://server:port?pkt_size=1316'