12345678910111213141516171819202122 |
-
- namespace MediaBrowser.Model.DTO
- {
- /// <summary>
- /// These are the video output formats that the api is cabaple of streaming
- /// This does not limit the inputs, only the outputs.
- /// </summary>
- public enum VideoOutputFormats
- {
- Avi,
- Asf,
- M4V,
- Mkv,
- Mov,
- Mp4,
- Ogv,
- ThreeGp,
- Ts,
- Webm,
- Wmv
- }
- }
|