namespace ConfusedPolarBear.Plugin.IntroSkipper.Data;
///
/// Taken from https://kodi.wiki/view/Edit_decision_list#MPlayer_EDL.
///
public enum EdlAction
{
///
/// Do not create EDL files.
///
None = -1,
///
/// Completely remove the segment from playback as if it was never in the original video.
///
Cut = 0,
///
/// Mute audio, continue playback.
///
Mute = 1,
///
/// Inserts a new scene marker.
///
SceneMarker = 2,
///
/// Automatically skip once during playback.
///
CommercialBreak = 3
}