mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-13 01:34:14 +01:00
10 lines
No EOL
282 B
C#
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!;
|
|
}
|
|
} |