You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/DTO/VideoOutputFormats.cs

23 lines
431 B

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
}
}