improve direct play to transcoding fallback

This commit is contained in:
Luke Pulverenti
2017-03-31 15:50:55 -04:00
parent 06394d1a9f
commit 8d1ca8ca27
7 changed files with 50 additions and 10 deletions

View File

@@ -28,6 +28,8 @@ namespace MediaBrowser.Model.MediaInfo
public bool EnableDirectStream { get; set; }
public bool EnableTranscoding { get; set; }
public bool ForceDirectPlayRemoteMediaSource { get; set; }
public bool AllowVideoStreamCopy { get; set; }
public bool AllowAudioStreamCopy { get; set; }
public PlaybackInfoRequest()
{
@@ -35,6 +37,8 @@ namespace MediaBrowser.Model.MediaInfo
EnableDirectPlay = true;
EnableDirectStream = true;
EnableTranscoding = true;
AllowVideoStreamCopy = true;
AllowAudioStreamCopy = true;
}
}
}