aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ConfigurationOptions.cs
blob: 445a554b252c0b795f631fdc7253b91087f4073a (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" },
            { "MusicBrainz_BaseUrl", "https://www.musicbrainz.org" },
            { FfmpegProbeSizeKey, "1G" },
            { FfmpegAnalyzeDuration, "200M" }
        };
    }
}