e
All checks were successful
Build Docker image / docker (push) Successful in 1m37s

This commit is contained in:
Lee 2024-03-02 14:38:32 +00:00
parent 358261fd32
commit 2ec6f808ca

@ -903,7 +903,7 @@ class UnifiCamBase(metaclass=ABCMeta):
base_args = [ base_args = [
# "-avoid_negative_ts", # "-avoid_negative_ts",
# "make_zero", # "make_zero",
"-fflags", # "-fflags",
# "+genpts+discardcorrupt", # "+genpts+discardcorrupt",
# "-use_wallclock_as_timestamps 1", # "-use_wallclock_as_timestamps 1",
] ]
@ -938,11 +938,11 @@ 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)} " f" {self.get_extra_ffmpeg_args(stream_index)}"
f"-metadata streamName={stream_name} - | nc {destination[0]} {destination[1]}" f" -metadata streamName={stream_name} -f flv - | nc {destination[0]} {destination[1]}"
) )