-
-
Notifications
You must be signed in to change notification settings - Fork 72
Debian trixie support #185
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
base: main
Are you sure you want to change the base?
Conversation
a3011f9 to
58cc373
Compare
58cc373 to
e426a09
Compare
|
Is the only thing preventing this from being merged the build errors with Bullseye? It looks like that's related to 9df363e requiring libdatachannel 0.23.2, requiring libsrtp 2.7, which requires cmake 3.21, which isn't present in bullseye. |
If I’ve followed that case correctly, would it be sufficient to limit the version pinning of libdatachannel to Bookworm and Trixie, which can support it with make >= 3.21, and allow Bullseye to compile with any old version of libdatachannel, as before? |
|
In my opinion, Bullseye should not be a blocker and support should just get dropped, if supporting it is a hassle. Best would be a separate branch with a working legacy version. But currently there is a different blocker. WebRTC is not working. This is due to the removal of |
| sender->startRecording(); | ||
| } | ||
|
|
||
| void sendTime() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not remove sendTime. If you remove it, WebRTC won't work and the client will only show the keyframes.
|
I will look at this early next week and merge relevant updates. Thanks for
contributions!
…On Mon, 13 Oct 2025 at 23:32, Patrick Gehrsitz ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In output/webrtc/webrtc.cc
<#185 (comment)>
:
> @@ -63,23 +62,6 @@ struct ClientTrackData
void startStreaming()
{
- double currentTime_s = get_monotonic_time_us(NULL, NULL)/(1000.0*1000.0);
- sender->rtpConfig->setStartTime(currentTime_s, rtc::RtpPacketizationConfig::EpochStart::T1970);
- sender->startRecording();
- }
-
- void sendTime()
Do not remove sendTime. If you remove it, WebRTC won't work and the
client will only show the keyframes.
—
Reply to this email directly, view it on GitHub
<#185 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AASOSQIFGB2MDCKVUWZV7ED3XQK6JAVCNFSM6AAAAACDCGPAWKVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTGMZTGA4DMMJXHE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
|
We just found another issue. Chromium based browsers and the OrcaSlicer Browser (no idea what that's based on), cannot connect to the WebRTC stream. Firefox based browsers work without problem. The error I get, after applying this fix I mentioned above, is as follows: Without this PR applied it's still working on Bookworm. The problem exists on Bookworm and Trixie. |
|
As you can see in the Mainsail PR mainsail-crew/mainsail#2276, a fix is rather simple and you just need to explicitly set the stream ID to a non empty string. We have no idea why this happens just with the newer edit: To be specific, each time you call |
Includes the #184.