libmediasoupclient icon indicating copy to clipboard operation
libmediasoupclient copied to clipboard

mediasoup client side C++ library

Results 22 libmediasoupclient issues
Sort by recently updated
recently updated
newest added

`iceServerUris` parameter parsing logic in [`UpdateIceServers` method](https://github.com/versatica/libmediasoupclient/blob/48768ba90dee235e045e8dfbf364365504e2c4ce/src/Handler.cpp#L113C20-L113C20) in its current state suggests that the parameter is an array of strings. [Documentation](https://mediasoup.org/documentation/v3/libmediasoupclient/api/#Transport-UpdateIceServers) suggests that this parameter is an array of [RTCIceServer](https://w3c.github.io/webrtc-pc/#rtciceserver-dictionary)...

Hi, it looks like the current 3.4.0 branch cannot build properly, I get the error: libmediasoupclient/deps/libsdptransform/test/include/catch.hpp:10717:58: error: call to non-‘constexpr’ function ‘long int sysconf(int)’ 10717 | static constexpr std::size_t sigStackSize...

Hi, the current CMake setup doesn't export the targets properly. It doesn't generate the mediasoupclientTargets.cmake and an external projects won't be able to find the libmediasoupclient project targets from outside...

TypeScript version of mediasoup client has `iceServers` and `iceTransportPolicy` parameters when calling `createSendTransport` method on `Device` entity: [method declaration](https://github.com/versatica/mediasoup-client/blob/a0626bfa82449423514235844e66bb9b134bafae/src/Device.ts#L551). C++ implementation of the libmediasoupclient does not have these parameters: [method...

I use ffmpeg to push the stream and I set sprop-stereo=1. If I use mediasoup-client(js code), I can hear stereo sound. but If I use libmediasoupclient, I only hear mono...

(Same as in mediasoup-client: https://github.com/versatica/mediasoup-client/issues/239). `a=rtcp-fb:*` means that all codecs in this `m=` section support the RTCP features exposed in this attribute line. Purpose of it is to save space...

Fixes #140 - Update libsdptransform to v1.2.10 - Update Catch2 to v3.2.1

Analogous to https://github.com/versatica/mediasoup-client/pull/215 I've tested it a bit with my own app, looks OK. I am a bit puzzled by the fact that my encoder is immediately reinitialized after being...

**Scenario**: Load a device with 3 codec caps: opus, pcma, pcmu. Create a SendTransport & then call `Produce` restricting the `codec` by forcing pcmu. In **ortc.cpp** `reduceCodecs` will check the...

Hi, I find the C++ code: ``` SendHandler::SendResult SendHandler::Send( ... std::vector* encodings, ....) { .... if ( sendingRtpParameters["encodings"].size() > 1 && (mimeType == "video/vp8" || mimeType == "video/h264") ) {...