using System.Collections.Generic;
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
namespace Emby.Server.Implementations
{
///
/// Static class containing the default configuration options for the web server.
///
public static class ConfigurationOptions
{
///
/// Gets the default configuration options.
///
public static Dictionary DefaultConfiguration => new Dictionary
{
{ "HttpListenerHost:DefaultRedirectPath", "web/index.html" },
{ "MusicBrainz:BaseUrl", "https://www.musicbrainz.org" },
{ FfmpegProbeSizeKey, "1G" },
{ FfmpegAnalyzeDurationKey, "200M" }
};
}
}