jellyfin/Emby.Server.Implementations/ConfigurationOptions.cs

26 lines
945 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-02-28 17:57:38 +01:00
using Emby.Server.Implementations.HttpServer;
using MediaBrowser.Providers.Music;
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
namespace Emby.Server.Implementations
{
/// <summary>
/// Static class containing the default configuration options for the web server.
/// </summary>
public static class ConfigurationOptions
{
/// <summary>
/// Gets a new copy of the default configuration options.
/// </summary>
public static Dictionary<string, string> DefaultConfiguration => new Dictionary<string, string>
{
{ NoWebContentKey, bool.FalseString },
2020-02-28 17:57:38 +01:00
{ HttpListenerHost.DefaultRedirectKey, "web/index.html" },
{ MusicBrainzAlbumProvider.BaseUrlKey, "https://www.musicbrainz.org" },
{ FfmpegProbeSizeKey, "1G" },
2019-11-25 12:12:48 +01:00
{ FfmpegAnalyzeDurationKey, "200M" }
};
}
}