AudioOutputFormats.cs 344 B

12345678910111213141516
  1. 
  2. namespace MediaBrowser.Model.DTO
  3. {
  4. /// <summary>
  5. /// These are the audio output formats that the api is cabaple of streaming
  6. /// This does not limit the inputs, only the outputs.
  7. /// </summary>
  8. public enum AudioOutputFormats
  9. {
  10. Aac,
  11. Flac,
  12. Mp3,
  13. Wav,
  14. Wma
  15. }
  16. }