Implement coding standards from 2nd code feedback

This commit is contained in:
Jonas Resch
2021-11-28 14:03:52 +01:00
parent 9d34d6339a
commit 0894a6193f
4 changed files with 82 additions and 103 deletions

View File

@@ -698,8 +698,7 @@ namespace MediaBrowser.Controller.MediaEncoding
if (state.AudioStream != null && state.AudioStream.IsExternal)
{
arg.Append(" -i ")
.Append(string.Format(CultureInfo.InvariantCulture, "file:\"{0}\"", state.AudioStream.Path));
arg.Append(" -i \"").Append(state.AudioStream.Path).Append("\"");
}
return arg.ToString();