python-aidot-cameras 0.5.12__tar.gz → 0.5.13__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.
- {python_aidot_cameras-0.5.12/src/python_aidot_cameras.egg-info → python_aidot_cameras-0.5.13}/PKG-INFO +1 -1
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/pyproject.toml +1 -1
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/device_client.py +7 -1
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13/src/python_aidot_cameras.egg-info}/PKG-INFO +1 -1
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/LICENSE +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/README.md +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/setup.cfg +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/__init__.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/aes_utils.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/client.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/const.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/credentials.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/discover.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/exceptions.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/aidot/g711.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/python_aidot_cameras.egg-info/SOURCES.txt +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/python_aidot_cameras.egg-info/dependency_links.txt +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/python_aidot_cameras.egg-info/requires.txt +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/src/python_aidot_cameras.egg-info/top_level.txt +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_alarm_event.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_highport_nomination.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_motion_poll.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_no_undefined_names.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_sdes_idle_release.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_sdes_sprop.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_sdes_talk.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_sdes_watchdog.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_speak.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_stream_cap.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_talk.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_terminal_ack.py +0 -0
- {python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_token_refresh.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-aidot-cameras
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.13
|
|
4
4
|
Summary: Control AiDot/Leedarson WiFi lights and cameras (WebRTC streaming, two-way audio, PTZ, controls)
|
|
5
5
|
Author-email: cbrightly <chris.brightly@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-aidot-cameras"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.13"
|
|
8
8
|
description = "Control AiDot/Leedarson WiFi lights and cameras (WebRTC streaming, two-way audio, PTZ, controls)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -4196,6 +4196,7 @@ class DeviceClient(object):
|
|
|
4196
4196
|
self,
|
|
4197
4197
|
rtsp_push_url: Optional[str] = None,
|
|
4198
4198
|
fast_connect: Optional[bool] = None,
|
|
4199
|
+
sdes_audio: Optional[bool] = None,
|
|
4199
4200
|
) -> None:
|
|
4200
4201
|
"""Start a persistent stream that keeps the camera session alive.
|
|
4201
4202
|
|
|
@@ -4217,6 +4218,8 @@ class DeviceClient(object):
|
|
|
4217
4218
|
"""
|
|
4218
4219
|
if fast_connect is not None:
|
|
4219
4220
|
self._fast_connect_opt = fast_connect
|
|
4221
|
+
if sdes_audio is not None:
|
|
4222
|
+
self._sdes_audio_opt = sdes_audio
|
|
4220
4223
|
if self._stream_task is not None and not self._stream_task.done():
|
|
4221
4224
|
return
|
|
4222
4225
|
self._keepalive_rtsp_url = rtsp_push_url
|
|
@@ -11952,7 +11955,10 @@ class DeviceClient(object):
|
|
|
11952
11955
|
# via AIDOT_SDES_AUDIO_GAIN_DB). Dynamic normalizers (dynaudnorm/
|
|
11953
11956
|
# loudnorm) and `-max_interleave_delta 0` are avoided - both regressed
|
|
11954
11957
|
# the pipe (buffering / ~100 ms audio cutouts) in earlier live tests.
|
|
11955
|
-
|
|
11958
|
+
_sdes_audio = getattr(self, "_sdes_audio_opt", None)
|
|
11959
|
+
if _sdes_audio is None:
|
|
11960
|
+
_sdes_audio = os.environ.get("AIDOT_SDES_SERVE_AUDIO", "0") == "1"
|
|
11961
|
+
if _sdes_audio:
|
|
11956
11962
|
try:
|
|
11957
11963
|
_sdes_gain_db = float(
|
|
11958
11964
|
os.environ.get("AIDOT_SDES_AUDIO_GAIN_DB", "-8")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-aidot-cameras
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.13
|
|
4
4
|
Summary: Control AiDot/Leedarson WiFi lights and cameras (WebRTC streaming, two-way audio, PTZ, controls)
|
|
5
5
|
Author-email: cbrightly <chris.brightly@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_highport_nomination.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_aidot_cameras-0.5.12 → python_aidot_cameras-0.5.13}/tests/test_no_undefined_names.py
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
|