mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Apply suggestions from code review
Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
parent
669029595b
commit
16a449a023
1 changed files with 1 additions and 2 deletions
|
@ -458,10 +458,9 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
{
|
||||
_logger.LogDebug("{ProcessFileName} {ProcessArgs}", process.StartInfo.FileName, process.StartInfo.Arguments);
|
||||
}
|
||||
|
||||
using (var processWrapper = new ProcessWrapper(process, this))
|
||||
{
|
||||
MemoryStream memoryStream = new MemoryStream();
|
||||
await using var memoryStream = new MemoryStream();
|
||||
_logger.LogDebug("Starting ffprobe with args {Args}", args);
|
||||
StartProcess(processWrapper);
|
||||
await process.StandardOutput.BaseStream.CopyToAsync(memoryStream, cancellationToken: cancellationToken);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue