36 lines
642 B
C#
36 lines
642 B
C#
|
// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
|
||
|
// SPDX-License-Identifier: GPL-3.0-only.
|
||
|
|
||
|
namespace IntroSkipper.Data;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Type of media file analysis to perform.
|
||
|
/// </summary>
|
||
|
public enum AnalyzerAction
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Default action.
|
||
|
/// </summary>
|
||
|
Default,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Detect chapters.
|
||
|
/// </summary>
|
||
|
Chapter,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Detect chromaprint fingerprints.
|
||
|
/// </summary>
|
||
|
Chromaprint,
|
||
|
|
||
|
/// <summary>
|
||
|
/// Detect black frames.
|
||
|
/// </summary>
|
||
|
BlackFrame,
|
||
|
|
||
|
/// <summary>
|
||
|
/// No action.
|
||
|
/// </summary>
|
||
|
None,
|
||
|
}
|