2024-10-25 14:35:24 -04:00
|
|
|
// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only.
|
2024-10-25 13:39:12 -04:00
|
|
|
|
2022-10-28 02:25:57 -05:00
|
|
|
namespace ConfusedPolarBear.Plugin.IntroSkipper;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Type of media file analysis to perform.
|
|
|
|
/// </summary>
|
|
|
|
public enum AnalysisMode
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Detect introduction sequences.
|
|
|
|
/// </summary>
|
|
|
|
Introduction,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Detect credits.
|
|
|
|
/// </summary>
|
|
|
|
Credits,
|
|
|
|
}
|