2019-02-08 02:13:58 -07:00
|
|
|
using System.Collections.Generic;
|
2019-10-26 13:53:53 -07:00
|
|
|
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
|
2019-02-08 02:13:58 -07:00
|
|
|
|
|
|
|
namespace Emby.Server.Implementations
|
|
|
|
{
|
2020-02-25 09:02:51 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Static class containing the default configuration options for the web server.
|
|
|
|
/// </summary>
|
2019-02-08 02:13:58 -07:00
|
|
|
public static class ConfigurationOptions
|
|
|
|
{
|
2020-02-25 09:02:51 -07:00
|
|
|
/// <summary>
|
2020-02-25 09:22:21 -07:00
|
|
|
/// Gets a new copy of the default configuration options.
|
2020-02-25 09:02:51 -07:00
|
|
|
/// </summary>
|
|
|
|
public static Dictionary<string, string> DefaultConfiguration => new Dictionary<string, string>
|
2019-02-08 02:13:58 -07:00
|
|
|
{
|
2019-12-12 08:57:16 -07:00
|
|
|
{ "HttpListenerHost:DefaultRedirectPath", "web/index.html" },
|
|
|
|
{ "MusicBrainz:BaseUrl", "https://www.musicbrainz.org" },
|
2019-10-26 13:53:53 -07:00
|
|
|
{ FfmpegProbeSizeKey, "1G" },
|
2019-11-25 04:12:48 -07:00
|
|
|
{ FfmpegAnalyzeDurationKey, "200M" }
|
2019-02-08 02:13:58 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|