2
0

AudioOutputFormats.cs 285 B

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