Replace '_' with ':' in config keys

This commit is contained in:
Bond-009
2019-12-12 16:57:16 +01:00
parent baadb504bb
commit 2c0259f920
4 changed files with 6 additions and 6 deletions

View File

@@ -10,12 +10,12 @@ namespace MediaBrowser.Controller.Extensions
/// <summary>
/// The key for the FFmpeg probe size option.
/// </summary>
public const string FfmpegProbeSizeKey = "FFmpeg_probesize";
public const string FfmpegProbeSizeKey = "FFmpeg:probesize";
/// <summary>
/// The key for the FFmpeg analyse duration option.
/// </summary>
public const string FfmpegAnalyzeDurationKey = "FFmpeg_analyzeduration";
public const string FfmpegAnalyzeDurationKey = "FFmpeg:analyzeduration";
/// <summary>
/// Retrieves the FFmpeg probe size from the <see cref="IConfiguration" />.