-
-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bi-directional SRT disconnect breaks Opus stream synchronization, preventing reconnection #4395
Comments
Thanks for the report. Is that all that your script is doing? The error: However, your input is using the ffmpeg decoder. I have tested with the following scripts:
And deconnection/reconnection seems to be working. I think that we'd need to see more details about your script to be able to reproduce the issue. |
I believe this was the sending script. This is recalled from a partial backup but should be correct. I'm just not sure was I using Portaudio, Jack or Pulseaudio, but this is with pulseaudio and I'm able to reproduce the issue. ` settings.frame.audio.samplerate := 48000 return_audio = input.srt( mic = blank.strip(input.pulseaudio()) list_local = playlist("/music") link = fallback([ link = mksafe(link) Encoding formatsopus = %ogg(%opus( output.pulseaudio(return_audio, fallible=true) output.srt( The receiving end has a ton of rows, but essentially it had the same encoders and both input.srt and output.srt. Audio for return line fas fed from the main broadcast switch before broadcasting or normalization. These are some fresh logs straight from the oven: |
Could you get some logs with |
Hi, sorry for the delay. This is the log:
|
* Properly stop encoder on disconnection * Add connect/disconnect methods * Add test Fixes: #4395
Ok thanks for your patience. I've got something pending: #4399 It's worth noting that the ogg encapsulation is, how should we say?.. Tricky 😄 If you're trying to send end-to-end with recovery and etc. I'd suggest an encapsulation that does not have initial header requirement such as mpegts. For opus I guess you could experiment with Also, you are inverting the sender/receiver logic. Is there a reason for that? Although possible, I would recommend sticking to output being the sender and input being the listener. The application logic re: what happens when things disconnect is just more straight forward. |
If I understood your question correctly, the caller mode for input.srt is necessary because this is designed to replace hardware codecs (Comrex/Tieline) for remote broadcasting. The sending units:
This is part of a larger goal to move studio functionality to the cloud, eliminating the need for fixed-location studios. In this setup:
I think this method is easier because then I don't have to invoke some kind of black magic to sense the caller's IP, which would be necessary if the server tried to establish the return audio connection back to the remote unit. 😁 If there's an easier way to do this I'd be happy to know! I'll experiment with other codecs, but it seems that fdkaac is also doing fine. This won't be going into production in a long time, so I'm not panicing on this one. |
That makes sense! I was mostly documenting the details of the issue. |
* Properly stop encoder on disconnection * Add connect/disconnect methods * Add test Fixes: #4395
Description
When using Ogg(Opus) encoding with SRT, a disconnect event leaves the system in a state where reconnection fails with Ogg sync errors. Switching to FDK-AAC encoder works around the issue, suggesting the problem is specific to Opus/Ogg handling during SRT disconnects.
Steps to reproduce
The script also has SRT input which is encoded with exactly the same encoding.
return_audio = input.srt(
mode="caller",
content_type="application/ogg",
enforced_encryption=true,
passphrase="passwd",
port=PORT,
host="IP",
connection_timeout=10.,
max=0.05,
self_sync=true
)
Working solution, stream is now FDK-AAC:
return_audio = input.srt(
mode="caller",
content_type="application/ffmpeg",
enforced_encryption=true,
passphrase="consequence",
port=10002,
host="135.181.26.125",
connection_timeout=10.,
max=0.05,
self_sync=false
)
Observed Behavior:
After disconnect
2025/03/09 14:42:26 [input.srt:2] Feeding failed: Ogg.Out_of_sync
2025/03/09 14:42:26 [input.srt:3] Connecting to srt://IP:PORT..
2025/03/09 14:42:26 [input.srt:3] Client connected!
2025/03/09 14:42:26 [input.srt:2] Feeding failed: Ogg.Out_of_sync
Workaround:
Using FDK-AAC instead of Opus resolves the issue, suggesting the problem is specific to Opus stream handling during disconnects. FDK-AAC was the only thing needed to make this work, but afterwards I changed self_sync=false => true.
Impact:
Verification:
The issue is reproducible with Opus encoding
Switching to FDK-AAC resolves the issue
The problem occurs consistently after disconnects
Fresh connections work fine until first disconnect
Expected behavior
Liquidsoap version
Liquidsoap build config
Installation method
From OPAM
Additional Info
The issue affects both controlled disconnects and network-induced disconnects
The text was updated successfully, but these errors were encountered: