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" },
|
2019-10-26 20:53:53 +00:00
|
|
|
{ FfmpegProbeSizeKey, "1G" },
|
2020-03-13 22:11:59 +00:00
|
|
|
{ FfmpegAnalyzeDurationKey, "200M" },
|
|
|
|
{ PlaylistsAllowDuplicatesKey, bool.TrueString }
|
2019-02-08 09:13:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|