Remove redundant verbatim string prefixes

This commit is contained in:
Stepan Goremykin
2023-10-08 00:15:38 +02:00
parent 508c48a8ba
commit 0870af330d
21 changed files with 306 additions and 306 deletions

View File

@@ -177,7 +177,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
if (_ffmpegPath is not null)
{
// Determine a probe path from the mpeg path
_ffprobePath = FfprobePathRegex().Replace(_ffmpegPath, @"ffprobe$1");
_ffprobePath = FfprobePathRegex().Replace(_ffmpegPath, "ffprobe$1");
// Interrogate to understand what coders are supported
var validator = new EncoderValidator(_logger, _ffmpegPath);