16 lines
330 B
C#
16 lines
330 B
C#
|
|
namespace MediaBrowser.Model.DTO
|
|
{
|
|
/// <summary>
|
|
/// These are the audio output formats that the api is cabaple of streaming
|
|
/// This does not limit the inputs, only the outputs.
|
|
/// </summary>
|
|
public enum AudioOutputFormats
|
|
{
|
|
Aac,
|
|
Flac,
|
|
Mp3,
|
|
Wma
|
|
}
|
|
}
|