erdnaxe
erdnaxe
> Thank you very much, very useful. Do you think `cle` could replace the other wonky loaders (ELF, PE, ... )? Would be a nice cleanup. - For ELF loader,...
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/802 has been merged.
That is definitely strange. The corresponding code is https://github.com/erdnaxe/galene-stream/blob/main/galene_stream/webrtc.py#L219-L226. With my Galene-0.4 instance, I get (using print on `ice_server` and `uri` variables): ``` # ice_servers at https://github.com/erdnaxe/galene-stream/blob/main/galene_stream/webrtc.py#L220 ice_servers = [{'urls':...
I believe that you are using Galène on master branch which disables VP8: https://github.com/jech/galene/commit/69445d67f5a05c4d1eeedad041373ca75199bdea#diff-2b7814d3fca2e99e56c51b6ff2aa313ea6e9da6424804240aa8ad891fdfe0900L173 Can you try to add `["vp8", "opus"]` to your Galène group codecs?
Galène expect the retransmission on the main track. GStreamer does not seem to support this mode. So there is a need to implement RTX on a separate track in Galène...
> GStreamer does not seem to support this mode. Actually it seems that rtprtxqueue can retransmit with the same SSRC. Although it seems to fulfill requests when using it on...
Upstream issue: https://github.com/pion/webrtc/issues/1675#issuecomment-797252369
> @erdnaxe I think in this [line](https://github.com/Ledger-Donjon/rainbow/blob/master/rainbow/loaders/cleloader.py#L29) `ld = cle.Loader(path, except_missing_libs=True, ld_path=ld_path)` `except_missing_libs` should be `False` (do not throw an exception if a lib is missing) instead. What do you...
Dropped two commits that are no longer needed with v3.0.0 (thanks!). I rebased and linted the fix for the deprecation. Quasar is still failing to build with bun, but now...
Thanks for the review! I updated the patch with `.clear()` which seems cleaner.