FFMpegCore/FFMpegCore/FFProbe/AudioStream.cs
Mike Cochran 8105333443 Added audio codec profile to AudioStream
Added the audio codec profile and accompanying test.


Former-commit-id: 24f79fe3c8
2020-07-06 16:33:50 -05:00

10 lines
No EOL
318 B
C#

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