23 lines
431 B
C#
23 lines
431 B
C#
|
|
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
|
|
}
|
|
}
|