5e779f20ee
Issue: https://github.com/jellyfin/jellyfin/issues/6450 Enable DirectPlay responses Rewrite DirectPlay and DirectStream resolution Prefer copy transcode video codec options Enhance condition processor Support DirectStream and Transcode with parity Rework audio stream selection and add tests for ExternalAudio Update MediaInfoHelper to only call StreamBuilder once
17 lines
354 B
C#
17 lines
354 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
{
|
|
/// <summary>
|
|
/// Class VideoOptions.
|
|
/// </summary>
|
|
public class VideoOptions : AudioOptions
|
|
{
|
|
public int? AudioStreamIndex { get; set; }
|
|
|
|
public int? SubtitleStreamIndex { get; set; }
|
|
|
|
public bool AllowVideoStreamCopy { get; set; }
|
|
}
|
|
}
|