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