From f756e39b9d5b461e6bcaa4e71006038983d28213 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 30 Mar 2014 12:49:40 -0400 Subject: restored live tv playback in the web client --- .../MediaEncoding/EncodingOptions.cs | 79 ++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 MediaBrowser.Controller/MediaEncoding/EncodingOptions.cs (limited to 'MediaBrowser.Controller/MediaEncoding/EncodingOptions.cs') diff --git a/MediaBrowser.Controller/MediaEncoding/EncodingOptions.cs b/MediaBrowser.Controller/MediaEncoding/EncodingOptions.cs new file mode 100644 index 000000000..74235becd --- /dev/null +++ b/MediaBrowser.Controller/MediaEncoding/EncodingOptions.cs @@ -0,0 +1,79 @@ +using MediaBrowser.Controller.Dlna; + +namespace MediaBrowser.Controller.MediaEncoding +{ + public class EncodingOptions + { + /// + /// Gets or sets the item identifier. + /// + /// The item identifier. + public string ItemId { get; set; } + + /// + /// Gets or sets the media source identifier. + /// + /// The media source identifier. + public string MediaSourceId { get; set; } + + /// + /// Gets or sets the device profile. + /// + /// The device profile. + public DeviceProfile DeviceProfile { get; set; } + + /// + /// Gets or sets the output path. + /// + /// The output path. + public string OutputPath { get; set; } + + /// + /// Gets or sets the container. + /// + /// The container. + public string Container { get; set; } + + /// + /// Gets or sets the audio codec. + /// + /// The audio codec. + public string AudioCodec { get; set; } + + /// + /// Gets or sets the start time ticks. + /// + /// The start time ticks. + public long? StartTimeTicks { get; set; } + + /// + /// Gets or sets the maximum channels. + /// + /// The maximum channels. + public int? MaxAudioChannels { get; set; } + + /// + /// Gets or sets the channels. + /// + /// The channels. + public int? AudioChannels { get; set; } + + /// + /// Gets or sets the sample rate. + /// + /// The sample rate. + public int? AudioSampleRate { get; set; } + + /// + /// Gets or sets the bit rate. + /// + /// The bit rate. + public int? AudioBitRate { get; set; } + + /// + /// Gets or sets the maximum audio bit rate. + /// + /// The maximum audio bit rate. + public int? MaxAudioBitRate { get; set; } + } +} -- cgit v1.2.3