using System.Collections.Generic;
using Emby.Server.Implementations.HttpServer;
using Emby.Server.Implementations.Updates;
using MediaBrowser.Providers.Music;
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 a new copy of the default configuration options.
        /// 
        public static Dictionary DefaultConfiguration => new Dictionary
        {
            { HostWebClientKey, bool.TrueString },
            { HttpListenerHost.DefaultRedirectKey, "web/index.html" },
            { InstallationManager.PluginManifestUrlKey, "https://repo.jellyfin.org/releases/plugin/manifest.json" },
            { FfmpegProbeSizeKey, "1G" },
            { FfmpegAnalyzeDurationKey, "200M" },
            { PlaylistsAllowDuplicatesKey, bool.TrueString }
        };
    }
}