jellyfin-server/MediaBrowser.Model/DTO/AudioOutputFormats.cs

16 lines
285 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
/// </summary>
public enum AudioOutputFormats
{
Aac,
Flac,
Mp3,
Wav,
Wma
}
}