mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
added keyframe setting
This commit is contained in:
@@ -222,11 +222,13 @@ namespace MediaBrowser.Model.Configuration
|
||||
public bool DisableXmlSavers { get; set; }
|
||||
public bool EnableWindowsShortcuts { get; set; }
|
||||
|
||||
public bool EnableVideoFrameAnalysis { get; set; }
|
||||
public long VideoFrameAnalysisLimitBytes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
||||
/// </summary>
|
||||
public ServerConfiguration()
|
||||
: base()
|
||||
{
|
||||
ImageSavingConvention = ImageSavingConvention.Compatible;
|
||||
PublicPort = 8096;
|
||||
@@ -271,6 +273,9 @@ namespace MediaBrowser.Model.Configuration
|
||||
|
||||
PeopleMetadataOptions = new PeopleMetadataOptions();
|
||||
|
||||
EnableVideoFrameAnalysis = true;
|
||||
VideoFrameAnalysisLimitBytes = 600000000;
|
||||
|
||||
InsecureApps9 = new[]
|
||||
{
|
||||
"Chromecast",
|
||||
|
||||
Reference in New Issue
Block a user