| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591, SA1401 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.Linq; |
| | 9 | | using Jellyfin.Data.Enums; |
| | 10 | | using Jellyfin.Database.Implementations.Entities; |
| | 11 | | using MediaBrowser.Model.Dlna; |
| | 12 | | using MediaBrowser.Model.Drawing; |
| | 13 | | using MediaBrowser.Model.Dto; |
| | 14 | | using MediaBrowser.Model.Entities; |
| | 15 | | using MediaBrowser.Model.MediaInfo; |
| | 16 | | using MediaBrowser.Model.Net; |
| | 17 | | using MediaBrowser.Model.Session; |
| | 18 | |
|
| | 19 | | namespace MediaBrowser.Controller.MediaEncoding |
| | 20 | | { |
| | 21 | | // For now, a common base class until the API and MediaEncoding classes are unified |
| | 22 | | public class EncodingJobInfo |
| | 23 | | { |
| | 24 | | public int? OutputAudioBitrate; |
| | 25 | | public int? OutputAudioChannels; |
| | 26 | |
|
| | 27 | | private TranscodeReason? _transcodeReasons = null; |
| | 28 | |
|
| | 29 | | public EncodingJobInfo(TranscodingJobType jobType) |
| | 30 | | { |
| 0 | 31 | | TranscodingType = jobType; |
| 0 | 32 | | RemoteHttpHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); |
| 0 | 33 | | SupportedAudioCodecs = Array.Empty<string>(); |
| 0 | 34 | | SupportedVideoCodecs = Array.Empty<string>(); |
| 0 | 35 | | SupportedSubtitleCodecs = Array.Empty<string>(); |
| 0 | 36 | | } |
| | 37 | |
|
| | 38 | | public TranscodeReason TranscodeReasons |
| | 39 | | { |
| | 40 | | get |
| | 41 | | { |
| 0 | 42 | | if (!_transcodeReasons.HasValue) |
| | 43 | | { |
| 0 | 44 | | if (BaseRequest.TranscodeReasons is null) |
| | 45 | | { |
| 0 | 46 | | _transcodeReasons = 0; |
| 0 | 47 | | return 0; |
| | 48 | | } |
| | 49 | |
|
| 0 | 50 | | _ = Enum.TryParse<TranscodeReason>(BaseRequest.TranscodeReasons, out var reason); |
| 0 | 51 | | _transcodeReasons = reason; |
| | 52 | | } |
| | 53 | |
|
| 0 | 54 | | return _transcodeReasons.Value; |
| | 55 | | } |
| | 56 | | } |
| | 57 | |
|
| | 58 | | public IProgress<double> Progress { get; set; } |
| | 59 | |
|
| | 60 | | public MediaStream VideoStream { get; set; } |
| | 61 | |
|
| | 62 | | public VideoType VideoType { get; set; } |
| | 63 | |
|
| | 64 | | public Dictionary<string, string> RemoteHttpHeaders { get; set; } |
| | 65 | |
|
| | 66 | | public string OutputVideoCodec { get; set; } |
| | 67 | |
|
| | 68 | | public MediaProtocol InputProtocol { get; set; } |
| | 69 | |
|
| | 70 | | public string MediaPath { get; set; } |
| | 71 | |
|
| | 72 | | public bool IsInputVideo { get; set; } |
| | 73 | |
|
| | 74 | | public string OutputAudioCodec { get; set; } |
| | 75 | |
|
| | 76 | | public int? OutputVideoBitrate { get; set; } |
| | 77 | |
|
| | 78 | | public MediaStream SubtitleStream { get; set; } |
| | 79 | |
|
| | 80 | | public SubtitleDeliveryMethod SubtitleDeliveryMethod { get; set; } |
| | 81 | |
|
| | 82 | | public string[] SupportedSubtitleCodecs { get; set; } |
| | 83 | |
|
| | 84 | | public int InternalSubtitleStreamOffset { get; set; } |
| | 85 | |
|
| | 86 | | public MediaSourceInfo MediaSource { get; set; } |
| | 87 | |
|
| | 88 | | public User User { get; set; } |
| | 89 | |
|
| | 90 | | public long? RunTimeTicks { get; set; } |
| | 91 | |
|
| | 92 | | public bool ReadInputAtNativeFramerate { get; set; } |
| | 93 | |
|
| | 94 | | public string OutputFilePath { get; set; } |
| | 95 | |
|
| | 96 | | public string MimeType { get; set; } |
| | 97 | |
|
| 0 | 98 | | public bool IgnoreInputDts => MediaSource.IgnoreDts; |
| | 99 | |
|
| 0 | 100 | | public bool IgnoreInputIndex => MediaSource.IgnoreIndex; |
| | 101 | |
|
| 0 | 102 | | public bool GenPtsInput => MediaSource.GenPtsInput; |
| | 103 | |
|
| 0 | 104 | | public bool DiscardCorruptFramesInput => false; |
| | 105 | |
|
| 0 | 106 | | public bool EnableFastSeekInput => false; |
| | 107 | |
|
| 0 | 108 | | public bool GenPtsOutput => false; |
| | 109 | |
|
| | 110 | | public string OutputContainer { get; set; } |
| | 111 | |
|
| | 112 | | public string OutputVideoSync { get; set; } |
| | 113 | |
|
| | 114 | | public string AlbumCoverPath { get; set; } |
| | 115 | |
|
| | 116 | | public string InputAudioSync { get; set; } |
| | 117 | |
|
| | 118 | | public string InputVideoSync { get; set; } |
| | 119 | |
|
| | 120 | | public TransportStreamTimestamp InputTimestamp { get; set; } |
| | 121 | |
|
| | 122 | | public MediaStream AudioStream { get; set; } |
| | 123 | |
|
| | 124 | | public string[] SupportedAudioCodecs { get; set; } |
| | 125 | |
|
| | 126 | | public string[] SupportedVideoCodecs { get; set; } |
| | 127 | |
|
| | 128 | | public string InputContainer { get; set; } |
| | 129 | |
|
| | 130 | | public IsoType? IsoType { get; set; } |
| | 131 | |
|
| | 132 | | public BaseEncodingJobOptions BaseRequest { get; set; } |
| | 133 | |
|
| | 134 | | public bool IsVideoRequest { get; set; } |
| | 135 | |
|
| | 136 | | public TranscodingJobType TranscodingType { get; set; } |
| | 137 | |
|
| 0 | 138 | | public long? StartTimeTicks => BaseRequest.StartTimeTicks; |
| | 139 | |
|
| 0 | 140 | | public bool CopyTimestamps => BaseRequest.CopyTimestamps; |
| | 141 | |
|
| | 142 | | public bool IsSegmentedLiveStream |
| 0 | 143 | | => TranscodingType != TranscodingJobType.Progressive && !RunTimeTicks.HasValue; |
| | 144 | |
|
| 0 | 145 | | public int? TotalOutputBitrate => (OutputAudioBitrate ?? 0) + (OutputVideoBitrate ?? 0); |
| | 146 | |
|
| | 147 | | public int? OutputWidth |
| | 148 | | { |
| | 149 | | get |
| | 150 | | { |
| 0 | 151 | | if (VideoStream is not null && VideoStream.Width.HasValue && VideoStream.Height.HasValue) |
| | 152 | | { |
| 0 | 153 | | var size = new ImageDimensions(VideoStream.Width.Value, VideoStream.Height.Value); |
| | 154 | |
|
| 0 | 155 | | var newSize = DrawingUtils.Resize( |
| 0 | 156 | | size, |
| 0 | 157 | | BaseRequest.Width ?? 0, |
| 0 | 158 | | BaseRequest.Height ?? 0, |
| 0 | 159 | | BaseRequest.MaxWidth ?? 0, |
| 0 | 160 | | BaseRequest.MaxHeight ?? 0); |
| | 161 | |
|
| 0 | 162 | | return newSize.Width; |
| | 163 | | } |
| | 164 | |
|
| 0 | 165 | | if (!IsVideoRequest) |
| | 166 | | { |
| 0 | 167 | | return null; |
| | 168 | | } |
| | 169 | |
|
| 0 | 170 | | return BaseRequest.MaxWidth ?? BaseRequest.Width; |
| | 171 | | } |
| | 172 | | } |
| | 173 | |
|
| | 174 | | public int? OutputHeight |
| | 175 | | { |
| | 176 | | get |
| | 177 | | { |
| 0 | 178 | | if (VideoStream is not null && VideoStream.Width.HasValue && VideoStream.Height.HasValue) |
| | 179 | | { |
| 0 | 180 | | var size = new ImageDimensions(VideoStream.Width.Value, VideoStream.Height.Value); |
| | 181 | |
|
| 0 | 182 | | var newSize = DrawingUtils.Resize( |
| 0 | 183 | | size, |
| 0 | 184 | | BaseRequest.Width ?? 0, |
| 0 | 185 | | BaseRequest.Height ?? 0, |
| 0 | 186 | | BaseRequest.MaxWidth ?? 0, |
| 0 | 187 | | BaseRequest.MaxHeight ?? 0); |
| | 188 | |
|
| 0 | 189 | | return newSize.Height; |
| | 190 | | } |
| | 191 | |
|
| 0 | 192 | | if (!IsVideoRequest) |
| | 193 | | { |
| 0 | 194 | | return null; |
| | 195 | | } |
| | 196 | |
|
| 0 | 197 | | return BaseRequest.MaxHeight ?? BaseRequest.Height; |
| | 198 | | } |
| | 199 | | } |
| | 200 | |
|
| | 201 | | public int? OutputAudioSampleRate |
| | 202 | | { |
| | 203 | | get |
| | 204 | | { |
| 0 | 205 | | if (BaseRequest.Static |
| 0 | 206 | | || EncodingHelper.IsCopyCodec(OutputAudioCodec)) |
| | 207 | | { |
| 0 | 208 | | if (AudioStream is not null) |
| | 209 | | { |
| 0 | 210 | | return AudioStream.SampleRate; |
| | 211 | | } |
| | 212 | | } |
| 0 | 213 | | else if (BaseRequest.AudioSampleRate.HasValue) |
| | 214 | | { |
| | 215 | | // Don't exceed what the encoder supports |
| | 216 | | // Seeing issues of attempting to encode to 88200 |
| 0 | 217 | | return BaseRequest.AudioSampleRate.Value; |
| | 218 | | } |
| | 219 | |
|
| 0 | 220 | | return null; |
| | 221 | | } |
| | 222 | | } |
| | 223 | |
|
| | 224 | | public int? OutputAudioBitDepth |
| | 225 | | { |
| | 226 | | get |
| | 227 | | { |
| 0 | 228 | | if (BaseRequest.Static |
| 0 | 229 | | || EncodingHelper.IsCopyCodec(OutputAudioCodec)) |
| | 230 | | { |
| 0 | 231 | | if (AudioStream is not null) |
| | 232 | | { |
| 0 | 233 | | return AudioStream.BitDepth; |
| | 234 | | } |
| | 235 | | } |
| | 236 | |
|
| 0 | 237 | | return null; |
| | 238 | | } |
| | 239 | | } |
| | 240 | |
|
| | 241 | | /// <summary> |
| | 242 | | /// Gets the target video level. |
| | 243 | | /// </summary> |
| | 244 | | public double? TargetVideoLevel |
| | 245 | | { |
| | 246 | | get |
| | 247 | | { |
| 0 | 248 | | if (BaseRequest.Static || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 249 | | { |
| 0 | 250 | | return VideoStream?.Level; |
| | 251 | | } |
| | 252 | |
|
| 0 | 253 | | var level = GetRequestedLevel(ActualOutputVideoCodec); |
| 0 | 254 | | if (double.TryParse(level, CultureInfo.InvariantCulture, out var result)) |
| | 255 | | { |
| 0 | 256 | | return result; |
| | 257 | | } |
| | 258 | |
|
| 0 | 259 | | return null; |
| | 260 | | } |
| | 261 | | } |
| | 262 | |
|
| | 263 | | /// <summary> |
| | 264 | | /// Gets the target video bit depth. |
| | 265 | | /// </summary> |
| | 266 | | public int? TargetVideoBitDepth |
| | 267 | | { |
| | 268 | | get |
| | 269 | | { |
| 0 | 270 | | if (BaseRequest.Static |
| 0 | 271 | | || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 272 | | { |
| 0 | 273 | | return VideoStream?.BitDepth; |
| | 274 | | } |
| | 275 | |
|
| 0 | 276 | | return null; |
| | 277 | | } |
| | 278 | | } |
| | 279 | |
|
| | 280 | | /// <summary> |
| | 281 | | /// Gets the target reference frames. |
| | 282 | | /// </summary> |
| | 283 | | /// <value>The target reference frames.</value> |
| | 284 | | public int? TargetRefFrames |
| | 285 | | { |
| | 286 | | get |
| | 287 | | { |
| 0 | 288 | | if (BaseRequest.Static |
| 0 | 289 | | || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 290 | | { |
| 0 | 291 | | return VideoStream?.RefFrames; |
| | 292 | | } |
| | 293 | |
|
| 0 | 294 | | return null; |
| | 295 | | } |
| | 296 | | } |
| | 297 | |
|
| | 298 | | /// <summary> |
| | 299 | | /// Gets the target framerate. |
| | 300 | | /// </summary> |
| | 301 | | public float? TargetFramerate |
| | 302 | | { |
| | 303 | | get |
| | 304 | | { |
| 0 | 305 | | if (BaseRequest.Static |
| 0 | 306 | | || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 307 | | { |
| 0 | 308 | | return VideoStream?.ReferenceFrameRate; |
| | 309 | | } |
| | 310 | |
|
| 0 | 311 | | return BaseRequest.MaxFramerate ?? BaseRequest.Framerate; |
| | 312 | | } |
| | 313 | | } |
| | 314 | |
|
| | 315 | | public TransportStreamTimestamp TargetTimestamp |
| | 316 | | { |
| | 317 | | get |
| | 318 | | { |
| 0 | 319 | | if (BaseRequest.Static) |
| | 320 | | { |
| 0 | 321 | | return InputTimestamp; |
| | 322 | | } |
| | 323 | |
|
| 0 | 324 | | return string.Equals(OutputContainer, "m2ts", StringComparison.OrdinalIgnoreCase) ? |
| 0 | 325 | | TransportStreamTimestamp.Valid : |
| 0 | 326 | | TransportStreamTimestamp.None; |
| | 327 | | } |
| | 328 | | } |
| | 329 | |
|
| | 330 | | /// <summary> |
| | 331 | | /// Gets the target packet length. |
| | 332 | | /// </summary> |
| | 333 | | public int? TargetPacketLength |
| | 334 | | { |
| | 335 | | get |
| | 336 | | { |
| 0 | 337 | | if (BaseRequest.Static || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 338 | | { |
| 0 | 339 | | return VideoStream?.PacketLength; |
| | 340 | | } |
| | 341 | |
|
| 0 | 342 | | return null; |
| | 343 | | } |
| | 344 | | } |
| | 345 | |
|
| | 346 | | /// <summary> |
| | 347 | | /// Gets the target video profile. |
| | 348 | | /// </summary> |
| | 349 | | public string TargetVideoProfile |
| | 350 | | { |
| | 351 | | get |
| | 352 | | { |
| 0 | 353 | | if (BaseRequest.Static || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 354 | | { |
| 0 | 355 | | return VideoStream?.Profile; |
| | 356 | | } |
| | 357 | |
|
| 0 | 358 | | var requestedProfile = GetRequestedProfiles(ActualOutputVideoCodec).FirstOrDefault(); |
| 0 | 359 | | if (!string.IsNullOrEmpty(requestedProfile)) |
| | 360 | | { |
| 0 | 361 | | return requestedProfile; |
| | 362 | | } |
| | 363 | |
|
| 0 | 364 | | return null; |
| | 365 | | } |
| | 366 | | } |
| | 367 | |
|
| | 368 | | /// <summary> |
| | 369 | | /// Gets the target video range type. |
| | 370 | | /// </summary> |
| | 371 | | public VideoRangeType TargetVideoRangeType |
| | 372 | | { |
| | 373 | | get |
| | 374 | | { |
| 0 | 375 | | if (BaseRequest.Static || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 376 | | { |
| 0 | 377 | | return VideoStream?.VideoRangeType ?? VideoRangeType.Unknown; |
| | 378 | | } |
| | 379 | |
|
| 0 | 380 | | if (Enum.TryParse(GetRequestedRangeTypes(ActualOutputVideoCodec).FirstOrDefault() ?? "Unknown", true, ou |
| | 381 | | { |
| 0 | 382 | | return requestedRangeType; |
| | 383 | | } |
| | 384 | |
|
| 0 | 385 | | return VideoRangeType.Unknown; |
| | 386 | | } |
| | 387 | | } |
| | 388 | |
|
| | 389 | | public string TargetVideoCodecTag |
| | 390 | | { |
| | 391 | | get |
| | 392 | | { |
| 0 | 393 | | if (BaseRequest.Static |
| 0 | 394 | | || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 395 | | { |
| 0 | 396 | | return VideoStream?.CodecTag; |
| | 397 | | } |
| | 398 | |
|
| 0 | 399 | | return null; |
| | 400 | | } |
| | 401 | | } |
| | 402 | |
|
| | 403 | | public bool? IsTargetAnamorphic |
| | 404 | | { |
| | 405 | | get |
| | 406 | | { |
| 0 | 407 | | if (BaseRequest.Static |
| 0 | 408 | | || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 409 | | { |
| 0 | 410 | | return VideoStream?.IsAnamorphic; |
| | 411 | | } |
| | 412 | |
|
| 0 | 413 | | return false; |
| | 414 | | } |
| | 415 | | } |
| | 416 | |
|
| | 417 | | public string ActualOutputVideoCodec |
| | 418 | | { |
| | 419 | | get |
| | 420 | | { |
| 0 | 421 | | if (VideoStream is null) |
| | 422 | | { |
| 0 | 423 | | return null; |
| | 424 | | } |
| | 425 | |
|
| 0 | 426 | | if (EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 427 | | { |
| 0 | 428 | | return VideoStream.Codec; |
| | 429 | | } |
| | 430 | |
|
| 0 | 431 | | return OutputVideoCodec; |
| | 432 | | } |
| | 433 | | } |
| | 434 | |
|
| | 435 | | public string ActualOutputAudioCodec |
| | 436 | | { |
| | 437 | | get |
| | 438 | | { |
| 0 | 439 | | if (AudioStream is null) |
| | 440 | | { |
| 0 | 441 | | return null; |
| | 442 | | } |
| | 443 | |
|
| 0 | 444 | | if (EncodingHelper.IsCopyCodec(OutputAudioCodec)) |
| | 445 | | { |
| 0 | 446 | | return AudioStream.Codec; |
| | 447 | | } |
| | 448 | |
|
| 0 | 449 | | return OutputAudioCodec; |
| | 450 | | } |
| | 451 | | } |
| | 452 | |
|
| | 453 | | public bool? IsTargetInterlaced |
| | 454 | | { |
| | 455 | | get |
| | 456 | | { |
| 0 | 457 | | if (BaseRequest.Static |
| 0 | 458 | | || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 459 | | { |
| 0 | 460 | | return VideoStream?.IsInterlaced; |
| | 461 | | } |
| | 462 | |
|
| 0 | 463 | | if (DeInterlace(ActualOutputVideoCodec, true)) |
| | 464 | | { |
| 0 | 465 | | return false; |
| | 466 | | } |
| | 467 | |
|
| 0 | 468 | | return VideoStream?.IsInterlaced; |
| | 469 | | } |
| | 470 | | } |
| | 471 | |
|
| | 472 | | public bool? IsTargetAVC |
| | 473 | | { |
| | 474 | | get |
| | 475 | | { |
| 0 | 476 | | if (BaseRequest.Static || EncodingHelper.IsCopyCodec(OutputVideoCodec)) |
| | 477 | | { |
| 0 | 478 | | return VideoStream?.IsAVC; |
| | 479 | | } |
| | 480 | |
|
| 0 | 481 | | return false; |
| | 482 | | } |
| | 483 | | } |
| | 484 | |
|
| | 485 | | public int? TargetVideoStreamCount |
| | 486 | | { |
| | 487 | | get |
| | 488 | | { |
| 0 | 489 | | if (BaseRequest.Static) |
| | 490 | | { |
| 0 | 491 | | return GetMediaStreamCount(MediaStreamType.Video, int.MaxValue); |
| | 492 | | } |
| | 493 | |
|
| 0 | 494 | | return GetMediaStreamCount(MediaStreamType.Video, 1); |
| | 495 | | } |
| | 496 | | } |
| | 497 | |
|
| | 498 | | public int? TargetAudioStreamCount |
| | 499 | | { |
| | 500 | | get |
| | 501 | | { |
| 0 | 502 | | if (BaseRequest.Static) |
| | 503 | | { |
| 0 | 504 | | return GetMediaStreamCount(MediaStreamType.Audio, int.MaxValue); |
| | 505 | | } |
| | 506 | |
|
| 0 | 507 | | return GetMediaStreamCount(MediaStreamType.Audio, 1); |
| | 508 | | } |
| | 509 | | } |
| | 510 | |
|
| 0 | 511 | | public bool EnableAudioVbrEncoding => BaseRequest.EnableAudioVbrEncoding; |
| | 512 | |
|
| 0 | 513 | | public int HlsListSize => 0; |
| | 514 | |
|
| | 515 | | public bool EnableBreakOnNonKeyFrames(string videoCodec) |
| | 516 | | { |
| 0 | 517 | | if (TranscodingType != TranscodingJobType.Progressive) |
| | 518 | | { |
| 0 | 519 | | if (IsSegmentedLiveStream) |
| | 520 | | { |
| 0 | 521 | | return false; |
| | 522 | | } |
| | 523 | |
|
| 0 | 524 | | return BaseRequest.BreakOnNonKeyFrames && EncodingHelper.IsCopyCodec(videoCodec); |
| | 525 | | } |
| | 526 | |
|
| 0 | 527 | | return false; |
| | 528 | | } |
| | 529 | |
|
| | 530 | | private int? GetMediaStreamCount(MediaStreamType type, int limit) |
| | 531 | | { |
| 0 | 532 | | var count = MediaSource.GetStreamCount(type); |
| | 533 | |
|
| 0 | 534 | | if (count.HasValue) |
| | 535 | | { |
| 0 | 536 | | count = Math.Min(count.Value, limit); |
| | 537 | | } |
| | 538 | |
|
| 0 | 539 | | return count; |
| | 540 | | } |
| | 541 | |
|
| | 542 | | public string GetMimeType(string outputPath, bool enableStreamDefault = true) |
| | 543 | | { |
| 0 | 544 | | if (!string.IsNullOrEmpty(MimeType)) |
| | 545 | | { |
| 0 | 546 | | return MimeType; |
| | 547 | | } |
| | 548 | |
|
| 0 | 549 | | if (enableStreamDefault) |
| | 550 | | { |
| 0 | 551 | | return MimeTypes.GetMimeType(outputPath); |
| | 552 | | } |
| | 553 | |
|
| 0 | 554 | | return MimeTypes.GetMimeType(outputPath, null); |
| | 555 | | } |
| | 556 | |
|
| | 557 | | public bool DeInterlace(string videoCodec, bool forceDeinterlaceIfSourceIsInterlaced) |
| | 558 | | { |
| 0 | 559 | | var videoStream = VideoStream; |
| 0 | 560 | | var isInputInterlaced = videoStream is not null && videoStream.IsInterlaced; |
| | 561 | |
|
| 0 | 562 | | if (!isInputInterlaced) |
| | 563 | | { |
| 0 | 564 | | return false; |
| | 565 | | } |
| | 566 | |
|
| | 567 | | // Support general param |
| 0 | 568 | | if (BaseRequest.DeInterlace) |
| | 569 | | { |
| 0 | 570 | | return true; |
| | 571 | | } |
| | 572 | |
|
| 0 | 573 | | if (!string.IsNullOrEmpty(videoCodec)) |
| | 574 | | { |
| 0 | 575 | | if (string.Equals(BaseRequest.GetOption(videoCodec, "deinterlace"), "true", StringComparison.OrdinalIgno |
| | 576 | | { |
| 0 | 577 | | return true; |
| | 578 | | } |
| | 579 | | } |
| | 580 | |
|
| 0 | 581 | | return forceDeinterlaceIfSourceIsInterlaced; |
| | 582 | | } |
| | 583 | |
|
| | 584 | | public string[] GetRequestedProfiles(string codec) |
| | 585 | | { |
| 0 | 586 | | if (!string.IsNullOrEmpty(BaseRequest.Profile)) |
| | 587 | | { |
| 0 | 588 | | return BaseRequest.Profile.Split(new[] { '|', ',' }, StringSplitOptions.RemoveEmptyEntries); |
| | 589 | | } |
| | 590 | |
|
| 0 | 591 | | if (!string.IsNullOrEmpty(codec)) |
| | 592 | | { |
| 0 | 593 | | var profile = BaseRequest.GetOption(codec, "profile"); |
| | 594 | |
|
| 0 | 595 | | if (!string.IsNullOrEmpty(profile)) |
| | 596 | | { |
| 0 | 597 | | return profile.Split(new[] { '|', ',' }, StringSplitOptions.RemoveEmptyEntries); |
| | 598 | | } |
| | 599 | | } |
| | 600 | |
|
| 0 | 601 | | return Array.Empty<string>(); |
| | 602 | | } |
| | 603 | |
|
| | 604 | | public string[] GetRequestedRangeTypes(string codec) |
| | 605 | | { |
| 0 | 606 | | if (!string.IsNullOrEmpty(BaseRequest.VideoRangeType)) |
| | 607 | | { |
| 0 | 608 | | return BaseRequest.VideoRangeType.Split(new[] { '|', ',' }, StringSplitOptions.RemoveEmptyEntries); |
| | 609 | | } |
| | 610 | |
|
| 0 | 611 | | if (!string.IsNullOrEmpty(codec)) |
| | 612 | | { |
| 0 | 613 | | var rangetype = BaseRequest.GetOption(codec, "rangetype"); |
| | 614 | |
|
| 0 | 615 | | if (!string.IsNullOrEmpty(rangetype)) |
| | 616 | | { |
| 0 | 617 | | return rangetype.Split(new[] { '|', ',' }, StringSplitOptions.RemoveEmptyEntries); |
| | 618 | | } |
| | 619 | | } |
| | 620 | |
|
| 0 | 621 | | return Array.Empty<string>(); |
| | 622 | | } |
| | 623 | |
|
| | 624 | | public string[] GetRequestedCodecTags(string codec) |
| | 625 | | { |
| 0 | 626 | | if (!string.IsNullOrEmpty(BaseRequest.CodecTag)) |
| | 627 | | { |
| 0 | 628 | | return BaseRequest.CodecTag.Split(new[] { '|', ',' }, StringSplitOptions.RemoveEmptyEntries); |
| | 629 | | } |
| | 630 | |
|
| 0 | 631 | | if (!string.IsNullOrEmpty(codec)) |
| | 632 | | { |
| 0 | 633 | | var codectag = BaseRequest.GetOption(codec, "codectag"); |
| | 634 | |
|
| 0 | 635 | | if (!string.IsNullOrEmpty(codectag)) |
| | 636 | | { |
| 0 | 637 | | return codectag.Split(new[] { '|', ',' }, StringSplitOptions.RemoveEmptyEntries); |
| | 638 | | } |
| | 639 | | } |
| | 640 | |
|
| 0 | 641 | | return Array.Empty<string>(); |
| | 642 | | } |
| | 643 | |
|
| | 644 | | public string GetRequestedLevel(string codec) |
| | 645 | | { |
| 0 | 646 | | if (!string.IsNullOrEmpty(BaseRequest.Level)) |
| | 647 | | { |
| 0 | 648 | | return BaseRequest.Level; |
| | 649 | | } |
| | 650 | |
|
| 0 | 651 | | if (!string.IsNullOrEmpty(codec)) |
| | 652 | | { |
| 0 | 653 | | return BaseRequest.GetOption(codec, "level"); |
| | 654 | | } |
| | 655 | |
|
| 0 | 656 | | return null; |
| | 657 | | } |
| | 658 | |
|
| | 659 | | public int? GetRequestedMaxRefFrames(string codec) |
| | 660 | | { |
| 0 | 661 | | if (BaseRequest.MaxRefFrames.HasValue) |
| | 662 | | { |
| 0 | 663 | | return BaseRequest.MaxRefFrames; |
| | 664 | | } |
| | 665 | |
|
| 0 | 666 | | if (!string.IsNullOrEmpty(codec)) |
| | 667 | | { |
| 0 | 668 | | var value = BaseRequest.GetOption(codec, "maxrefframes"); |
| 0 | 669 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var result)) |
| | 670 | | { |
| 0 | 671 | | return result; |
| | 672 | | } |
| | 673 | | } |
| | 674 | |
|
| 0 | 675 | | return null; |
| | 676 | | } |
| | 677 | |
|
| | 678 | | public int? GetRequestedVideoBitDepth(string codec) |
| | 679 | | { |
| 0 | 680 | | if (BaseRequest.MaxVideoBitDepth.HasValue) |
| | 681 | | { |
| 0 | 682 | | return BaseRequest.MaxVideoBitDepth; |
| | 683 | | } |
| | 684 | |
|
| 0 | 685 | | if (!string.IsNullOrEmpty(codec)) |
| | 686 | | { |
| 0 | 687 | | var value = BaseRequest.GetOption(codec, "videobitdepth"); |
| 0 | 688 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var result)) |
| | 689 | | { |
| 0 | 690 | | return result; |
| | 691 | | } |
| | 692 | | } |
| | 693 | |
|
| 0 | 694 | | return null; |
| | 695 | | } |
| | 696 | |
|
| | 697 | | public int? GetRequestedAudioBitDepth(string codec) |
| | 698 | | { |
| 0 | 699 | | if (BaseRequest.MaxAudioBitDepth.HasValue) |
| | 700 | | { |
| 0 | 701 | | return BaseRequest.MaxAudioBitDepth; |
| | 702 | | } |
| | 703 | |
|
| 0 | 704 | | if (!string.IsNullOrEmpty(codec)) |
| | 705 | | { |
| 0 | 706 | | var value = BaseRequest.GetOption(codec, "audiobitdepth"); |
| 0 | 707 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var result)) |
| | 708 | | { |
| 0 | 709 | | return result; |
| | 710 | | } |
| | 711 | | } |
| | 712 | |
|
| 0 | 713 | | return null; |
| | 714 | | } |
| | 715 | |
|
| | 716 | | public int? GetRequestedAudioChannels(string codec) |
| | 717 | | { |
| 0 | 718 | | if (!string.IsNullOrEmpty(codec)) |
| | 719 | | { |
| 0 | 720 | | var value = BaseRequest.GetOption(codec, "audiochannels"); |
| 0 | 721 | | if (int.TryParse(value, CultureInfo.InvariantCulture, out var result)) |
| | 722 | | { |
| 0 | 723 | | return result; |
| | 724 | | } |
| | 725 | | } |
| | 726 | |
|
| 0 | 727 | | if (BaseRequest.MaxAudioChannels.HasValue) |
| | 728 | | { |
| 0 | 729 | | return BaseRequest.MaxAudioChannels; |
| | 730 | | } |
| | 731 | |
|
| 0 | 732 | | if (BaseRequest.AudioChannels.HasValue) |
| | 733 | | { |
| 0 | 734 | | return BaseRequest.AudioChannels; |
| | 735 | | } |
| | 736 | |
|
| 0 | 737 | | if (BaseRequest.TranscodingMaxAudioChannels.HasValue) |
| | 738 | | { |
| 0 | 739 | | return BaseRequest.TranscodingMaxAudioChannels; |
| | 740 | | } |
| | 741 | |
|
| 0 | 742 | | return null; |
| | 743 | | } |
| | 744 | |
|
| | 745 | | public virtual void ReportTranscodingProgress(TimeSpan? transcodingPosition, float? framerate, double? percentCo |
| | 746 | | { |
| 0 | 747 | | Progress.Report(percentComplete.Value); |
| 0 | 748 | | } |
| | 749 | | } |
| | 750 | | } |