mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
#642 - Add server-side encoding settings
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user