matrice-streaming 0.1.60__py3-none-any.whl → 0.1.62__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.
- matrice_streaming/__init__.py +5 -2
- matrice_streaming/streaming_gateway/camera_streamer/__init__.py +26 -2
- matrice_streaming/streaming_gateway/camera_streamer/nvdec.py +961 -0
- matrice_streaming/streaming_gateway/camera_streamer/nvdec_worker_manager.py +380 -0
- matrice_streaming/streaming_gateway/streaming_gateway.py +182 -11
- {matrice_streaming-0.1.60.dist-info → matrice_streaming-0.1.62.dist-info}/METADATA +1 -1
- {matrice_streaming-0.1.60.dist-info → matrice_streaming-0.1.62.dist-info}/RECORD +10 -8
- {matrice_streaming-0.1.60.dist-info → matrice_streaming-0.1.62.dist-info}/WHEEL +0 -0
- {matrice_streaming-0.1.60.dist-info → matrice_streaming-0.1.62.dist-info}/licenses/LICENSE.txt +0 -0
- {matrice_streaming-0.1.60.dist-info → matrice_streaming-0.1.62.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
matrice_streaming/__init__.py,sha256=
|
|
1
|
+
matrice_streaming/__init__.py,sha256=I8Op5-eLKbnCHV4gW25wwEd-PhrdiPQ61XAHzjQSwB8,1447
|
|
2
2
|
matrice_streaming/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
matrice_streaming/client/__init__.py,sha256=xkONxPt6ZX46098YE-qMPQXtqfDwGxc2k_n4i89vC1c,81
|
|
4
4
|
matrice_streaming/client/client.py,sha256=27rEXAZJ1jepe77uJN6COZyMWRX4pEDTyidZvNlJS40,18955
|
|
@@ -14,11 +14,11 @@ matrice_streaming/streaming_gateway/dynamic_camera_manager.py,sha256=DCXyufxK_z4
|
|
|
14
14
|
matrice_streaming/streaming_gateway/event_listener.py,sha256=7x-TKjsAsSFXlGq88bfGB1IR8A5rJTrAotJEBklyofk,3084
|
|
15
15
|
matrice_streaming/streaming_gateway/metrics_reporter.py,sha256=N9At7kEvY6mkMzibdcSzyo4JJYhBiy9Kxqtd0AfuGCY,46670
|
|
16
16
|
matrice_streaming/streaming_gateway/streaming_action.py,sha256=o6favSDGY0wTMBCsx1lai8x7aBSDyGswAvDFIvsPYgA,30189
|
|
17
|
-
matrice_streaming/streaming_gateway/streaming_gateway.py,sha256=
|
|
17
|
+
matrice_streaming/streaming_gateway/streaming_gateway.py,sha256=fxKsR0QkQGyncEkpg-ZtEqTFenlFOD8BlC1baK98a7o,61124
|
|
18
18
|
matrice_streaming/streaming_gateway/streaming_gateway_utils.py,sha256=6kNYgl3f7HmeKFKYUW1IncNv8zT6rqpQxh_FDWEbKow,25271
|
|
19
19
|
matrice_streaming/streaming_gateway/streaming_status_listener.py,sha256=RgbW0xYbbpmO6ZjkVlh6fg8iqkpRaIShR2dQ3SMVFUw,3161
|
|
20
20
|
matrice_streaming/streaming_gateway/camera_streamer/ARCHITECTURE.md,sha256=kngsqiS1PdNYhihBoMtoiIf3THJ4OM33E_hxExqzKqY,9980
|
|
21
|
-
matrice_streaming/streaming_gateway/camera_streamer/__init__.py,sha256=
|
|
21
|
+
matrice_streaming/streaming_gateway/camera_streamer/__init__.py,sha256=8KyT8W_ckrukaP-vTnX78zD57OglYThSOl_HB7zW524,1907
|
|
22
22
|
matrice_streaming/streaming_gateway/camera_streamer/async_camera_worker.py,sha256=Bg7yfkCn2RofLqviq22eKRhdxMYtqaeTFJC2no94_lI,59278
|
|
23
23
|
matrice_streaming/streaming_gateway/camera_streamer/async_ffmpeg_worker.py,sha256=isBYJnnbdxefkRrV2BsizCSZe1ZDPn5wfoTSOTtObsU,37007
|
|
24
24
|
matrice_streaming/streaming_gateway/camera_streamer/camera_streamer.py,sha256=1BzWnwfPEWPVQ6gBW7uZFvykq2zEvygd5LWE6uqVRhY,39085
|
|
@@ -33,6 +33,8 @@ matrice_streaming/streaming_gateway/camera_streamer/gstreamer_camera_streamer.py
|
|
|
33
33
|
matrice_streaming/streaming_gateway/camera_streamer/gstreamer_worker.py,sha256=AqKNJ6q_BxFphOlJ2GaS4WpoLCHXLEu5JVvoKQNrGV0,42822
|
|
34
34
|
matrice_streaming/streaming_gateway/camera_streamer/gstreamer_worker_manager.py,sha256=jlKwIWWMXpztdyKiyremGmkVyw9mf2AxEmT7154xnrc,22002
|
|
35
35
|
matrice_streaming/streaming_gateway/camera_streamer/message_builder.py,sha256=W295q6cIm05ReF1ooQus3rsKgZOG3EldZplbQco-OyM,10231
|
|
36
|
+
matrice_streaming/streaming_gateway/camera_streamer/nvdec.py,sha256=pn7dxu0ymCBbAuYI5y63j_Zj_8TexKywpyTb6JYitI4,36721
|
|
37
|
+
matrice_streaming/streaming_gateway/camera_streamer/nvdec_worker_manager.py,sha256=qVo2Q8IVEWsIbcNdC9mueTos6wMFXJ1g9ZrkoFN-gIA,14391
|
|
36
38
|
matrice_streaming/streaming_gateway/camera_streamer/platform_pipelines.py,sha256=UNjsYYWbUJteOq2tzxISFAbWMa2e9GUExSS6fWc2Aow,27303
|
|
37
39
|
matrice_streaming/streaming_gateway/camera_streamer/retry_manager.py,sha256=d8tlGoWoeSlgpCgXbUHTM61ekCQZki7TO1HzL2yPVzk,3607
|
|
38
40
|
matrice_streaming/streaming_gateway/camera_streamer/stream_statistics.py,sha256=VC1S6ogiHUTlzTqn2wGOC1ClOEjvDgWm9Ydi9sWj-Do,18951
|
|
@@ -47,8 +49,8 @@ matrice_streaming/streaming_gateway/debug/debug_streaming_gateway.py,sha256=ZiDg
|
|
|
47
49
|
matrice_streaming/streaming_gateway/debug/debug_utils.py,sha256=jWcSBgrk_YVt1QzSyw6geX17YBnTvgVdA5ubqO531a0,10477
|
|
48
50
|
matrice_streaming/streaming_gateway/debug/example_debug_streaming.py,sha256=-gS8zNDswAoj6oss66QQWYZhY24usfLiMH0FFK06vV0,7994
|
|
49
51
|
matrice_streaming/streaming_gateway/debug/test_videoplayback.py,sha256=s_dgWkoESiuJHlUAf_iv4d7OGmAhwocwDZmIcFUZzvo,11093
|
|
50
|
-
matrice_streaming-0.1.
|
|
51
|
-
matrice_streaming-0.1.
|
|
52
|
-
matrice_streaming-0.1.
|
|
53
|
-
matrice_streaming-0.1.
|
|
54
|
-
matrice_streaming-0.1.
|
|
52
|
+
matrice_streaming-0.1.62.dist-info/licenses/LICENSE.txt,sha256=_uQUZpgO0mRYL5-fPoEvLSbNnLPv6OmbeEDCHXhK6Qc,1066
|
|
53
|
+
matrice_streaming-0.1.62.dist-info/METADATA,sha256=qck0VzUMpKa3-tIg5v9R8ag9vRDE1L_qGgGsovc5LM0,2477
|
|
54
|
+
matrice_streaming-0.1.62.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
55
|
+
matrice_streaming-0.1.62.dist-info/top_level.txt,sha256=PM_trIe8f4JLc90J871rNMYGVM3Po9Inx4As5LrCFUU,18
|
|
56
|
+
matrice_streaming-0.1.62.dist-info/RECORD,,
|
|
File without changes
|
{matrice_streaming-0.1.60.dist-info → matrice_streaming-0.1.62.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
|
File without changes
|