// Copyright (C) 2024 Intro-Skipper contributors // SPDX-License-Identifier: GPL-3.0-only. namespace ConfusedPolarBear.Plugin.IntroSkipper; /// /// Taken from https://kodi.wiki/view/Edit_decision_list#MPlayer_EDL. /// public enum EdlAction { /// /// Do not create EDL files. /// None = -1, /// /// Completely remove the intro from playback as if it was never in the original video. /// Cut, /// /// Mute audio, continue playback. /// Mute, /// /// Inserts a new scene marker. /// SceneMarker, /// /// Automatically skip the intro once during playback. /// CommercialBreak, /// /// Show a skip button. /// Intro, /// /// Show a skip button. /// Credit, }