11 lines
336 B
C#
11 lines
336 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
public class AudioOptions
|
|
{
|
|
// Audio configuration constants, not part of appsettings, not intended to be changed
|
|
public const int SampleRate = 16000;
|
|
public const int Channels = 1;
|
|
public const int BitsPerSample = 16;
|
|
public const int BufferMilliseconds = 20;
|
|
}
|