/// 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 b5bdb69..8b067fe 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: Not selecting at least one 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
@@ -595,6 +615,8 @@
"AnalysisLengthLimit",
"MinimumIntroDuration",
"MaximumIntroDuration",
+ "MinimumCreditsDuration",
+ "MaximumCreditsDuration",
"EdlAction",
"ProcessPriority",
"ProcessThreads",
diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/QueueManager.cs b/ConfusedPolarBear.Plugin.IntroSkipper/QueueManager.cs
index bdea87b..0dc4b2d 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,