mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-20 05:04:18 +01:00
19 lines
410 B
C#
19 lines
410 B
C#
namespace MediaBrowser.Model.Dlna
|
|
{
|
|
/// <summary>
|
|
/// The encoding context.
|
|
/// </summary>
|
|
public enum EncodingContext
|
|
{
|
|
/// <summary>
|
|
/// The media is transcoded on the fly and delivered as a stream.
|
|
/// </summary>
|
|
Streaming = 0,
|
|
|
|
/// <summary>
|
|
/// The media is transcoded to a static file.
|
|
/// </summary>
|
|
Static = 1
|
|
}
|
|
}
|