mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-10 01:38:49 +01:00
added a new encoding settings page under advanced
This commit is contained in:
@@ -207,7 +207,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
/// Gets or sets the encoding quality.
|
||||
/// </summary>
|
||||
/// <value>The encoding quality.</value>
|
||||
public EncodingQuality EncodingQuality { get; set; }
|
||||
public EncodingQuality MediaEncodingQuality { get; set; }
|
||||
|
||||
public bool EnableMovieChapterImageExtraction { get; set; }
|
||||
public bool EnableEpisodeChapterImageExtraction { get; set; }
|
||||
@@ -219,12 +219,15 @@ namespace MediaBrowser.Model.Configuration
|
||||
public MetadataOptions GameOptions { get; set; }
|
||||
public MetadataOptions BookOptions { get; set; }
|
||||
|
||||
public bool EnableDebugEncodingLogging { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
||||
/// </summary>
|
||||
public ServerConfiguration()
|
||||
: base()
|
||||
{
|
||||
MediaEncodingQuality = EncodingQuality.HighSpeed;
|
||||
ImageSavingConvention = ImageSavingConvention.Legacy;
|
||||
HttpServerPortNumber = 8096;
|
||||
LegacyWebSocketPortNumber = 8945;
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.LiveTv
|
||||
{
|
||||
/// <summary>
|
||||
@@ -12,4 +13,19 @@ namespace MediaBrowser.Model.LiveTv
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; set; }
|
||||
}
|
||||
|
||||
public class GuideInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the start date.
|
||||
/// </summary>
|
||||
/// <value>The start date.</value>
|
||||
public DateTime StartDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the end date.
|
||||
/// </summary>
|
||||
/// <value>The end date.</value>
|
||||
public DateTime EndDate { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user