[CHANGE] Implementing video fetching and deciphering
This commit is contained in:
10
Manager.YouTube/Models/Innertube/StreamingData.cs
Normal file
10
Manager.YouTube/Models/Innertube/StreamingData.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Manager.YouTube.Models.Innertube;
|
||||
|
||||
public class StreamingData
|
||||
{
|
||||
public DateTime FetchedUtc { get; set; } = DateTime.UtcNow;
|
||||
public int ExpiresInSeconds { get; set; }
|
||||
public string ServerAbrStreamingUrl { get; set; } = "";
|
||||
public List<StreamingFormat> Formats { get; set; } = [];
|
||||
public List<StreamingFormat> AdaptiveFormats { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user