mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
add standalone EncodingOptions
This commit is contained in:
parent
74520804f8
commit
97ae93fe5e
16 changed files with 113 additions and 182 deletions
19
MediaBrowser.Model/Configuration/EncodingOptions.cs
Normal file
19
MediaBrowser.Model/Configuration/EncodingOptions.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
namespace MediaBrowser.Model.Configuration
|
||||
{
|
||||
public class EncodingOptions
|
||||
{
|
||||
public EncodingQuality EncodingQuality { get; set; }
|
||||
public string TranscodingTempPath { get; set; }
|
||||
public double DownMixAudioBoost { get; set; }
|
||||
public string H264Encoder { get; set; }
|
||||
public bool EnableDebugLogging { get; set; }
|
||||
|
||||
public EncodingOptions()
|
||||
{
|
||||
H264Encoder = "libx264";
|
||||
DownMixAudioBoost = 2;
|
||||
EncodingQuality = EncodingQuality.Auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue