2024-10-25 14:33:26 -04:00
|
|
|
// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only.
|
2024-10-25 13:42:34 -04:00
|
|
|
|
2024-10-20 13:56:09 +02:00
|
|
|
namespace IntroSkipper.Data;
|
2022-10-28 02:25:57 -05:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Type of media file analysis to perform.
|
|
|
|
/// </summary>
|
|
|
|
public enum AnalysisMode
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Detect introduction sequences.
|
|
|
|
/// </summary>
|
|
|
|
Introduction,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Detect credits.
|
|
|
|
/// </summary>
|
|
|
|
Credits,
|
|
|
|
}
|