diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-03-19 14:59:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-19 14:59:46 -0400 |
| commit | 22f8b2122d93c158b11fa56dce35e7c584d36789 (patch) | |
| tree | 70cd8a375ebd2465f59968a1505508ab045c860d /MediaBrowser.Controller/MediaEncoding/EncodingJobInfo.cs | |
| parent | 796096976f4af5b96b76812457faa2be5e657e18 (diff) | |
| parent | 5b3b18b51dec8421d3ffc8c00874e22b026586b6 (diff) | |
Merge pull request #2534 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/EncodingJobInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/EncodingJobInfo.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/EncodingJobInfo.cs b/MediaBrowser.Controller/MediaEncoding/EncodingJobInfo.cs index a18b86432..6f566515e 100644 --- a/MediaBrowser.Controller/MediaEncoding/EncodingJobInfo.cs +++ b/MediaBrowser.Controller/MediaEncoding/EncodingJobInfo.cs @@ -29,6 +29,7 @@ namespace MediaBrowser.Controller.MediaEncoding public int? OutputVideoBitrate { get; set; } public MediaStream SubtitleStream { get; set; } public SubtitleDeliveryMethod SubtitleDeliveryMethod { get; set; } + public List<string> SupportedSubtitleCodecs { get; set; } public int InternalSubtitleStreamOffset { get; set; } public MediaSourceInfo MediaSource { get; set; } @@ -52,6 +53,8 @@ namespace MediaBrowser.Controller.MediaEncoding public string InputContainer { get; set; } public IsoType? IsoType { get; set; } + public bool EnableMpegtsM2TsMode { get; set; } + public BaseEncodingJobOptions BaseRequest { get; set; } public long? StartTimeTicks @@ -64,6 +67,7 @@ namespace MediaBrowser.Controller.MediaEncoding get { return BaseRequest.CopyTimestamps; } } + public int? OutputAudioBitrate; public int? OutputAudioChannels; public int? OutputAudioSampleRate; public bool DeInterlace { get; set; } @@ -74,8 +78,9 @@ namespace MediaBrowser.Controller.MediaEncoding _logger = logger; RemoteHttpHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); PlayableStreamFileNames = new List<string>(); + SupportedAudioCodecs = new List<string>(); SupportedVideoCodecs = new List<string>(); - SupportedVideoCodecs = new List<string>(); + SupportedSubtitleCodecs = new List<string>(); } /// <summary> |
