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

Merge pull request from drmrbg/fix-chromecast

Fix transcoding of AAC from 5.1 to stereo to support Chromecast
release-10.1.0
Vasily 6 years ago committed by GitHub
commit b27315bc08

@ -589,6 +589,22 @@ namespace MediaBrowser.Api.Playback
}
}
/// <summary>
/// Parses query parameters as StreamOptions
/// <summary>
/// <param name="request">The stream request.</param>
private void ParseStreamOptions(StreamRequest request)
{
foreach (var param in Request.QueryString) {
if (Char.IsLower(param.Name[0])) {
// This was probably not parsed initially and should be a StreamOptions
// TODO: This should be incorporated either in the lower framework for parsing requests
// or the generated URL should correctly serialize it
request.StreamOptions[param.Name] = param.Value;
}
}
}
/// <summary>
/// Parses the dlna headers.
/// </summary>
@ -667,6 +683,8 @@ namespace MediaBrowser.Api.Playback
ParseParams(request);
}
ParseStreamOptions(request);
var url = Request.PathInfo;
if (string.IsNullOrEmpty(request.AudioCodec))

Loading…
Cancel
Save