2024-03-02 22:19:51 -05:00
using System.Diagnostics ;
2024-08-31 18:56:48 +02:00
using ConfusedPolarBear.Plugin.IntroSkipper.Data ;
2019-02-21 01:57:43 -08:00
using MediaBrowser.Model.Plugins ;
2019-03-10 08:53:30 +09:00
2022-04-29 23:52:50 -05:00
namespace ConfusedPolarBear.Plugin.IntroSkipper.Configuration ;
2021-12-13 16:58:05 -07:00
/// <summary>
/// Plugin configuration.
/// </summary>
public class PluginConfiguration : BasePluginConfiguration
{
2024-09-17 08:41:56 +02:00
private bool? _selectAllLibraries ;
2021-12-13 16:58:05 -07:00
/// <summary>
/// Initializes a new instance of the <see cref="PluginConfiguration"/> class.
/// </summary>
public PluginConfiguration ( )
2019-02-21 01:57:43 -08:00
{
}
2021-12-13 16:58:05 -07:00
2022-06-26 22:54:47 -05:00
// ===== Analysis settings =====
2022-06-09 20:34:18 -05:00
/// <summary>
/// Gets or sets the max degree of parallelism used when analyzing episodes.
/// </summary>
public int MaxParallelism { get ; set ; } = 2 ;
2022-06-27 00:21:30 -05:00
/// <summary>
2024-09-17 08:41:56 +02:00
/// Gets or sets the comma separated list of library names to analyze.
2022-06-27 00:21:30 -05:00
/// </summary>
public string SelectedLibraries { get ; set ; } = string . Empty ;
2024-09-17 08:41:56 +02:00
/// <summary>
/// Gets or sets a value indicating whether all libraries should be analyzed.
/// </summary>
public bool SelectAllLibraries
{
get = > _selectAllLibraries ? ? string . IsNullOrEmpty ( SelectedLibraries ) ;
set = > _selectAllLibraries = value ;
}
2024-09-09 20:52:54 +02:00
/// <summary>
/// Gets or sets the list of client to auto skip for.
/// </summary>
public string ClientList { get ; set ; } = "Android TV, Kodi" ;
2024-03-30 19:02:18 +01:00
/// <summary>
/// Gets or sets a value indicating whether to scan for intros during a scheduled task.
/// </summary>
2024-03-30 18:22:54 -04:00
public bool AutoDetectIntros { get ; set ; } = false ;
2024-03-30 19:02:18 +01:00
/// <summary>
/// Gets or sets a value indicating whether to scan for credits during a scheduled task.
/// </summary>
2024-03-30 18:22:54 -04:00
public bool AutoDetectCredits { get ; set ; } = false ;
2024-03-29 16:58:16 +01:00
2022-09-27 21:42:51 -05:00
/// <summary>
/// Gets or sets a value indicating whether to analyze season 0.
/// </summary>
public bool AnalyzeSeasonZero { get ; set ; } = false ;
2024-03-04 17:50:12 -05:00
/// <summary>
/// Gets or sets a value indicating whether the episode's fingerprint should be cached to the filesystem.
/// </summary>
public bool CacheFingerprints { get ; set ; } = true ;
/// <summary>
/// Gets or sets a value indicating whether analysis will use Chromaprint to determine fingerprints.
/// </summary>
public bool UseChromaprint { get ; set ; } = true ;
2022-07-08 01:02:50 -05:00
// ===== EDL handling =====
2022-06-15 01:00:03 -05:00
/// <summary>
/// Gets or sets a value indicating the action to write to created EDL files.
/// </summary>
public EdlAction EdlAction { get ; set ; } = EdlAction . None ;
2022-06-20 01:39:56 -05:00
/// <summary>
2022-06-24 00:02:08 -05:00
/// Gets or sets a value indicating whether to regenerate all EDL files during the next scan.
/// By default, EDL files are only written for a season if the season had at least one newly analyzed episode.
/// If this is set, all EDL files will be regenerated and overwrite any existing EDL file.
2022-06-20 01:39:56 -05:00
/// </summary>
2024-09-10 18:08:42 +02:00
public bool RegenerateEdlFiles { get ; set ; }
2022-06-20 01:39:56 -05:00
2022-07-08 00:57:12 -05:00
// ===== Custom analysis settings =====
2022-06-26 22:54:47 -05:00
/// <summary>
/// Gets or sets the percentage of each episode's audio track to analyze.
/// </summary>
public int AnalysisPercent { get ; set ; } = 25 ;
/// <summary>
/// Gets or sets the upper limit (in minutes) on the length of each episode's audio track that will be analyzed.
/// </summary>
public int AnalysisLengthLimit { get ; set ; } = 10 ;
2022-07-03 01:59:16 -05:00
/// <summary>
/// Gets or sets the minimum length of similar audio that will be considered an introduction.
/// </summary>
public int MinimumIntroDuration { get ; set ; } = 15 ;
2022-09-03 00:39:35 -05:00
/// <summary>
/// Gets or sets the maximum length of similar audio that will be considered an introduction.
/// </summary>
public int MaximumIntroDuration { get ; set ; } = 120 ;
2022-11-29 20:11:22 -06:00
/// <summary>
/// Gets or sets the minimum length of similar audio that will be considered ending credits.
/// </summary>
public int MinimumCreditsDuration { get ; set ; } = 15 ;
2022-10-31 01:00:39 -05:00
/// <summary>
2022-11-24 00:43:23 -06:00
/// Gets or sets the upper limit (in seconds) on the length of each episode's audio track that will be analyzed when searching for ending credits.
2022-10-31 01:00:39 -05:00
/// </summary>
2024-04-13 14:07:12 -04:00
public int MaximumCreditsDuration { get ; set ; } = 300 ;
2022-10-31 01:00:39 -05:00
2022-11-01 00:53:56 -05:00
/// <summary>
/// Gets or sets the minimum percentage of a frame that must consist of black pixels before it is considered a black frame.
/// </summary>
public int BlackFrameMinimumPercentage { get ; set ; } = 85 ;
2022-11-24 00:43:23 -06:00
/// <summary>
/// Gets or sets the regular expression used to detect introduction chapters.
/// </summary>
public string ChapterAnalyzerIntroductionPattern { get ; set ; } =
@"(^|\s)(Intro|Introduction|OP|Opening)(\s|$)" ;
/// <summary>
/// Gets or sets the regular expression used to detect ending credit chapters.
/// </summary>
public string ChapterAnalyzerEndCreditsPattern { get ; set ; } =
2024-09-01 14:00:58 +02:00
@"(^|\s)(Credits?|ED|Ending|End|Outro)(\s|$)" ;
2022-11-24 00:43:23 -06:00
2022-06-26 22:54:47 -05:00
// ===== Playback settings =====
2022-11-06 21:20:52 -06:00
/// <summary>
/// Gets or sets a value indicating whether to show the skip intro button.
/// </summary>
public bool SkipButtonVisible { get ; set ; } = true ;
2024-09-29 20:35:46 +02:00
/// <summary>
/// Gets a value indicating whether to show the skip intro warning.
/// </summary>
public bool SkipButtonWarning { get = > WarningManager . HasFlag ( PluginWarning . UnableToAddSkipButton ) ; }
2022-06-07 18:33:59 -05:00
/// <summary>
/// Gets or sets a value indicating whether introductions should be automatically skipped.
/// </summary>
public bool AutoSkip { get ; set ; }
2024-05-13 14:25:52 +02:00
/// <summary>
/// Gets or sets a value indicating whether credits should be automatically skipped.
/// </summary>
public bool AutoSkipCredits { get ; set ; }
2022-05-05 18:26:02 -05:00
/// <summary>
2022-05-09 22:50:41 -05:00
/// Gets or sets the seconds before the intro starts to show the skip prompt at.
2022-05-05 18:26:02 -05:00
/// </summary>
public int ShowPromptAdjustment { get ; set ; } = 5 ;
/// <summary>
2022-05-09 22:50:41 -05:00
/// Gets or sets the seconds after the intro starts to hide the skip prompt at.
2022-05-05 18:26:02 -05:00
/// </summary>
public int HidePromptAdjustment { get ; set ; } = 10 ;
2022-09-02 01:54:49 -05:00
/// <summary>
2024-03-01 09:19:12 -05:00
/// Gets or sets a value indicating whether the introduction in the first episode of a season should be ignored.
2022-09-02 01:54:49 -05:00
/// </summary>
public bool SkipFirstEpisode { get ; set ; } = true ;
2022-09-24 22:49:17 -05:00
2024-03-01 09:19:12 -05:00
/// <summary>
/// Gets or sets a value indicating whether the skip button should be displayed for the duration of the intro.
/// </summary>
public bool PersistSkipButton { get ; set ; } = true ;
2022-08-28 22:25:27 -05:00
/// <summary>
/// Gets or sets the amount of intro to play (in seconds).
/// </summary>
2024-08-02 13:41:03 +00:00
public int RemainingSecondsOfIntro { get ; set ; } = 2 ;
/// <summary>
/// Gets or sets the amount of intro at start to play (in seconds).
/// </summary>
public int SecondsOfIntroStartToPlay { get ; set ; } = 0 ;
/// <summary>
/// Gets or sets the amount of credit at start to play (in seconds).
/// </summary>
2024-09-10 18:08:42 +02:00
public int SecondsOfCreditsStartToPlay { get ; set ; }
2022-09-02 01:27:49 -05:00
// ===== Internal algorithm settings =====
/// <summary>
/// Gets or sets the maximum number of bits (out of 32 total) that can be different between two Chromaprint points before they are considered dissimilar.
/// Defaults to 6 (81% similar).
/// </summary>
public int MaximumFingerprintPointDifferences { get ; set ; } = 6 ;
/// <summary>
/// Gets or sets the maximum number of seconds that can pass between two similar fingerprint points before a new time range is started.
/// </summary>
public double MaximumTimeSkip { get ; set ; } = 3.5 ;
/// <summary>
/// Gets or sets the amount to shift inverted indexes by.
/// </summary>
public int InvertedIndexShift { get ; set ; } = 2 ;
/// <summary>
/// Gets or sets the maximum amount of noise (in dB) that is considered silent.
/// Lowering this number will increase the filter's sensitivity to noise.
/// </summary>
public int SilenceDetectionMaximumNoise { get ; set ; } = - 50 ;
/// <summary>
/// Gets or sets the minimum duration of audio (in seconds) that is considered silent.
/// </summary>
public double SilenceDetectionMinimumDuration { get ; set ; } = 0.33 ;
2022-11-06 21:20:52 -06:00
// ===== Localization support =====
/// <summary>
2023-03-04 00:15:26 -06:00
/// Gets or sets the text to display in the skip button in introduction mode.
2022-11-06 21:20:52 -06:00
/// </summary>
2023-03-04 00:15:26 -06:00
public string SkipButtonIntroText { get ; set ; } = "Skip Intro" ;
/// <summary>
/// Gets or sets the text to display in the skip button in end credits mode.
/// </summary>
public string SkipButtonEndCreditsText { get ; set ; } = "Next" ;
2022-11-06 21:20:52 -06:00
/// <summary>
/// Gets or sets the notification text sent after automatically skipping an introduction.
/// </summary>
2024-03-01 12:46:23 -05:00
public string AutoSkipNotificationText { get ; set ; } = "Intro skipped" ;
2024-03-02 22:19:51 -05:00
2024-05-13 14:25:52 +02:00
/// <summary>
/// Gets or sets the notification text sent after automatically skipping credits.
/// </summary>
public string AutoSkipCreditsNotificationText { get ; set ; } = "Credits skipped" ;
2024-03-02 22:19:51 -05:00
/// <summary>
/// Gets or sets the number of threads for an ffmpeg process.
/// </summary>
2024-09-10 18:08:42 +02:00
public int ProcessThreads { get ; set ; }
2024-03-02 22:19:51 -05:00
/// <summary>
/// Gets or sets the relative priority for an ffmpeg process.
/// </summary>
public ProcessPriorityClass ProcessPriority { get ; set ; } = ProcessPriorityClass . BelowNormal ;
2019-03-10 08:53:30 +09:00
}