mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
dependencies Makes the probesize and analyzeduration configurable with env args. (`JELLYFIN_FFmpeg_probesize` and `FFmpeg_analyzeduration`)
16 lines
557 B
C#
16 lines
557 B
C#
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" }
|
|
};
|
|
}
|
|
}
|