streamlit-webrtc 0.54.0__tar.gz → 0.55.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/PKG-INFO +1 -1
  2. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/component.py +1 -1
  3. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/webrtc.py +1 -1
  4. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/.gitignore +0 -0
  5. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/LICENSE +0 -0
  6. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/README.md +0 -0
  7. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/pyproject.toml +0 -0
  8. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/__init__.py +0 -0
  9. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/_compat.py +0 -0
  10. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/components_callbacks.py +0 -0
  11. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/config.py +0 -0
  12. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/credentials.py +0 -0
  13. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/eventloop.py +0 -0
  14. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/factory.py +0 -0
  15. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/frontend/dist/assets/index-DMhSSwr2.js +0 -0
  16. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/frontend/dist/index.html +0 -0
  17. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/mix.py +0 -0
  18. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/models.py +0 -0
  19. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/process.py +0 -0
  20. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/py.typed +0 -0
  21. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/receive.py +0 -0
  22. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/relay.py +0 -0
  23. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/server.py +0 -0
  24. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/session_info.py +0 -0
  25. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/shutdown.py +0 -0
  26. {streamlit_webrtc-0.54.0 → streamlit_webrtc-0.55.0}/streamlit_webrtc/source.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: streamlit-webrtc
3
- Version: 0.54.0
3
+ Version: 0.55.0
4
4
  Summary: Real-time video and audio processing on Streamlit
5
5
  Project-URL: Repository, https://github.com/whitphx/streamlit-webrtc
6
6
  Author-email: "Yuichiro Tachibana (Tsuchiya)" <t.yic.yt@gmail.com>
@@ -637,7 +637,7 @@ def webrtc_streamer(
637
637
  sendback_video=sendback_video,
638
638
  sendback_audio=sendback_audio,
639
639
  )
640
- webrtc_worker.process_offer(sdp_offer["sdp"], sdp_offer["type"])
640
+ webrtc_worker.process_offer(sdp_offer["sdp"], sdp_offer["type"], timeout=None)
641
641
  context._set_worker(webrtc_worker)
642
642
  # Rerun to send the SDP answer to frontend
643
643
  rerun()
@@ -561,7 +561,7 @@ class WebRtcWorker(Generic[VideoProcessorT, AudioProcessorT]):
561
561
  process_offer_task.add_done_callback(callback)
562
562
 
563
563
  def process_offer(
564
- self, sdp, type_, timeout: Union[float, None] = 10.0
564
+ self, sdp, type_, timeout: Union[float, None] = None
565
565
  ) -> RTCSessionDescription:
566
566
  self._process_offer_thread = threading.Thread(
567
567
  target=self._run_process_offer_thread,