mirror of
https://github.com/Radarr/Radarr
synced 2026-04-11 22:30:50 +02:00
Fix secondary ffprobe scan
This commit is contained in:
parent
59fed13442
commit
7bbd2246c4
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ public MediaInfoModel GetMediaInfo(string filename)
|
|||
|
||||
var analysis = FFProbe.AnalyseStreamJson(ffprobeOutput);
|
||||
|
||||
if (analysis.PrimaryAudioStream?.ChannelLayout.IsNullOrWhiteSpace() ?? false)
|
||||
if (analysis.PrimaryAudioStream?.ChannelLayout.IsNullOrWhiteSpace() ?? true)
|
||||
{
|
||||
ffprobeOutput = FFProbe.GetStreamJson(filename, ffOptions: new FFOptions { ExtraArguments = "-probesize 150000000 -analyzeduration 150000000" });
|
||||
analysis = FFProbe.AnalyseStreamJson(ffprobeOutput);
|
||||
|
|
|
|||
Loading…
Reference in a new issue