Replies: 1 comment 11 replies
-
You have to set the SSRC in the track description, otherwise RTP packets have unknown SSRC and are ignored as a result. This would definitely require some logging as the silent failure can be confusing. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been successfully using libdatachannel to send and receive RTP with another piece of software, but then I realized I'm unable to receive frames to libdatachannel from libdatachannel. I made a mock up to reproduce the problem locally, in Python for brevity.
Verbose libdatachannel log
What am I doing wrong? I'm probably just stupidly missing some small detail but I've been stuck on this for days now...
What I would expect with the following code is that "message received" be printed, or some error be produced, but message_callback is simply never called. And it's not a bindings issue - I have successfully re-implemented the media_receiver and media_sender examples with these bindings.
Beta Was this translation helpful? Give feedback.
All reactions