| | 1 | | using System; |
| | 2 | | using System.ComponentModel; |
| | 3 | | using System.Xml.Serialization; |
| | 4 | | using Jellyfin.Data.Enums; |
| | 5 | |
|
| | 6 | | namespace MediaBrowser.Model.Dlna; |
| | 7 | |
|
| | 8 | | /// <summary> |
| | 9 | | /// A class for transcoding profile information. |
| | 10 | | /// Note for client developers: Conditions defined in <see cref="CodecProfile"/> has higher priority and can override va |
| | 11 | | /// </summary> |
| | 12 | | public class TranscodingProfile |
| | 13 | | { |
| | 14 | | /// <summary> |
| | 15 | | /// Initializes a new instance of the <see cref="TranscodingProfile" /> class. |
| | 16 | | /// </summary> |
| | 17 | | public TranscodingProfile() |
| | 18 | | { |
| 2201 | 19 | | Conditions = []; |
| 2201 | 20 | | } |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// Initializes a new instance of the <see cref="TranscodingProfile" /> class copying the values from another instan |
| | 24 | | /// </summary> |
| | 25 | | /// <param name="other">Another instance of <see cref="TranscodingProfile" /> to be copied.</param> |
| | 26 | | public TranscodingProfile(TranscodingProfile other) |
| | 27 | | { |
| 0 | 28 | | ArgumentNullException.ThrowIfNull(other); |
| | 29 | |
|
| 0 | 30 | | Container = other.Container; |
| 0 | 31 | | Type = other.Type; |
| 0 | 32 | | VideoCodec = other.VideoCodec; |
| 0 | 33 | | AudioCodec = other.AudioCodec; |
| 0 | 34 | | Protocol = other.Protocol; |
| 0 | 35 | | EstimateContentLength = other.EstimateContentLength; |
| 0 | 36 | | EnableMpegtsM2TsMode = other.EnableMpegtsM2TsMode; |
| 0 | 37 | | TranscodeSeekInfo = other.TranscodeSeekInfo; |
| 0 | 38 | | CopyTimestamps = other.CopyTimestamps; |
| 0 | 39 | | Context = other.Context; |
| 0 | 40 | | EnableSubtitlesInManifest = other.EnableSubtitlesInManifest; |
| 0 | 41 | | MaxAudioChannels = other.MaxAudioChannels; |
| 0 | 42 | | MinSegments = other.MinSegments; |
| 0 | 43 | | SegmentLength = other.SegmentLength; |
| 0 | 44 | | BreakOnNonKeyFrames = other.BreakOnNonKeyFrames; |
| 0 | 45 | | Conditions = other.Conditions; |
| 0 | 46 | | EnableAudioVbrEncoding = other.EnableAudioVbrEncoding; |
| 0 | 47 | | } |
| | 48 | |
|
| | 49 | | /// <summary> |
| | 50 | | /// Gets or sets the container. |
| | 51 | | /// </summary> |
| | 52 | | [XmlAttribute("container")] |
| | 53 | | public string Container { get; set; } = string.Empty; |
| | 54 | |
|
| | 55 | | /// <summary> |
| | 56 | | /// Gets or sets the DLNA profile type. |
| | 57 | | /// </summary> |
| | 58 | | [XmlAttribute("type")] |
| | 59 | | public DlnaProfileType Type { get; set; } |
| | 60 | |
|
| | 61 | | /// <summary> |
| | 62 | | /// Gets or sets the video codec. |
| | 63 | | /// </summary> |
| | 64 | | [XmlAttribute("videoCodec")] |
| | 65 | | public string VideoCodec { get; set; } = string.Empty; |
| | 66 | |
|
| | 67 | | /// <summary> |
| | 68 | | /// Gets or sets the audio codec. |
| | 69 | | /// </summary> |
| | 70 | | [XmlAttribute("audioCodec")] |
| | 71 | | public string AudioCodec { get; set; } = string.Empty; |
| | 72 | |
|
| | 73 | | /// <summary> |
| | 74 | | /// Gets or sets the protocol. |
| | 75 | | /// </summary> |
| | 76 | | [XmlAttribute("protocol")] |
| | 77 | | public MediaStreamProtocol Protocol { get; set; } = MediaStreamProtocol.http; |
| | 78 | |
|
| | 79 | | /// <summary> |
| | 80 | | /// Gets or sets a value indicating whether the content length should be estimated. |
| | 81 | | /// </summary> |
| | 82 | | [DefaultValue(false)] |
| | 83 | | [XmlAttribute("estimateContentLength")] |
| | 84 | | public bool EstimateContentLength { get; set; } |
| | 85 | |
|
| | 86 | | /// <summary> |
| | 87 | | /// Gets or sets a value indicating whether M2TS mode is enabled. |
| | 88 | | /// </summary> |
| | 89 | | [DefaultValue(false)] |
| | 90 | | [XmlAttribute("enableMpegtsM2TsMode")] |
| | 91 | | public bool EnableMpegtsM2TsMode { get; set; } |
| | 92 | |
|
| | 93 | | /// <summary> |
| | 94 | | /// Gets or sets the transcoding seek info mode. |
| | 95 | | /// </summary> |
| | 96 | | [DefaultValue(TranscodeSeekInfo.Auto)] |
| | 97 | | [XmlAttribute("transcodeSeekInfo")] |
| | 98 | | public TranscodeSeekInfo TranscodeSeekInfo { get; set; } |
| | 99 | |
|
| | 100 | | /// <summary> |
| | 101 | | /// Gets or sets a value indicating whether timestamps should be copied. |
| | 102 | | /// </summary> |
| | 103 | | [DefaultValue(false)] |
| | 104 | | [XmlAttribute("copyTimestamps")] |
| | 105 | | public bool CopyTimestamps { get; set; } |
| | 106 | |
|
| | 107 | | /// <summary> |
| | 108 | | /// Gets or sets the encoding context. |
| | 109 | | /// </summary> |
| | 110 | | [DefaultValue(EncodingContext.Streaming)] |
| | 111 | | [XmlAttribute("context")] |
| | 112 | | public EncodingContext Context { get; set; } |
| | 113 | |
|
| | 114 | | /// <summary> |
| | 115 | | /// Gets or sets a value indicating whether subtitles are allowed in the manifest. |
| | 116 | | /// </summary> |
| | 117 | | [DefaultValue(false)] |
| | 118 | | [XmlAttribute("enableSubtitlesInManifest")] |
| | 119 | | public bool EnableSubtitlesInManifest { get; set; } |
| | 120 | |
|
| | 121 | | /// <summary> |
| | 122 | | /// Gets or sets the maximum audio channels. |
| | 123 | | /// </summary> |
| | 124 | | [XmlAttribute("maxAudioChannels")] |
| | 125 | | public string? MaxAudioChannels { get; set; } |
| | 126 | |
|
| | 127 | | /// <summary> |
| | 128 | | /// Gets or sets the minimum amount of segments. |
| | 129 | | /// </summary> |
| | 130 | | [DefaultValue(0)] |
| | 131 | | [XmlAttribute("minSegments")] |
| | 132 | | public int MinSegments { get; set; } |
| | 133 | |
|
| | 134 | | /// <summary> |
| | 135 | | /// Gets or sets the segment length. |
| | 136 | | /// </summary> |
| | 137 | | [DefaultValue(0)] |
| | 138 | | [XmlAttribute("segmentLength")] |
| | 139 | | public int SegmentLength { get; set; } |
| | 140 | |
|
| | 141 | | /// <summary> |
| | 142 | | /// Gets or sets a value indicating whether breaking the video stream on non-keyframes is supported. |
| | 143 | | /// </summary> |
| | 144 | | [DefaultValue(false)] |
| | 145 | | [XmlAttribute("breakOnNonKeyFrames")] |
| | 146 | | public bool BreakOnNonKeyFrames { get; set; } |
| | 147 | |
|
| | 148 | | /// <summary> |
| | 149 | | /// Gets or sets the profile conditions. |
| | 150 | | /// </summary> |
| | 151 | | public ProfileCondition[] Conditions { get; set; } |
| | 152 | |
|
| | 153 | | /// <summary> |
| | 154 | | /// Gets or sets a value indicating whether variable bitrate encoding is supported. |
| | 155 | | /// </summary> |
| | 156 | | [DefaultValue(true)] |
| | 157 | | [XmlAttribute("enableAudioVbrEncoding")] |
| | 158 | | public bool EnableAudioVbrEncoding { get; set; } = true; |
| | 159 | | } |