From d0e6b3e2683614d16a2f78761df64cec7d72f768 Mon Sep 17 00:00:00 2001 From: uvjustin <46082645+uvjustin@users.noreply.github.com> Date: Sun, 13 Sep 2020 03:19:37 +0800 Subject: [PATCH] Remove skip_sidx container option in stream (#39970) * Remove skip_sidx container option * Add comment --- homeassistant/components/stream/hls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/stream/hls.py b/homeassistant/components/stream/hls.py index 1e97ac222ec..816d1231c4c 100644 --- a/homeassistant/components/stream/hls.py +++ b/homeassistant/components/stream/hls.py @@ -148,7 +148,8 @@ class HlsStreamOutput(StreamOutput): def container_options(self) -> Callable[[int], dict]: """Return Callable which takes a sequence number and returns container options.""" return lambda sequence: { - "movflags": "frag_custom+empty_moov+default_base_moof+skip_sidx+frag_discont", + # Removed skip_sidx - see https://github.com/home-assistant/core/pull/39970 + "movflags": "frag_custom+empty_moov+default_base_moof+frag_discont", "avoid_negative_ts": "make_non_negative", "fragment_index": str(sequence), }