added automatic restart option

This commit is contained in:
Luke Pulverenti
2014-01-11 15:13:18 -05:00
parent 4d80f04e21
commit 57a2a30989
3 changed files with 101 additions and 0 deletions

View File

@@ -222,6 +222,8 @@ namespace MediaBrowser.Model.Configuration
public bool EnableDebugEncodingLogging { get; set; }
public string TranscodingTempPath { get; set; }
public bool EnableAutomaticRestart { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
/// </summary>
@@ -239,6 +241,7 @@ namespace MediaBrowser.Model.Configuration
EnableMovieChapterImageExtraction = true;
EnableEpisodeChapterImageExtraction = false;
EnableOtherVideoChapterImageExtraction = false;
EnableAutomaticRestart = true;
MinResumePct = 5;
MaxResumePct = 90;