Don't use interpolated strings

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
This commit is contained in:
gnattu 2024-05-31 14:59:57 +08:00 committed by GitHub
parent 2cb74e3dd0
commit 78e3ee15f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1189,7 +1189,9 @@ namespace MediaBrowser.Controller.MediaEncoding
{
var tmpConcatPath = Path.Join(_configurationManager.GetTranscodePath(), state.MediaSource.Id + ".concat");
_mediaEncoder.GenerateConcatConfig(state.MediaSource, tmpConcatPath);
arg.Append(CultureInfo.InvariantCulture, $" -f concat -safe 0 -i \"{tmpConcatPath}\"");
arg.Append(" -f concat -safe 0 -i \"")
.Append(tmpConcatPath)
.Append('"');
}
else
{