2024-10-25 14:31:50 -04:00
|
|
|
// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only.
|
2024-10-25 14:15:12 -04:00
|
|
|
|
2024-10-19 23:50:41 +02:00
|
|
|
namespace IntroSkipper.Data;
|
2024-10-16 16:05:59 +02:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Type of media file analysis to perform.
|
|
|
|
/// </summary>
|
|
|
|
public enum AnalysisMode
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Detect introduction sequences.
|
|
|
|
/// </summary>
|
|
|
|
Introduction,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Detect credits.
|
|
|
|
/// </summary>
|
|
|
|
Credits,
|
|
|
|
}
|