[CHANGE] Linked decipher to video implementation

This commit is contained in:
max
2025-10-23 20:08:02 +02:00
parent e87e1c57f9
commit 972af513f0
3 changed files with 40 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ namespace Manager.YouTube.Models.Innertube;
public class StreamingFormat
{
public int Itag { get; set; }
public string Url { get; set; } = "";
public string? Url { get; set; }
public string MimeType { get; set; } = "";
public uint Bitrate { get; set; }
public uint? Width { get; set; }
@@ -26,5 +26,6 @@ public class StreamingFormat
public int? AudioChannels { get; set; }
public double? LoudnessDb { get; set; }
public bool? IsDrc { get; set; }
public string? SignatureCipher { get; set; }
public string QualityOrdinal { get; set; } = "";
}