12 lines
430 B
C#
12 lines
430 B
C#
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; }
|
|
} |