jellyfin/MediaBrowser.Model/DTO/VideoOutputFormats.cs
LukePulverenti Luke Pulverenti luke pulverenti 8e9571e828 Added GetVideoStreamUrl to ApiClient
2012-09-09 11:15:22 -04:00

23 lines
431 B
C#

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