Przeglądaj źródła

fixes #631 - FFProbe Bluray Folder Rip

Luke Pulverenti 11 lat temu
rodzic
commit
f727179222

+ 9 - 2
MediaBrowser.Providers/MediaInfo/BaseFFProbeProvider.cs

@@ -228,14 +228,21 @@ namespace MediaBrowser.Providers.MediaInfo
             // Get stream bitrate
             // Get stream bitrate
             if (stream.Type != MediaStreamType.Subtitle)
             if (stream.Type != MediaStreamType.Subtitle)
             {
             {
+                var bitrate = 0;
+
                 if (!string.IsNullOrEmpty(streamInfo.bit_rate))
                 if (!string.IsNullOrEmpty(streamInfo.bit_rate))
                 {
                 {
-                    stream.BitRate = int.Parse(streamInfo.bit_rate, UsCulture);
+                    bitrate = int.Parse(streamInfo.bit_rate, UsCulture);
                 }
                 }
                 else if (formatInfo != null && !string.IsNullOrEmpty(formatInfo.bit_rate))
                 else if (formatInfo != null && !string.IsNullOrEmpty(formatInfo.bit_rate))
                 {
                 {
                     // If the stream info doesn't have a bitrate get the value from the media format info
                     // If the stream info doesn't have a bitrate get the value from the media format info
-                    stream.BitRate = int.Parse(formatInfo.bit_rate, UsCulture);
+                    bitrate = int.Parse(formatInfo.bit_rate, UsCulture);
+                }
+
+                if (bitrate > 0)
+                {
+                    stream.BitRate = bitrate;
                 }
                 }
             }
             }