You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(srt): add listen_publisher_srtla for SRTLA/bonded connections
Add separate publisher listener port for SRTLA (bonded) connections, allowing both SRTLA and direct SRT publishers on the same server with streams accessible from a single player port.
New config option:
- listen_publisher_srtla: Publisher port with SRTLA patches enabled
Usage:
server {
listen_player 4000; # All streams playable here
listen_publisher 4001; # Direct SRT publishers
listen_publisher_srtla 4002; # SRTLA publishers (via srtla_rec)
}
SRTLA patches are automatically enabled on listen_publisher_srtla and disabled on listen_publisher. This prevents glitching that occurs when using the wrong SRT settings for each connection type.
Co-authored-by: datagutt <datagutt@lekanger.no>
0 commit comments