/// Gets or sets the minimum percentage of a frame that must consist of black pixels before it is considered a black frame.
diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html
index ccbb6b8..f287c2a 100644
--- a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html
+++ b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html
@@ -48,7 +48,7 @@
If enabled, credits will be automatically analyzed for new media
- Note: Selecting neither Intro nor Credit Detection will disable automatic scans. To configure the scheduled task, see
scheduled tasks.
+ Note: Not selecting at least one automatic detection type will disable automatic scans. To configure the scheduled task, see
scheduled tasks.
@@ -136,6 +136,26 @@
+
+
+
+
The amount of each episode's audio that will be analyzed is determined using both
the percentage of audio and maximum runtime of audio to analyze. The minimum of
@@ -619,6 +639,8 @@
"AnalysisLengthLimit",
"MinimumIntroDuration",
"MaximumIntroDuration",
+ "MinimumCreditsDuration",
+ "MaximumCreditsDuration",
"EdlAction",
"ProcessPriority",
"ProcessThreads",
diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/QueueManager.cs b/ConfusedPolarBear.Plugin.IntroSkipper/QueueManager.cs
index e57093e..7677982 100644
--- a/ConfusedPolarBear.Plugin.IntroSkipper/QueueManager.cs
+++ b/ConfusedPolarBear.Plugin.IntroSkipper/QueueManager.cs
@@ -198,7 +198,7 @@ public class QueueManager
_queuedEpisodes.TryAdd(episode.SeasonId, new List());
// Queue the episode for analysis
- var maxCreditsDuration = Plugin.Instance!.Configuration.MaximumEpisodeCreditsDuration;
+ var maxCreditsDuration = Plugin.Instance!.Configuration.MaximumCreditsDuration;
_queuedEpisodes[episode.SeasonId].Add(new QueuedEpisode()
{
SeriesName = episode.SeriesName,