Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/b356ff6c8908e5479c0d2eb6e17b2910d8ed01e4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
4 deletions
@ -1351,7 +1351,7 @@ namespace MediaBrowser.Controller.MediaEncoding
transcoderChannelLimit = 6 ;
}
var isTranscodingAudio = ! EncodingHelper. IsCopyCodec( codec ) ;
var isTranscodingAudio = ! IsCopyCodec( codec ) ;
int? resultChannels = state . GetRequestedAudioChannels ( codec ) ;
if ( isTranscodingAudio )
@ -2264,7 +2264,7 @@ namespace MediaBrowser.Controller.MediaEncoding
flags . Add ( "+ignidx" ) ;
}
if ( state . GenPtsInput | | EncodingHelper. IsCopyCodec( state . OutputVideoCodec ) )
if ( state . GenPtsInput | | IsCopyCodec( state . OutputVideoCodec ) )
{
flags . Add ( "+genpts" ) ;
}
@ -3008,7 +3008,7 @@ namespace MediaBrowser.Controller.MediaEncoding
args + = " -mpegts_m2ts_mode 1" ;
}
if ( EncodingHelper. IsCopyCodec( videoCodec ) )
if ( IsCopyCodec( videoCodec ) )
{
if ( state . VideoStream ! = null
& & string . Equals ( state . OutputContainer , "ts" , StringComparison . OrdinalIgnoreCase )
@ -3110,7 +3110,7 @@ namespace MediaBrowser.Controller.MediaEncoding
var args = "-codec:a:0 " + codec ;
if ( EncodingHelper. IsCopyCodec( codec ) )
if ( IsCopyCodec( codec ) )
{
return args ;
}