sepfy

Results 64 comments of sepfy

Thank for your test. I developed this library with Chrome, so I think Chrome is working. When you click start session in the browser, it should callback to [```cb_new_selected_pair_full```](https://github.com/sepfy/pear/blob/main/src/ice_agent.c#L52) and...

It's weird. My google chrome version is 85.0.4183.83 (Linux Mint 20) Maybe try this [branch](https://github.com/sepfy/pear/tree/issue) Or remove the lines [229](https://github.com/sepfy/pear/blob/issue/src/ice_agent.c#L229) and [230](https://github.com/sepfy/pear/blob/issue/src/ice_agent.c#L230) in ice_agent.c I think that serve by SimpleHTTPServer...

Hi all, I spent some time to test different environment. I ensure that the following environment are ok: 1. Ubuntu 20.04 with chromium (install by apt-get chromium-browser). 2. Raspberry Pi...

Hi I tried to build Pear in Ubuntu 16.04 (Docker). I also met your issue. The solution is that upgrade openssl(1.1.1) and glib(2.58) ``` libnice.so: undefined reference to `g_ptr_array_find' -->...

Do you connect with internet? Because the default STUN server is 18.191.223.12

I see you ignoring the ice candidate which the length of address is larger than 15. I guess it is a mDNS address. I tried to [remove it and transfer...

According to the [onicecanidate API](https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/onicecandidate), if the event's candidate property is null, ICE gathering has finished. It should be waited until all candidates are obtained, then send the offer. So...

After getting null candidate, the browser should call `jsonRpc` function to send the offer to recording program. When recording program accepts the offer and response an answer, browser should be...