2019-02-08 09:13:58 +00:00
|
|
|
using System.Collections.Generic;
|
2019-10-26 20:53:53 +00:00
|
|
|
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
|
2019-02-08 09:13:58 +00:00
|
|
|
|
|
|
|
namespace Emby.Server.Implementations
|
|
|
|
{
|
|
|
|
public static class ConfigurationOptions
|
|
|
|
{
|
2019-10-26 20:53:53 +00:00
|
|
|
public static Dictionary<string, string> Configuration => new Dictionary<string, string>
|
2019-02-08 09:13:58 +00:00
|
|
|
{
|
2019-12-12 15:57:16 +00:00
|
|
|
{ "HttpListenerHost:DefaultRedirectPath", "web/index.html" },
|
|
|
|
{ "MusicBrainz:BaseUrl", "https://www.musicbrainz.org" },
|
2019-10-26 20:53:53 +00:00
|
|
|
{ FfmpegProbeSizeKey, "1G" },
|
2019-11-25 11:12:48 +00:00
|
|
|
{ FfmpegAnalyzeDurationKey, "200M" }
|
2019-02-08 09:13:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|