Added GetVideoStreamUrl to ApiClient

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-09 11:15:22 -04:00
parent 86f162fd7c
commit 8e9571e828
8 changed files with 181 additions and 37 deletions

View File

@@ -0,0 +1,22 @@

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