From c7486d662849cd6615f3e376d19d627a4d802e0f Mon Sep 17 00:00:00 2001 From: Liam Date: Sat, 2 Mar 2024 16:39:33 +0000 Subject: [PATCH] revert --- unifi/cams/base.py | 34 ++++++++++++++++++++++------------ unifi/cams/reolink.py | 6 +++--- 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/unifi/cams/base.py b/unifi/cams/base.py index b1fae0e..04ce415 100644 --- a/unifi/cams/base.py +++ b/unifi/cams/base.py @@ -903,8 +903,20 @@ class UnifiCamBase(metaclass=ABCMeta): base_args = [ "-avoid_negative_ts", "make_zero", - # "-use_wallclock_as_timestamps 1", + "-fflags", + "+genpts+discardcorrupt", + "-use_wallclock_as_timestamps 1", ] + + try: + output = subprocess.check_output(["ffmpeg", "-h", "full"]) + if b"stimeout" in output: + base_args.append("-stimeout 15000000") + else: + base_args.append("-timeout 15000000") + except subprocess.CalledProcessError: + self.logger.exception("Could not check for ffmpeg options") + return " ".join(base_args) async def start_video_stream( @@ -916,18 +928,16 @@ class UnifiCamBase(metaclass=ABCMeta): if not has_spawned or is_dead: source = await self.get_stream_source(stream_index) cmd = ( - "ffmpeg -nostdin -loglevel debug -y" - f" {self.get_base_ffmpeg_args(stream_index)}" - f' -i "{source}"' - f" {self.get_extra_ffmpeg_args(stream_index)}" - f" -metadata streamName={stream_name} -f flv -" - f" | {sys.executable} -m unifi.clock_sync" - f" {'--write-timestamps' if self._needs_flv_timestamps else ''}" - f" | nc {destination[0]} {destination[1]}" + "ffmpeg -nostdin -loglevel error -y" + f" {self.get_base_ffmpeg_args(stream_index)} -rtsp_transport" + f' {self.args.rtsp_transport} -i "{source}"' + f" {self.get_extra_ffmpeg_args(stream_index)} -metadata" + f" streamName={stream_name} -f flv - | {sys.executable} -m" + " unifi.clock_sync" + f" {'--write-timestamps' if self._needs_flv_timestamps else ''} | nc" + f" {destination[0]} {destination[1]}" ) - - if is_dead: self.logger.warn(f"Previous ffmpeg process for {stream_index} died.") @@ -935,7 +945,7 @@ class UnifiCamBase(metaclass=ABCMeta): f"Spawning ffmpeg for {stream_index} ({stream_name}): {cmd}" ) self._ffmpeg_handles[stream_index] = subprocess.Popen( - cmd, shell=True + cmd, stdout=subprocess.DEVNULL, shell=True ) def stop_video_stream(self, stream_index: str): diff --git a/unifi/cams/reolink.py b/unifi/cams/reolink.py index ae2ef44..e079e3a 100644 --- a/unifi/cams/reolink.py +++ b/unifi/cams/reolink.py @@ -108,6 +108,7 @@ class Reolink(UnifiCamBase): self.logger.info("Trigger motion end") await self.trigger_motion_stop() else: + # pass self.logger.error( "Motion API request responded with " "unexpected JSON, retrying. " @@ -143,7 +144,6 @@ class Reolink(UnifiCamBase): stream = self.args.substream return ( - f"rtmp://{self.args.ip}/bcs/channel{self.args.channel}_{stream}.bcs" - f"?channel={self.args.channel}&stream=0&user={self.args.username}" - f"&password={self.args.password}" + f"rtsp://{self.args.username}:{self.args.password}@{self.args.ip}:554" + f"//h264Preview_{int(self.args.channel) + 1:02}_{stream}" )