Yuichiro Tachibana (Tsuchiya)

Results 350 comments of Yuichiro Tachibana (Tsuchiya)

I fixed files in `/examples` as well. Could you apply such changes on other parts because I couldn't judge if I could replace `time.time` with `time.monotonic` in other places by...

I think it's because Python doesn't execute CPU-bound tasks in parallel even in multiple threads due to the GIL. Off-loading the cpu-heavy tasks to another "process" by using `multiprocessing` might...

@araii Sorry for late reply. I confirmed it was not working, while it worked well weeks ago. I am asking the Streamlit Cloud team member, and as the core team...

Hi, I updated the [WebRTC sample app on Community Cloud](https://webrtc.streamlit.app/) to use STUN/TURN servers provided by [Twilio Network Traversal Service](https://www.twilio.com/docs/stun-turn). I think the demo is working now. The source code...

I updated the section in README.md about TURN servers: https://github.com/whitphx/streamlit-webrtc#configure-the-turn-server-if-necessary

The same error occurred on the official demo hosted on the Community Cloud (https://webrtc.streamlit.app/) as reported at #1213, and I resolved it as https://github.com/whitphx/streamlit-webrtc/issues/1213#issuecomment-1521848187. In short, the network infra of...

Unfortunately it's not supported to handle both types of input in a single callback due to WebRTC's nature that video and audio tracks are streamed separately and asynchronously. To do...