aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ConfigurationOptions.cs
blob: 31fb5ca58c80682d92377f01d7e5723e03d05564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;

namespace Emby.Server.Implementations
{
    public static class ConfigurationOptions
    {
        public static Dictionary<string, string> Configuration => new Dictionary<string, string>
        {
            { "HttpListenerHost:DefaultRedirectPath", "web/index.html" },
            { FfmpegProbeSizeKey, "1G" },
            { FfmpegAnalyzeDurationKey, "200M" },
            { PlaylistsAllowDuplicatesKey, bool.TrueString }
        };
    }
}