Update MediaInfoService.cs

pull/2160/head
Artiume 5 years ago committed by GitHub
parent 963b69c7b2
commit 0e920a6d5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -461,13 +461,13 @@ namespace MediaBrowser.Api.Playback
if (mediaSource.SupportsDirectStream)
{
if (mediaSource.IsRemote && forceDirectPlayRemoteMediaSource)// && user.Policy.ForceRemoteSourceTranscoding)
if (mediaSource.IsRemote && forceDirectPlayRemoteMediaSource && user.Policy.ForceRemoteSourceTranscoding)
{
mediaSource.SupportsDirectStream = true; //false
// }
// else if (mediaSource.IsRemote && user.Policy.ForceRemoteSourceTranscoding)
// {
// mediaSource.SupportsDirectStream = false;
mediaSource.SupportsDirectStream = false;
}
else if (mediaSource.IsRemote && user.Policy.ForceRemoteSourceTranscoding)
{
mediaSource.SupportsDirectStream = false;
}
else
{
@ -527,7 +527,6 @@ namespace MediaBrowser.Api.Playback
var streamInfo = string.Equals(item.MediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase) ?
streamBuilder.BuildAudioItem(options) :
streamBuilder.BuildVideoItem(options);
if (mediaSource.IsRemote && user.Policy.ForceRemoteSourceTranscoding)
{

Loading…
Cancel
Save