mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
#642 - Add server-side encoding settings
This commit is contained in:
parent
a3d855919e
commit
53f4e849fd
8 changed files with 146 additions and 86 deletions
|
|
@ -234,6 +234,12 @@ namespace MediaBrowser.Model.Configuration
|
|||
/// <value><c>true</c> if [enable people prefix sub folders]; otherwise, <c>false</c>.</value>
|
||||
public bool EnablePeoplePrefixSubFolders { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the encoding quality.
|
||||
/// </summary>
|
||||
/// <value>The encoding quality.</value>
|
||||
public EncodingQuality EncodingQuality { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
||||
/// </summary>
|
||||
|
|
@ -293,4 +299,12 @@ namespace MediaBrowser.Model.Configuration
|
|||
Legacy,
|
||||
Compatible
|
||||
}
|
||||
|
||||
public enum EncodingQuality
|
||||
{
|
||||
Auto,
|
||||
HighSpeed,
|
||||
HighQuality,
|
||||
MaxQuality
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue