Browse Source

fix error screen generation

pull/2594/head
Jason Dove 9 months ago
parent
commit
2b4c02cd43
No known key found for this signature in database
  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/).
- Fix classic schedule start time calculation across a UTC offset change - Fix classic schedule start time calculation across a UTC offset change
- Fix XMLTV generation for channels using on-demand playout mode - Fix XMLTV generation for channels using on-demand playout mode
- Fix some file not found songs missing from trash view - Fix some file not found songs missing from trash view
- Fix error screen generation
### Changed ### Changed
- Use smaller batch size for search index updates (100, down from 1000) - 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
if (!string.IsNullOrWhiteSpace(options)) if (!string.IsNullOrWhiteSpace(options))
{ {
hlsSegmentOptions = $"mpegts_options={options}"; hlsSegmentOptions = $"mpegts_flags={options}";
} }
} }

Loading…
Cancel
Save