mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 10:04:44 +01:00
update media info bitrate
This commit is contained in:
@@ -180,6 +180,17 @@ namespace MediaBrowser.MediaEncoding.Probing
|
||||
{
|
||||
info.Video3DFormat = Video3DFormat.FullSideBySide;
|
||||
}
|
||||
|
||||
var videoStreamsBitrate = info.MediaStreams.Where(i => i.Type == MediaStreamType.Video).Select(i => i.BitRate ?? 0).Sum();
|
||||
// If ffprobe reported the container bitrate as being the same as the video stream bitrate, then it's wrong
|
||||
if (videoStreamsBitrate == (info.Bitrate ?? 0))
|
||||
{
|
||||
var streamBitrates = info.MediaStreams.Where(i => !i.IsExternal).Select(i => i.BitRate ?? 0).Sum();
|
||||
if (streamBitrates > (info.Bitrate ?? 0))
|
||||
{
|
||||
info.Bitrate = streamBitrates;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return info;
|
||||
|
||||
Reference in New Issue
Block a user