2017-02-02 09:02:01 -07:00
using MediaBrowser.Controller.MediaEncoding ;
using MediaBrowser.Model.Dlna ;
2016-10-25 12:02:04 -07:00
using MediaBrowser.Model.Services ;
2013-02-26 14:53:51 -07:00
namespace MediaBrowser.Api.Playback
{
2013-02-26 21:19:05 -07:00
/// <summary>
/// Class StreamRequest
/// </summary>
2017-02-02 09:02:01 -07:00
public class StreamRequest : BaseEncodingJobOptions
2013-02-26 14:53:51 -07:00
{
2013-02-26 21:19:05 -07:00
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
2013-03-08 19:34:54 -07:00
[ApiMember(Name = "Id", Description = "Item Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
2013-02-26 14:53:51 -07:00
public string Id { get ; set ; }
2014-03-22 09:16:43 -07: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-21 20:35:03 -07:00
2013-10-03 07:14:40 -07: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-17 22:55:21 -07:00
2017-02-17 14:11:13 -07:00
[ApiMember(Name = "Container", Description = "Container", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string Container { get ; set ; }
2013-02-26 21:19:05 -07:00
/// <summary>
/// Gets or sets the audio codec.
/// </summary>
/// <value>The audio codec.</value>
2013-03-08 22:15:51 -07: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 13:07:02 -07:00
public string AudioCodec { get ; set ; }
2013-02-26 14:53:51 -07:00
2017-01-29 13:00:29 -07:00
public string SubtitleCodec { get ; set ; }
2014-03-26 08:06:48 -07: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-12 22:11:54 -07:00
public string Params { get ; set ; }
2015-03-29 11:31:28 -07:00
public string PlaySessionId { get ; set ; }
2015-03-28 21:56:39 -07:00
public string LiveStreamId { get ; set ; }
2016-08-13 12:52:58 -07:00
public string Tag { get ; set ; }
2017-03-15 12:57:18 -07:00
public string SegmentContainer { get ; set ; }
2013-03-08 19:34:54 -07:00
}
public class VideoStreamRequest : StreamRequest
{
2014-02-02 09:21:40 -07: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 08:36:25 -07:00
2016-07-13 12:09:31 -07:00
public bool EnableSubtitlesInManifest { get ; set ; }
2013-02-26 14:53:51 -07:00
}
}