jellyfin/MediaBrowser.Model/DTO/VideoOutputFormats.cs

23 lines
431 B
C#
Raw Normal View History

2012-09-09 15:15:22 +00:00

namespace MediaBrowser.Model.DTO
{
/// <summary>
/// These are the audio 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
}
}