| | 1 | | #nullable disable |
| | 2 | | #pragma warning disable CS1591 |
| | 3 | |
|
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.ComponentModel; |
| | 6 | | using System.Text.Json.Serialization; |
| | 7 | | using Jellyfin.Data.Enums; |
| | 8 | | using MediaBrowser.Model.Entities; |
| | 9 | | using MediaBrowser.Model.MediaInfo; |
| | 10 | | using MediaBrowser.Model.Session; |
| | 11 | |
|
| | 12 | | namespace MediaBrowser.Model.Dto |
| | 13 | | { |
| | 14 | | public class MediaSourceInfo |
| | 15 | | { |
| | 16 | | public MediaSourceInfo() |
| | 17 | | { |
| 363 | 18 | | Formats = []; |
| 363 | 19 | | MediaStreams = []; |
| 363 | 20 | | MediaAttachments = []; |
| 363 | 21 | | RequiredHttpHeaders = []; |
| 363 | 22 | | SupportsTranscoding = true; |
| 363 | 23 | | SupportsDirectStream = true; |
| 363 | 24 | | SupportsDirectPlay = true; |
| 363 | 25 | | SupportsProbing = true; |
| 363 | 26 | | UseMostCompatibleTranscodingProfile = false; |
| 363 | 27 | | } |
| | 28 | |
|
| | 29 | | public MediaProtocol Protocol { get; set; } |
| | 30 | |
|
| | 31 | | public string Id { get; set; } |
| | 32 | |
|
| | 33 | | public string Path { get; set; } |
| | 34 | |
|
| | 35 | | public string EncoderPath { get; set; } |
| | 36 | |
|
| | 37 | | public MediaProtocol? EncoderProtocol { get; set; } |
| | 38 | |
|
| | 39 | | public MediaSourceType Type { get; set; } |
| | 40 | |
|
| | 41 | | public string Container { get; set; } |
| | 42 | |
|
| | 43 | | public long? Size { get; set; } |
| | 44 | |
|
| | 45 | | public string Name { get; set; } |
| | 46 | |
|
| | 47 | | /// <summary> |
| | 48 | | /// Gets or sets a value indicating whether the media is remote. |
| | 49 | | /// Differentiate internet url vs local network. |
| | 50 | | /// </summary> |
| | 51 | | public bool IsRemote { get; set; } |
| | 52 | |
|
| | 53 | | public string ETag { get; set; } |
| | 54 | |
|
| | 55 | | public long? RunTimeTicks { get; set; } |
| | 56 | |
|
| | 57 | | public bool ReadAtNativeFramerate { get; set; } |
| | 58 | |
|
| | 59 | | public bool IgnoreDts { get; set; } |
| | 60 | |
|
| | 61 | | public bool IgnoreIndex { get; set; } |
| | 62 | |
|
| | 63 | | public bool GenPtsInput { get; set; } |
| | 64 | |
|
| | 65 | | public bool SupportsTranscoding { get; set; } |
| | 66 | |
|
| | 67 | | public bool SupportsDirectStream { get; set; } |
| | 68 | |
|
| | 69 | | public bool SupportsDirectPlay { get; set; } |
| | 70 | |
|
| | 71 | | public bool IsInfiniteStream { get; set; } |
| | 72 | |
|
| | 73 | | [DefaultValue(false)] |
| | 74 | | public bool UseMostCompatibleTranscodingProfile { get; set; } |
| | 75 | |
|
| | 76 | | public bool RequiresOpening { get; set; } |
| | 77 | |
|
| | 78 | | public string OpenToken { get; set; } |
| | 79 | |
|
| | 80 | | public bool RequiresClosing { get; set; } |
| | 81 | |
|
| | 82 | | public string LiveStreamId { get; set; } |
| | 83 | |
|
| | 84 | | public int? BufferMs { get; set; } |
| | 85 | |
|
| | 86 | | public bool RequiresLooping { get; set; } |
| | 87 | |
|
| | 88 | | public bool SupportsProbing { get; set; } |
| | 89 | |
|
| | 90 | | public VideoType? VideoType { get; set; } |
| | 91 | |
|
| | 92 | | public IsoType? IsoType { get; set; } |
| | 93 | |
|
| | 94 | | public Video3DFormat? Video3DFormat { get; set; } |
| | 95 | |
|
| | 96 | | public IReadOnlyList<MediaStream> MediaStreams { get; set; } |
| | 97 | |
|
| | 98 | | public IReadOnlyList<MediaAttachment> MediaAttachments { get; set; } |
| | 99 | |
|
| | 100 | | public string[] Formats { get; set; } |
| | 101 | |
|
| | 102 | | public int? Bitrate { get; set; } |
| | 103 | |
|
| | 104 | | public int? FallbackMaxStreamingBitrate { get; set; } |
| | 105 | |
|
| | 106 | | public TransportStreamTimestamp? Timestamp { get; set; } |
| | 107 | |
|
| | 108 | | public Dictionary<string, string> RequiredHttpHeaders { get; set; } |
| | 109 | |
|
| | 110 | | public string TranscodingUrl { get; set; } |
| | 111 | |
|
| | 112 | | public MediaStreamProtocol TranscodingSubProtocol { get; set; } |
| | 113 | |
|
| | 114 | | public string TranscodingContainer { get; set; } |
| | 115 | |
|
| | 116 | | public int? AnalyzeDurationMs { get; set; } |
| | 117 | |
|
| | 118 | | [JsonIgnore] |
| | 119 | | public TranscodeReason TranscodeReasons { get; set; } |
| | 120 | |
|
| | 121 | | public int? DefaultAudioStreamIndex { get; set; } |
| | 122 | |
|
| | 123 | | public int? DefaultSubtitleStreamIndex { get; set; } |
| | 124 | |
|
| | 125 | | public bool HasSegments { get; set; } |
| | 126 | |
|
| | 127 | | [JsonIgnore] |
| | 128 | | public MediaStream VideoStream |
| | 129 | | { |
| | 130 | | get |
| | 131 | | { |
| 4191 | 132 | | foreach (var i in MediaStreams) |
| | 133 | | { |
| 1393 | 134 | | if (i.Type == MediaStreamType.Video) |
| | 135 | | { |
| 1393 | 136 | | return i; |
| | 137 | | } |
| | 138 | | } |
| | 139 | |
|
| 6 | 140 | | return null; |
| 1393 | 141 | | } |
| | 142 | | } |
| | 143 | |
|
| | 144 | | public void InferTotalBitrate(bool force = false) |
| | 145 | | { |
| 4 | 146 | | if (MediaStreams is null) |
| | 147 | | { |
| 0 | 148 | | return; |
| | 149 | | } |
| | 150 | |
|
| 4 | 151 | | if (!force && Bitrate.HasValue) |
| | 152 | | { |
| 0 | 153 | | return; |
| | 154 | | } |
| | 155 | |
|
| 4 | 156 | | var bitrate = 0; |
| 26 | 157 | | foreach (var stream in MediaStreams) |
| | 158 | | { |
| 9 | 159 | | if (!stream.IsExternal) |
| | 160 | | { |
| 9 | 161 | | bitrate += stream.BitRate ?? 0; |
| | 162 | | } |
| | 163 | | } |
| | 164 | |
|
| 4 | 165 | | if (bitrate > 0) |
| | 166 | | { |
| 4 | 167 | | Bitrate = bitrate; |
| | 168 | | } |
| 4 | 169 | | } |
| | 170 | |
|
| | 171 | | public MediaStream GetDefaultAudioStream(int? defaultIndex) |
| | 172 | | { |
| 1248 | 173 | | if (defaultIndex.HasValue && defaultIndex != -1) |
| | 174 | | { |
| 1244 | 175 | | var val = defaultIndex.Value; |
| | 176 | |
|
| 6576 | 177 | | foreach (var i in MediaStreams) |
| | 178 | | { |
| 2666 | 179 | | if (i.Type == MediaStreamType.Audio && i.Index == val) |
| | 180 | | { |
| 1244 | 181 | | return i; |
| | 182 | | } |
| | 183 | | } |
| | 184 | | } |
| | 185 | |
|
| 8 | 186 | | foreach (var i in MediaStreams) |
| | 187 | | { |
| 0 | 188 | | if (i.Type == MediaStreamType.Audio && i.IsDefault) |
| | 189 | | { |
| 0 | 190 | | return i; |
| | 191 | | } |
| | 192 | | } |
| | 193 | |
|
| 8 | 194 | | foreach (var i in MediaStreams) |
| | 195 | | { |
| 0 | 196 | | if (i.Type == MediaStreamType.Audio) |
| | 197 | | { |
| 0 | 198 | | return i; |
| | 199 | | } |
| | 200 | | } |
| | 201 | |
|
| 4 | 202 | | return null; |
| 1244 | 203 | | } |
| | 204 | |
|
| | 205 | | public MediaStream GetMediaStream(MediaStreamType type, int index) |
| | 206 | | { |
| 2681 | 207 | | foreach (var i in MediaStreams) |
| | 208 | | { |
| 1137 | 209 | | if (i.Type == type && i.Index == index) |
| | 210 | | { |
| 371 | 211 | | return i; |
| | 212 | | } |
| | 213 | | } |
| | 214 | |
|
| 18 | 215 | | return null; |
| 371 | 216 | | } |
| | 217 | |
|
| | 218 | | public int? GetStreamCount(MediaStreamType type) |
| | 219 | | { |
| 1750 | 220 | | int numMatches = 0; |
| 1750 | 221 | | int numStreams = 0; |
| | 222 | |
|
| 18224 | 223 | | foreach (var i in MediaStreams) |
| | 224 | | { |
| 7362 | 225 | | numStreams++; |
| 7362 | 226 | | if (i.Type == type) |
| | 227 | | { |
| 2129 | 228 | | numMatches++; |
| | 229 | | } |
| | 230 | | } |
| | 231 | |
|
| 1750 | 232 | | if (numStreams == 0) |
| | 233 | | { |
| 2 | 234 | | return null; |
| | 235 | | } |
| | 236 | |
|
| 1748 | 237 | | return numMatches; |
| | 238 | | } |
| | 239 | |
|
| | 240 | | public bool? IsSecondaryAudio(MediaStream stream) |
| | 241 | | { |
| 418 | 242 | | if (stream.IsExternal) |
| | 243 | | { |
| 10 | 244 | | return false; |
| | 245 | | } |
| | 246 | |
|
| | 247 | | // Look for the first audio track |
| 2040 | 248 | | foreach (var currentStream in MediaStreams) |
| | 249 | | { |
| 816 | 250 | | if (currentStream.Type == MediaStreamType.Audio && !currentStream.IsExternal) |
| | 251 | | { |
| 408 | 252 | | return currentStream.Index != stream.Index; |
| | 253 | | } |
| | 254 | | } |
| | 255 | |
|
| 0 | 256 | | return null; |
| 408 | 257 | | } |
| | 258 | | } |
| | 259 | | } |