From cdc13a02673f158937e6d43dca1c3238659f1979 Mon Sep 17 00:00:00 2001 From: vexorian Date: Tue, 28 Nov 2023 23:20:08 -0400 Subject: [PATCH] 'Preludes' can be disabled in ffmpeg options --- src/video.js | 5 +++++ web/public/templates/ffmpeg-settings.html | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/src/video.js b/src/video.js index c21481c..a2361dd 100644 --- a/src/video.js +++ b/src/video.js @@ -183,6 +183,11 @@ function video( channelService, fillerDB, db, programmingService, activeChannelS return } + if (ffmpegSettings.disablePreludes === true) { + //disable the preludes + isBetween = false; + } + diff --git a/web/public/templates/ffmpeg-settings.html b/web/public/templates/ffmpeg-settings.html index ac6032b..6f4ae84 100644 --- a/web/public/templates/ffmpeg-settings.html +++ b/web/public/templates/ffmpeg-settings.html @@ -196,6 +196,18 @@ +

+
+
+
+ + + In an attempt to improve playback, dizqueTV insets really short clips of black screen between videos. The idea is that if the stream pauses because Plex is taking too long to reply, it will pause during one of those black screens instead of interrupting the last second of a video. If you suspect these black screens are causing trouble instead of helping, you can disable them with this option. + +
+
+
+