jellyfin-server/MediaBrowser.Model/DTO/AudioOutputFormats.cs
LukePulverenti Luke Pulverenti luke pulverenti 86f162fd7c Added aac to the AudioResolver
2012-09-09 10:03:49 -04:00

17 lines
344 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,
Wav,
Wma
}
}