2024-10-25 14:35:24 -04:00
|
|
|
// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only.
|
2024-10-25 13:39:12 -04:00
|
|
|
|
2022-06-15 01:00:03 -05:00
|
|
|
namespace ConfusedPolarBear.Plugin.IntroSkipper;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Taken from https://kodi.wiki/view/Edit_decision_list#MPlayer_EDL.
|
|
|
|
/// </summary>
|
|
|
|
public enum EdlAction
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Do not create EDL files.
|
|
|
|
/// </summary>
|
|
|
|
None = -1,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Completely remove the intro from playback as if it was never in the original video.
|
|
|
|
/// </summary>
|
|
|
|
Cut,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Mute audio, continue playback.
|
|
|
|
/// </summary>
|
|
|
|
Mute,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Inserts a new scene marker.
|
|
|
|
/// </summary>
|
|
|
|
SceneMarker,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Automatically skip the intro once during playback.
|
|
|
|
/// </summary>
|
|
|
|
CommercialBreak,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Show a skip button.
|
|
|
|
/// </summary>
|
|
|
|
Intro,
|
2024-04-18 18:08:35 +02:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Show a skip button.
|
|
|
|
/// </summary>
|
|
|
|
Credit,
|
2022-06-15 01:00:03 -05:00
|
|
|
}
|