[CHANGE] Implementing video fetching and deciphering

This commit is contained in:
max
2025-10-20 13:57:55 +02:00
parent 1555ae9f3d
commit 2b5e93ff8a
10 changed files with 230 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
namespace Manager.YouTube.Models;
public class PlayerConfig
{
public double AudioLoudnessDb { get; set; }
public double AudioPerceptualLoudnessDb { get; set; }
public bool AudioEnablePerFormatLoudness { get; set; }
public uint MaxBitrate { get; set; }
public uint MaxReadAheadMediaTimeMs { get; set; }
public uint MinReadAheadMediaTimeMs { get; set; }
public uint ReadAheadGrowthRateMs { get; set; }
}