Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6536c81226d5348f587119aa46635b32cc7a807e You should set ROOT_URL correctly, otherwise the web may not work correctly.

do not extract audio stream bitrate info for videos from formatInfo

pull/4626/head
nyanmisaka 4 years ago
parent 0a35f35311
commit 6536c81226

@ -782,7 +782,7 @@ namespace MediaBrowser.MediaEncoding.Probing
if (bitrate == 0
&& formatInfo != null
&& !string.IsNullOrEmpty(formatInfo.BitRate)
&& (stream.Type == MediaStreamType.Video || stream.Type == MediaStreamType.Audio))
&& (stream.Type == MediaStreamType.Video || (isAudio && 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))

Loading…
Cancel
Save