VideoOutputFormats.cs 431 B

12345678910111213141516171819202122
  1. 
  2. namespace MediaBrowser.Model.DTO
  3. {
  4. /// <summary>
  5. /// These are the video output formats that the api is cabaple of streaming
  6. /// This does not limit the inputs, only the outputs.
  7. /// </summary>
  8. public enum VideoOutputFormats
  9. {
  10. Avi,
  11. Asf,
  12. M4V,
  13. Mkv,
  14. Mov,
  15. Mp4,
  16. Ogv,
  17. ThreeGp,
  18. Ts,
  19. Webm,
  20. Wmv
  21. }
  22. }