Juan Navarro

Results 175 comments of Juan Navarro

The Min and MaxOutputBitrate settings were lacking proper docs on what they do exactly, because they are quite advanced settings to change the limits of REMB bitrate feedbacks on WebRTC,...

Please check the [Debug Logging](https://doc-kurento.readthedocs.io/en/latest/features/logging.html) page in order to enable the [REMB debug category](https://doc-kurento.readthedocs.io/en/latest/features/logging.html#webrtcendpoint-and-rtpendpoint). In essence, you can set the environment var like this: ``` export GST_DEBUG="2,KurentoBaseRtpEndpointImpl:5,basertpendpoint:5,kmsremb:5" ``` Then attach...

Check if it works if you call `processOffer()` **after** receiving the `IceGatheringDone` event. This event is what tells you that all ICE candidates have been gathered. Otherwise, you might be...

thanks for the suggestions; I've mostly rewritten the docs of the gatherCandidates method, to make it clearer and more useful for users

You're right, I got confused because of the old comment in the documentation. Turns out that comment is wrong: it's not possible to call gatherCandidates *before* having processed an initial...

@avssav are you using DataChannel? I noticed that lines 3 and 4 mention the `DataChannelClose` method, so that could be a hint

It doesn't look that you are using DataChannels in https://github.com/avssav/novakid-kurento-client So the fact that Kurento stack trace points to some DataChannel methods, could indicate a memory corruption bug, that ends...

The kms-jsonrpc module is just a very thin adaptation layer over the jsoncpp library (of which Kurento maintains a fork). I'm not sure what is exactly done in it, because...

do you have any info in the errors.log file?

Before trying to start KMS (`sudo service kurento-media-server start`), check that there are no other KMS instances running by some chance ([Check your installation](https://doc-kurento.readthedocs.io/en/latest/user/installation.html#check-your-installation)): ``` $ ps -fC kurento-media-server UID...