AudioOutputFormats.cs 330 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. /// This does not limit the inputs, only the outputs.
  7. /// </summary>
  8. public enum AudioOutputFormats
  9. {
  10. Aac,
  11. Flac,
  12. Mp3,
  13. Wma
  14. }
  15. }