mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-17 15:53:42 +01:00
Always use 1080p, add max parental rating
This commit is contained in:
committed by
Cody Robibero
parent
c934269a6e
commit
0fd4ff4451
@@ -16,13 +16,11 @@ namespace MediaBrowser.Controller.Drawing
|
||||
/// <param name="width">Optional. The image width.</param>
|
||||
/// <param name="height">Optional. The image height.</param>
|
||||
/// <param name="applyFilter">Optional. Apply a darkening filter.</param>
|
||||
public SplashscreenOptions(IReadOnlyList<string> portraitInputPaths, IReadOnlyList<string> landscapeInputPaths, string outputPath, int width = 1920, int height = 1080, bool applyFilter = false)
|
||||
public SplashscreenOptions(IReadOnlyList<string> portraitInputPaths, IReadOnlyList<string> landscapeInputPaths, string outputPath, bool applyFilter = false)
|
||||
{
|
||||
PortraitInputPaths = portraitInputPaths;
|
||||
LandscapeInputPaths = landscapeInputPaths;
|
||||
OutputPath = outputPath;
|
||||
Width = width;
|
||||
Height = height;
|
||||
ApplyFilter = applyFilter;
|
||||
}
|
||||
|
||||
@@ -41,16 +39,6 @@ namespace MediaBrowser.Controller.Drawing
|
||||
/// </summary>
|
||||
public string OutputPath { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the width.
|
||||
/// </summary>
|
||||
public int Width { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the height.
|
||||
/// </summary>
|
||||
public int Height { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether to apply a darkening filter at the end.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user