Yuichiro Tachibana (Tsuchiya)

Results 334 comments of Yuichiro Tachibana (Tsuchiya)

@cats256 Thanks. Yes I agree with that setting the server explicitly makes thing clearer while [the default STUN server setting](https://github.com/aiortc/aiortc/blob/9664b669bcee50dc41e341656b2f8ab19ce69623/src/aiortc/rtcicetransport.py#L204-L209) is used if nothing set... wdyt @jlaine ?

Oops I found there wasn't a care for the case where the request to `/add_candidate` reaches the server before the one to `/offer`. Will see it.

ahh we must ensure `addIceCandidate` is called after `setRemoteDescription` that [gets `mid`s from the offer and sets the transceiver for each mid](https://github.com/aiortc/aiortc/blob/9664b669bcee50dc41e341656b2f8ab19ce69623/src/aiortc/rtcpeerconnection.py#L837-L853) that `addIceCandidate` will [update the candidates of](https://github.com/aiortc/aiortc/blob/9664b669bcee50dc41e341656b2f8ab19ce69623/src/aiortc/rtcpeerconnection.py#L408-L412)? UPDATE:...

With rough print-debug, I found * `Image.postprocess` took ~0.8s. * This become faster if the image is smaller (e.g. `img.thumbnail((100, 100))`), but anyway this seems not a problem but an...

@slowflower Hi, thank you for the report, but unfortunately I couldn't reproduce it. Can you provide a whole repo and env info, and the log from `npm run dump`?

This is the network profile capturing the initialization phase of Stlite Sharing. ![CleanShot 2024-08-07 at 14 18 29@2x](https://github.com/user-attachments/assets/d1db38da-31f7-4efc-b303-2076c211ed79) The most time-taking part is loading the packages into the memory, rather...

This approach can't be introduced to Stlite Sharing because the user updates the requirements and the dependencies are resolved at runtime so we can't package the initial fixed site-packages. Contrarily,...