jellyfin/MediaBrowser.Model/DTO/AudioOutputFormats.cs

16 lines
330 B
C#
Raw Normal View History

2012-09-09 13:56:04 +00:00

namespace MediaBrowser.Model.DTO
{
/// <summary>
/// These are the audio output formats that the api is cabaple of streaming
2012-09-09 14:03:49 +00:00
/// This does not limit the inputs, only the outputs.
2012-09-09 13:56:04 +00:00
/// </summary>
public enum AudioOutputFormats
{
Aac,
Flac,
Mp3,
Wma
}
}