From d2cbfcb79a1c5f44e826ae4233f64a6ede76a62d Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Sun, 2 Nov 2025 10:41:56 -0600 Subject: [PATCH] fix error screen generation (#2594) --- CHANGELOG.md | 1 + ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 246cbc5d4..ec831e201 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Fix classic schedule start time calculation across a UTC offset change - Fix XMLTV generation for channels using on-demand playout mode - Fix some file not found songs missing from trash view +- Fix error screen generation ### Changed - Use smaller batch size for search index updates (100, down from 1000) diff --git a/ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs b/ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs index bf0426147..ff645ab60 100644 --- a/ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs +++ b/ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs @@ -697,7 +697,7 @@ public class FFmpegLibraryProcessService : IFFmpegProcessService if (!string.IsNullOrWhiteSpace(options)) { - hlsSegmentOptions = $"mpegts_options={options}"; + hlsSegmentOptions = $"mpegts_flags={options}"; } }