From 13f3a0aadae62bad23504482986e1add67301aa5 Mon Sep 17 00:00:00 2001 From: mrlt8 <67088095+mrlt8@users.noreply.github.com> Date: Mon, 6 May 2024 19:17:03 -0700 Subject: [PATCH] keep trying to identify audio #1172 --- app/wyzecam/iotc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/wyzecam/iotc.py b/app/wyzecam/iotc.py index 563c33cd..2742fe96 100644 --- a/app/wyzecam/iotc.py +++ b/app/wyzecam/iotc.py @@ -675,7 +675,7 @@ def get_audio_codec_from_codec_id(self, codec_id: int) -> tuple[str, int]: logger.info(f"[AUDIO] {codec=} {sample_rate=} {codec_id=}") return codec, sample_rate - def identify_audio_codec(self, limit: int = 25) -> tuple[str, int]: + def identify_audio_codec(self, limit: int = 60) -> tuple[str, int]: """Identify audio codec.""" assert self.av_chan_id is not None, "Please call _connect() first!"