streamlit-webrtc 0.60.2__tar.gz → 0.60.3__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.
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/PKG-INFO +1 -1
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/webrtc.py +9 -1
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/.gitignore +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/LICENSE +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/README.md +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/pyproject.toml +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/__init__.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/_compat.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/component.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/components_callbacks.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/config.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/credentials.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/eventloop.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/factory.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/frontend/dist/assets/index-DV2u3ooX.js +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/frontend/dist/index.html +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/mix.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/models.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/process.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/py.typed +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/receive.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/relay.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/server.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/session_info.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/shutdown.py +0 -0
- {streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/source.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: streamlit-webrtc
|
3
|
-
Version: 0.60.
|
3
|
+
Version: 0.60.3
|
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>
|
@@ -620,7 +620,15 @@ class WebRtcWorker(Generic[VideoProcessorT, AudioProcessorT]):
|
|
620
620
|
if candidate_id in self._added_ice_candidate_ids:
|
621
621
|
continue
|
622
622
|
|
623
|
-
|
623
|
+
try:
|
624
|
+
candidate = candidate_from_sdp(candidate_dict["candidate"])
|
625
|
+
except Exception as e:
|
626
|
+
logger.error(
|
627
|
+
"Error occurred while parsing candidate %s: %s",
|
628
|
+
candidate_dict["candidate"],
|
629
|
+
e,
|
630
|
+
)
|
631
|
+
continue
|
624
632
|
candidate.sdpMid = candidate_dict.get("sdpMid")
|
625
633
|
candidate.sdpMLineIndex = candidate_dict.get("sdpMLineIndex")
|
626
634
|
# candidate.usernameFragment = candidate_dict.get("usernameFragment")
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/components_callbacks.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{streamlit_webrtc-0.60.2 → streamlit_webrtc-0.60.3}/streamlit_webrtc/frontend/dist/index.html
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|