2017-02-02 16:02:01 +00:00
using MediaBrowser.Controller.MediaEncoding ;
using MediaBrowser.Model.Dlna ;
2016-10-25 19:02:04 +00:00
using MediaBrowser.Model.Services ;
2013-02-26 21:53:51 +00:00
namespace MediaBrowser.Api.Playback
{
2013-02-27 04:19:05 +00:00
/// <summary>
/// Class StreamRequest
/// </summary>
2017-02-02 16:02:01 +00:00
public class StreamRequest : BaseEncodingJobOptions
2013-02-26 21:53:51 +00:00
{
2013-02-27 04:19:05 +00:00
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
2013-03-09 02:34:54 +00:00
[ApiMember(Name = "Id", Description = "Item Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
2013-02-26 21:53:51 +00:00
public string Id { get ; set ; }
2014-03-22 16:16:43 +00:00
[ApiMember(Name = "MediaSourceId", Description = "The media version id, if playing an alternate version", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string MediaSourceId { get ; set ; }
2014-03-22 03:35:03 +00:00
2013-10-03 14:14:40 +00:00
[ApiMember(Name = "DeviceId", Description = "The device id of the client requesting. Used to stop encoding processes when needed.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string DeviceId { get ; set ; }
2014-01-18 05:55:21 +00:00
2017-02-17 21:11:13 +00:00
[ApiMember(Name = "Container", Description = "Container", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Container { get ; set ; }
2013-02-27 04:19:05 +00:00
/// <summary>
/// Gets or sets the audio codec.
/// </summary>
/// <value>The audio codec.</value>
2013-03-09 05:15:51 +00:00
[ApiMember(Name = "AudioCodec", Description = "Optional. Specify a audio codec to encode to, e.g. mp3. If omitted the server will auto-select using the url's extension. Options: aac, mp3, vorbis, wma.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
2014-03-23 20:07:02 +00:00
public string AudioCodec { get ; set ; }
2013-02-26 21:53:51 +00:00
2014-03-26 15:06:48 +00:00
[ApiMember(Name = "DeviceProfileId", Description = "Optional. The dlna device profile id to utilize.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public string DeviceProfileId { get ; set ; }
2014-02-13 05:11:54 +00:00
public string Params { get ; set ; }
2015-03-29 18:31:28 +00:00
public string PlaySessionId { get ; set ; }
2016-08-13 19:52:58 +00:00
public string Tag { get ; set ; }
2017-03-15 19:57:18 +00:00
public string SegmentContainer { get ; set ; }
2017-03-17 20:23:34 +00:00
public int? SegmentLength { get ; set ; }
public int? MinSegments { get ; set ; }
2013-03-09 02:34:54 +00:00
}
public class VideoStreamRequest : StreamRequest
{
2014-02-02 16:21:40 +00:00
/// <summary>
/// Gets a value indicating whether this instance has fixed resolution.
/// </summary>
/// <value><c>true</c> if this instance has fixed resolution; otherwise, <c>false</c>.</value>
public bool HasFixedResolution
{
get
{
return Width . HasValue | | Height . HasValue ;
}
}
2014-04-11 15:36:25 +00:00
2016-07-13 19:09:31 +00:00
public bool EnableSubtitlesInManifest { get ; set ; }
2013-02-26 21:53:51 +00:00
}
}