chore: run dotnet format

This commit is contained in:
Stevan Freeborn
2025-10-10 16:42:14 -05:00
parent a34ffe575b
commit 4b56011f3b
2 changed files with 2 additions and 2 deletions
@@ -21,7 +21,7 @@ internal sealed class FFMpegService : IVideoService
var processor = audio is FileStream audioFileStream
? inputArguments.OutputToFile(audioFileStream.Name, addArguments: arguments)
: inputArguments.OutputToPipe(new StreamPipeSink(audio), addArguments: arguments);
return await processor.ProcessAsynchronously().ConfigureAwait(false);
}