From 3b78df07dec8d59674a4bf9052830dbd08565012 Mon Sep 17 00:00:00 2001 From: uvjustin <46082645+uvjustin@users.noreply.github.com> Date: Fri, 21 Oct 2022 07:34:03 -0700 Subject: [PATCH] Use empty_moov in stream recorder (#80726) --- homeassistant/components/stream/recorder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/stream/recorder.py b/homeassistant/components/stream/recorder.py index 1eb7a6feedb..e917292251a 100644 --- a/homeassistant/components/stream/recorder.py +++ b/homeassistant/components/stream/recorder.py @@ -106,7 +106,7 @@ class RecorderOutput(StreamOutput): format=RECORDER_CONTAINER_FORMAT, container_options={ "video_track_timescale": str(int(1 / source_v.time_base)), - "movflags": "frag_keyframe", + "movflags": "frag_keyframe+empty_moov", "min_frag_duration": str( self.stream_settings.min_segment_duration ),