diff options
| author | Nyanmisaka <nst799610810@gmail.com> | 2020-12-01 00:59:21 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-01 00:59:21 +0800 |
| commit | 421faabc7c9806105a4ffef5be0acc11d725aaa1 (patch) | |
| tree | ec181a10bd8721bb27fb52b0b9217889747436b4 /MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs | |
| parent | 3e9cf98c30277e09f7b8a6c8ecb603e9ea10774a (diff) | |
| parent | 78fef806967563d613c5b06b23e5b59cb40f164e (diff) | |
Merge branch 'master' into hdr-extract
Diffstat (limited to 'MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs index 97d61441c..27bd693e3 100644 --- a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs +++ b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs @@ -778,7 +778,11 @@ namespace MediaBrowser.MediaEncoding.Probing } } - if (bitrate == 0 && formatInfo != null && !string.IsNullOrEmpty(formatInfo.BitRate) && stream.Type == MediaStreamType.Video) + // The bitrate info of FLAC musics and some videos is included in formatInfo. + if (bitrate == 0 + && formatInfo != null + && !string.IsNullOrEmpty(formatInfo.BitRate) + && (stream.Type == MediaStreamType.Video || stream.Type == MediaStreamType.Audio)) { // If the stream info doesn't have a bitrate get the value from the media format info if (int.TryParse(formatInfo.BitRate, NumberStyles.Any, _usCulture, out var value)) |
