Browse Source

fix error screen generation (#2594)

pull/2595/head
Jason Dove 9 months ago committed by GitHub
parent
commit
d2cbfcb79a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs

1
CHANGELOG.md

@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -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)

2
ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs

@ -697,7 +697,7 @@ public class FFmpegLibraryProcessService : IFFmpegProcessService @@ -697,7 +697,7 @@ public class FFmpegLibraryProcessService : IFFmpegProcessService
if (!string.IsNullOrWhiteSpace(options))
{
hlsSegmentOptions = $"mpegts_options={options}";
hlsSegmentOptions = $"mpegts_flags={options}";
}
}

Loading…
Cancel
Save