This repository has been archived on 2026-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Eco/VideoBrowser/Common/OutputFormat.cs
2023-07-24 12:00:34 +02:00

37 lines
629 B
C#

namespace VideoBrowser.Common
{
#region Enums
/// <summary>
/// Defines the OutputFormat
/// </summary>
public enum OutputFormat
{
/// <summary>
/// Defines the Webm
/// </summary>
Webm,
/// <summary>
/// Defines the MP4
/// </summary>
MP4,
/// <summary>
/// Defines the MP3
/// </summary>
MP3,
/// <summary>
/// Defines the M4A
/// </summary>
M4A,
/// <summary>
/// Defines the Vorbis
/// </summary>
Vorbis
}
#endregion Enums
}