Chapter Images:

- chapter image extraction intervals, limit count and resolutions can be set by the user from the server general settings;
This commit is contained in:
Negulici-R. Barnabas
2022-07-18 17:50:52 +03:00
parent c2902dd108
commit 12ec0e285d
4 changed files with 93 additions and 7 deletions

View File

@@ -0,0 +1,43 @@
namespace MediaBrowser.Model.Drawing
{
/// <summary>
/// Enum ImageResolution.
/// </summary>
public enum ImageResolution
{
/// <summary>
/// 240p.
/// </summary>
P240,
/// <summary>
/// 360p.
/// </summary>
P360,
/// <summary>
/// 480p.
/// </summary>
P480,
/// <summary>
/// 720p.
/// </summary>
P720,
/// <summary>
/// 1080p.
/// </summary>
P1080,
/// <summary>
/// 1440p.
/// </summary>
P1440,
/// <summary>
/// 2160p.
/// </summary>
P2160
}
}