streamlit-webrtc 0.47.7__py3-none-any.whl → 0.47.9__py3-none-any.whl
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/component.py +3 -9
- streamlit_webrtc/config.py +1 -6
- streamlit_webrtc/factory.py +1 -6
- streamlit_webrtc/frontend/build/asset-manifest.json +3 -3
- streamlit_webrtc/frontend/build/index.html +1 -1
- streamlit_webrtc/frontend/build/static/js/main.ff279b83.js +103 -0
- streamlit_webrtc/frontend/build/static/js/main.ff279b83.js.map +1 -0
- streamlit_webrtc/webrtc.py +3 -8
- {streamlit_webrtc-0.47.7.dist-info → streamlit_webrtc-0.47.9.dist-info}/METADATA +4 -5
- {streamlit_webrtc-0.47.7.dist-info → streamlit_webrtc-0.47.9.dist-info}/RECORD +13 -13
- streamlit_webrtc/frontend/build/static/js/main.9c17b353.js +0 -3
- streamlit_webrtc/frontend/build/static/js/main.9c17b353.js.map +0 -1
- /streamlit_webrtc/frontend/build/static/js/{main.9c17b353.js.LICENSE.txt → main.ff279b83.js.LICENSE.txt} +0 -0
- {streamlit_webrtc-0.47.7.dist-info → streamlit_webrtc-0.47.9.dist-info}/LICENSE +0 -0
- {streamlit_webrtc-0.47.7.dist-info → streamlit_webrtc-0.47.9.dist-info}/WHEEL +0 -0
streamlit_webrtc/webrtc.py
CHANGED
@@ -4,19 +4,14 @@ import itertools
|
|
4
4
|
import logging
|
5
5
|
import queue
|
6
6
|
import threading
|
7
|
-
from typing import Callable, Generic, Optional, Union, cast
|
8
|
-
|
9
|
-
from streamlit_webrtc.shutdown import SessionShutdownObserver
|
10
|
-
|
11
|
-
try:
|
12
|
-
from typing import Literal
|
13
|
-
except ImportError:
|
14
|
-
from typing_extensions import Literal # type: ignore
|
7
|
+
from typing import Callable, Generic, Literal, Optional, Union, cast
|
15
8
|
|
16
9
|
from aiortc import RTCPeerConnection, RTCSessionDescription
|
17
10
|
from aiortc.contrib.media import MediaPlayer, MediaRecorder, MediaRelay
|
18
11
|
from aiortc.mediastreams import MediaStreamTrack
|
19
12
|
|
13
|
+
from streamlit_webrtc.shutdown import SessionShutdownObserver
|
14
|
+
|
20
15
|
from .eventloop import get_global_event_loop
|
21
16
|
from .models import (
|
22
17
|
AudioFrameCallback,
|
@@ -1,10 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: streamlit-webrtc
|
3
|
-
Version: 0.47.
|
4
|
-
Summary:
|
3
|
+
Version: 0.47.9
|
4
|
+
Summary: Real-time video and audio processing on Streamlit
|
5
5
|
Home-page: https://github.com/whitphx/streamlit-webrtc
|
6
6
|
License: MIT
|
7
|
-
Author: Yuichiro Tsuchiya
|
7
|
+
Author: Yuichiro Tachibana (Tsuchiya)
|
8
8
|
Author-email: t.yic.yt@gmail.com
|
9
9
|
Requires-Python: >=3.8, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -14,10 +14,9 @@ Classifier: Programming Language :: Python :: 3.9
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.10
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
17
|
-
Requires-Dist: aiortc (>=1.
|
17
|
+
Requires-Dist: aiortc (>=1.9.0,<2.0.0)
|
18
18
|
Requires-Dist: packaging (>=20.0)
|
19
19
|
Requires-Dist: streamlit (>=0.84.1)
|
20
|
-
Requires-Dist: typing_extensions (>=3.7.4,<5.0.0) ; python_version < "3.8"
|
21
20
|
Project-URL: Repository, https://github.com/whitphx/streamlit-webrtc
|
22
21
|
Description-Content-Type: text/markdown
|
23
22
|
|
@@ -1,15 +1,15 @@
|
|
1
1
|
streamlit_webrtc/__init__.py,sha256=q5YB2Sx6amHctUMrZ76UqLgB5mrdR6ArRDK6eiKyKBo,2254
|
2
2
|
streamlit_webrtc/_compat.py,sha256=X184CDqHsg22_2ajWzOMgNr0UiCtwv-1BWaKNSFNrt0,3745
|
3
|
-
streamlit_webrtc/component.py,sha256=
|
3
|
+
streamlit_webrtc/component.py,sha256=xkE2LSdXvH6Bj6cskRGE-YM4DYYXbt-Hs1-BcrJo1FU,24024
|
4
4
|
streamlit_webrtc/components_callbacks.py,sha256=tdrj2TlV8qcexFEdjm4PVkz8JwHffo4A8imoXOtjNHA,2401
|
5
|
-
streamlit_webrtc/config.py,sha256=
|
5
|
+
streamlit_webrtc/config.py,sha256=Yoppkv0aHFEpHp5IWPgy3tbohAsm-FGEtoH5Zbgwltw,4114
|
6
6
|
streamlit_webrtc/eventloop.py,sha256=AFmxGlRRxVdl0cTS9pKpRZR2Mnq6v6DgudVZZ425IVw,1333
|
7
|
-
streamlit_webrtc/factory.py,sha256=
|
8
|
-
streamlit_webrtc/frontend/build/asset-manifest.json,sha256=
|
9
|
-
streamlit_webrtc/frontend/build/index.html,sha256=
|
10
|
-
streamlit_webrtc/frontend/build/static/js/main.
|
11
|
-
streamlit_webrtc/frontend/build/static/js/main.
|
12
|
-
streamlit_webrtc/frontend/build/static/js/main.
|
7
|
+
streamlit_webrtc/factory.py,sha256=XeHefJ6d_aHE7Oy_oqz5dWsfVKuVxjtifilvs4cMBWs,6806
|
8
|
+
streamlit_webrtc/frontend/build/asset-manifest.json,sha256=4NkiKr1FEUv_5FCvWWCLE84L2uGEGr5itOy1hGk1-IE,221
|
9
|
+
streamlit_webrtc/frontend/build/index.html,sha256=Cp3X6AH856niw8ESeZUMMqBl94NfcAKrNKr8TX_zd7g,457
|
10
|
+
streamlit_webrtc/frontend/build/static/js/main.ff279b83.js,sha256=fUiXyvYwPjZsDu5g0cyXDk1VLhQ9AESQ40IyN4ft8Z4,557766
|
11
|
+
streamlit_webrtc/frontend/build/static/js/main.ff279b83.js.LICENSE.txt,sha256=tFd79Iemf1ZVv96kX3gab39vXsPh-SFeKpfkk0rgyYE,4256
|
12
|
+
streamlit_webrtc/frontend/build/static/js/main.ff279b83.js.map,sha256=LzaNuxQvqeDroTfpeK2kX2oakL8SKBKQbZUgkwmUM04,2319221
|
13
13
|
streamlit_webrtc/mix.py,sha256=Cd1a3bmJdCY_5Ita-bvW0Y5a0ydLHBANojBOqJ1Govo,8692
|
14
14
|
streamlit_webrtc/models.py,sha256=xhrz9OpNsOarlN30YpBqVQwkTs4NUk_PLI6a7fIv950,6184
|
15
15
|
streamlit_webrtc/process.py,sha256=_VzGmDA_q4XtReoM3tfF8RaxH44E_ZbCZLEOJdT-Thk,7782
|
@@ -20,8 +20,8 @@ streamlit_webrtc/server.py,sha256=5o9E2MRIPoS18lfGPJkyhbd23RWyTwblNVVuAA2kKrA,14
|
|
20
20
|
streamlit_webrtc/session_info.py,sha256=pg_2RFexR18UfwpZT5ENcPfedEiWuAxBuXc2RRuFCaE,2341
|
21
21
|
streamlit_webrtc/shutdown.py,sha256=rbWMhOIrbOBZDlqqBTzCfs4MuHQ0UEhljkNvvXoeTz0,2171
|
22
22
|
streamlit_webrtc/source.py,sha256=haPqMZ50Xh8tg7Z1yN8Frfk8v7D3oOuKteaD59asbzs,2263
|
23
|
-
streamlit_webrtc/webrtc.py,sha256=
|
24
|
-
streamlit_webrtc-0.47.
|
25
|
-
streamlit_webrtc-0.47.
|
26
|
-
streamlit_webrtc-0.47.
|
27
|
-
streamlit_webrtc-0.47.
|
23
|
+
streamlit_webrtc/webrtc.py,sha256=grVZTC1wnL8ZpPO0vjABarvAzXzinTAWSSND-SdTAzc,27064
|
24
|
+
streamlit_webrtc-0.47.9.dist-info/LICENSE,sha256=pwccNHVA7r4rYofGlMU10aKEU90GLUlQr8uY80PR0NQ,1081
|
25
|
+
streamlit_webrtc-0.47.9.dist-info/METADATA,sha256=9ArN_gVKllftNk5EwkFs10wjLWdNwI2x_CeiF_ygADs,19108
|
26
|
+
streamlit_webrtc-0.47.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
27
|
+
streamlit_webrtc-0.47.9.dist-info/RECORD,,
|