john
All checks were successful
Build Docker image / docker (push) Successful in 1m41s

This commit is contained in:
Lee 2024-03-02 13:55:48 +00:00
parent 50d297d41f
commit 865199e5ec

@ -938,14 +938,16 @@ class UnifiCamBase(metaclass=ABCMeta):
# f" {destination[0]} {destination[1]}" # f" {destination[0]} {destination[1]}"
# ) # )
cmd = ( cmd = (
"ffmpeg -nostdin -loglevel debug -y" "ffmpeg -nostdin -loglevel debug -y "
f" {self.get_base_ffmpeg_args(stream_index)}" f"{self.get_base_ffmpeg_args(stream_index)} "
f' -i "{source}"' f'-i "{source}" '
f" {self.get_extra_ffmpeg_args(stream_index)} -metadata streamName={stream_name} -f flv -" f"{self.get_extra_ffmpeg_args(stream_index)} "
f" | nc {destination[0]} {destination[1]}" f"-metadata streamName={stream_name} -f flv - "
f"| nc {destination[0]} {destination[1]}"
) )
if is_dead: if is_dead:
self.logger.warn(f"Previous ffmpeg process for {stream_index} died.") self.logger.warn(f"Previous ffmpeg process for {stream_index} died.")