Merge pull request #7443 from whiteowl3/strm-probe

pull/7495/head
Cody Robibero 3 years ago committed by GitHub
commit 8056b0e961
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -461,14 +461,16 @@ namespace MediaBrowser.MediaEncoding.Encoder
using (var processWrapper = new ProcessWrapper(process, this))
{
await using var memoryStream = new MemoryStream();
_logger.LogDebug("Starting ffprobe with args {Args}", args);
StartProcess(processWrapper);
await process.StandardOutput.BaseStream.CopyToAsync(memoryStream, cancellationToken: cancellationToken);
memoryStream.Seek(0, SeekOrigin.Begin);
InternalMediaInfoResult result;
try
{
result = await JsonSerializer.DeserializeAsync<InternalMediaInfoResult>(
process.StandardOutput.BaseStream,
memoryStream,
_jsonSerializerOptions,
cancellationToken: cancellationToken).ConfigureAwait(false);
}

@ -99,6 +99,8 @@ namespace MediaBrowser.Providers.MediaInfo
var mediaStreams = new List<MediaStream>();
foreach (var pathInfo in pathInfos)
{
if (!pathInfo.Path.AsSpan().EndsWith(".strm", StringComparison.OrdinalIgnoreCase))
{
var mediaInfo = await GetMediaInfo(pathInfo.Path, _type, cancellationToken).ConfigureAwait(false);
@ -121,6 +123,7 @@ namespace MediaBrowser.Providers.MediaInfo
}
}
}
}
return mediaStreams.AsReadOnly();
}

Loading…
Cancel
Save