ffmpeg: added WaitToExit()

This commit is contained in:
Alexey Bannov 2023-03-20 21:03:35 +03:00
parent a1ad11020d
commit c6a9716141

View File

@ -189,5 +189,7 @@ public class FFmpegService
using var process = Process.Start(startInfo);
await ProcessLog(process.StandardError.BaseStream);
process.WaitForExit();
}
}