fixes #631 - FFProbe Bluray Folder Rip

pull/702/head
Luke Pulverenti 11 years ago
parent 6ee94ee1a2
commit f727179222

@ -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;
} }
} }

Loading…
Cancel
Save