blob: 2bd11cc91a7e52c0a4d1629e9aefb877fb1faa0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
namespace MediaBrowser.Model.Session
{
/// <summary>
/// The play method.
/// </summary>
public enum PlayMethod
{
/// <summary>
/// The media is transcoded before it is sent to the client.
/// </summary>
Transcode = 0,
/// <summary>
/// The media is remuxed into a compatible container but the streams are not re-encoded.
/// </summary>
DirectStream = 1,
/// <summary>
/// The media is sent to the client as-is.
/// </summary>
DirectPlay = 2
}
}
|