FFMpegCore/FFMpegCore/FFProbe/AudioStream.cs
2022-03-24 20:37:27 +01:00

10 lines
No EOL
282 B
C#

namespace FFMpegCore
{
public class AudioStream : MediaStream
{
public int Channels { get; set; }
public string ChannelLayout { get; set; } = null!;
public int SampleRateHz { get; set; }
public string Profile { get; set; } = null!;
}
}