namespace MediaBrowser.Model.Session
{
///
/// The play method.
///
public enum PlayMethod
{
///
/// The media is transcoded before it is sent to the client.
///
Transcode = 0,
///
/// The media is remuxed into a compatible container but the streams are not re-encoded.
///
DirectStream = 1,
///
/// The media is sent to the client as-is.
///
DirectPlay = 2
}
}