2012-09-09 15:15:22 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.DTO
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2012-09-09 18:32:51 +00:00
|
|
|
|
/// These are the video output formats that the api is cabaple of streaming
|
2012-09-09 15:15:22 +00:00
|
|
|
|
/// This does not limit the inputs, only the outputs.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum VideoOutputFormats
|
|
|
|
|
{
|
|
|
|
|
Avi,
|
|
|
|
|
Asf,
|
|
|
|
|
M4v,
|
|
|
|
|
Mkv,
|
|
|
|
|
Mov,
|
|
|
|
|
Mp4,
|
|
|
|
|
Ogv,
|
|
|
|
|
ThreeGP,
|
|
|
|
|
Ts,
|
|
|
|
|
Webm,
|
|
|
|
|
Wmv
|
|
|
|
|
}
|
|
|
|
|
}
|