2014-10-12 01:46:02 +00:00
|
|
|
|
using MediaBrowser.Model.Drawing;
|
2014-04-23 02:47:46 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-06-01 04:11:04 +00:00
|
|
|
|
using MediaBrowser.Model.Extensions;
|
2014-05-08 21:23:24 +00:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2014-08-05 23:59:24 +00:00
|
|
|
|
using MediaBrowser.Model.Session;
|
2014-04-06 17:53:23 +00:00
|
|
|
|
using System;
|
2014-04-01 22:23:07 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class StreamInfo.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StreamInfo
|
|
|
|
|
{
|
|
|
|
|
public string ItemId { get; set; }
|
|
|
|
|
|
2014-08-05 23:59:24 +00:00
|
|
|
|
public PlayMethod PlayMethod { get; set; }
|
2015-01-02 05:36:27 +00:00
|
|
|
|
public EncodingContext Context { get; set; }
|
2014-04-01 22:23:07 +00:00
|
|
|
|
|
|
|
|
|
public DlnaProfileType MediaType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Container { get; set; }
|
|
|
|
|
|
2015-03-26 16:58:02 +00:00
|
|
|
|
public string SubProtocol { get; set; }
|
2014-04-21 01:36:12 +00:00
|
|
|
|
|
2014-04-01 22:23:07 +00:00
|
|
|
|
public long StartPositionTicks { get; set; }
|
|
|
|
|
|
|
|
|
|
public string VideoCodec { get; set; }
|
2014-04-24 05:08:10 +00:00
|
|
|
|
public string VideoProfile { get; set; }
|
2014-04-01 22:23:07 +00:00
|
|
|
|
|
2016-02-20 06:57:17 +00:00
|
|
|
|
public bool CopyTimestamps { get; set; }
|
2016-04-21 04:04:57 +00:00
|
|
|
|
public bool ForceLiveStream { get; set; }
|
2014-04-01 22:23:07 +00:00
|
|
|
|
public string AudioCodec { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? AudioStreamIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? SubtitleStreamIndex { get; set; }
|
|
|
|
|
|
2016-05-14 05:40:01 +00:00
|
|
|
|
public int? TranscodingMaxAudioChannels { get; set; }
|
2014-04-01 22:23:07 +00:00
|
|
|
|
public int? MaxAudioChannels { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? AudioBitrate { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? VideoBitrate { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? VideoLevel { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? MaxWidth { get; set; }
|
|
|
|
|
public int? MaxHeight { get; set; }
|
|
|
|
|
|
2014-09-23 04:05:29 +00:00
|
|
|
|
public int? MaxVideoBitDepth { get; set; }
|
|
|
|
|
public int? MaxRefFrames { get; set; }
|
2015-03-30 19:57:37 +00:00
|
|
|
|
|
2014-06-23 16:05:19 +00:00
|
|
|
|
public float? MaxFramerate { get; set; }
|
2014-04-01 22:23:07 +00:00
|
|
|
|
|
2015-02-05 05:29:37 +00:00
|
|
|
|
public DeviceProfile DeviceProfile { get; set; }
|
2014-04-01 22:23:07 +00:00
|
|
|
|
public string DeviceProfileId { get; set; }
|
|
|
|
|
public string DeviceId { get; set; }
|
|
|
|
|
|
2014-04-18 05:03:01 +00:00
|
|
|
|
public long? RunTimeTicks { get; set; }
|
|
|
|
|
|
|
|
|
|
public TranscodeSeekInfo TranscodeSeekInfo { get; set; }
|
|
|
|
|
|
2014-04-18 17:16:25 +00:00
|
|
|
|
public bool EstimateContentLength { get; set; }
|
|
|
|
|
|
|
|
|
|
public MediaSourceInfo MediaSource { get; set; }
|
|
|
|
|
|
2014-07-18 19:07:28 +00:00
|
|
|
|
public SubtitleDeliveryMethod SubtitleDeliveryMethod { get; set; }
|
2014-08-05 23:59:24 +00:00
|
|
|
|
public string SubtitleFormat { get; set; }
|
2014-07-18 19:07:28 +00:00
|
|
|
|
|
2015-04-01 21:55:50 +00:00
|
|
|
|
public string PlaySessionId { get; set; }
|
2015-04-04 19:35:29 +00:00
|
|
|
|
public List<MediaSourceInfo> AllMediaSources { get; set; }
|
2015-03-23 17:19:21 +00:00
|
|
|
|
|
2014-04-18 17:16:25 +00:00
|
|
|
|
public string MediaSourceId
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return MediaSource == null ? null : MediaSource.Id;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-05 23:59:24 +00:00
|
|
|
|
public bool IsDirectStream
|
|
|
|
|
{
|
2015-03-30 19:57:37 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
2014-10-11 20:38:13 +00:00
|
|
|
|
return PlayMethod == PlayMethod.DirectStream ||
|
|
|
|
|
PlayMethod == PlayMethod.DirectPlay;
|
|
|
|
|
}
|
2014-08-05 23:59:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-16 00:33:06 +00:00
|
|
|
|
public string ToUrl(string baseUrl, string accessToken)
|
2014-04-01 22:23:07 +00:00
|
|
|
|
{
|
2015-03-26 18:24:13 +00:00
|
|
|
|
if (PlayMethod == PlayMethod.DirectPlay)
|
|
|
|
|
{
|
|
|
|
|
return MediaSource.Path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(baseUrl))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(baseUrl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<string> list = new List<string>();
|
2015-04-16 14:59:39 +00:00
|
|
|
|
foreach (NameValuePair pair in BuildParams(this, accessToken, false))
|
2015-03-26 18:24:13 +00:00
|
|
|
|
{
|
2015-03-26 19:18:21 +00:00
|
|
|
|
if (string.IsNullOrEmpty(pair.Value))
|
2015-03-26 18:24:13 +00:00
|
|
|
|
{
|
2015-03-26 19:18:21 +00:00
|
|
|
|
continue;
|
2015-03-26 18:24:13 +00:00
|
|
|
|
}
|
2015-03-26 19:18:21 +00:00
|
|
|
|
|
|
|
|
|
// Try to keep the url clean by omitting defaults
|
|
|
|
|
if (StringHelper.EqualsIgnoreCase(pair.Name, "StartTimeTicks") &&
|
|
|
|
|
StringHelper.EqualsIgnoreCase(pair.Value, "0"))
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (StringHelper.EqualsIgnoreCase(pair.Name, "SubtitleStreamIndex") &&
|
|
|
|
|
StringHelper.EqualsIgnoreCase(pair.Value, "-1"))
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (StringHelper.EqualsIgnoreCase(pair.Name, "Static") &&
|
|
|
|
|
StringHelper.EqualsIgnoreCase(pair.Value, "false"))
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list.Add(string.Format("{0}={1}", pair.Name, pair.Value));
|
2015-03-26 18:24:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string queryString = string.Join("&", list.ToArray());
|
|
|
|
|
|
|
|
|
|
return GetUrl(baseUrl, queryString);
|
2014-04-01 22:23:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-16 00:33:06 +00:00
|
|
|
|
public string ToDlnaUrl(string baseUrl, string accessToken)
|
2014-04-01 22:23:07 +00:00
|
|
|
|
{
|
2014-10-12 01:46:02 +00:00
|
|
|
|
if (PlayMethod == PlayMethod.DirectPlay)
|
|
|
|
|
{
|
|
|
|
|
return MediaSource.Path;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-26 18:24:13 +00:00
|
|
|
|
string dlnaCommand = BuildDlnaParam(this, accessToken);
|
|
|
|
|
return GetUrl(baseUrl, dlnaCommand);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetUrl(string baseUrl, string queryString)
|
|
|
|
|
{
|
2014-04-01 22:23:07 +00:00
|
|
|
|
if (string.IsNullOrEmpty(baseUrl))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(baseUrl);
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-08 20:09:53 +00:00
|
|
|
|
string extension = string.IsNullOrEmpty(Container) ? string.Empty : "." + Container;
|
2014-04-01 22:23:07 +00:00
|
|
|
|
|
|
|
|
|
baseUrl = baseUrl.TrimEnd('/');
|
|
|
|
|
|
|
|
|
|
if (MediaType == DlnaProfileType.Audio)
|
|
|
|
|
{
|
2015-05-24 18:33:28 +00:00
|
|
|
|
if (StringHelper.EqualsIgnoreCase(SubProtocol, "hls"))
|
|
|
|
|
{
|
|
|
|
|
return string.Format("{0}/audio/{1}/master.m3u8?{2}", baseUrl, ItemId, queryString);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-26 18:24:13 +00:00
|
|
|
|
return string.Format("{0}/audio/{1}/stream{2}?{3}", baseUrl, ItemId, extension, queryString);
|
2014-04-01 22:23:07 +00:00
|
|
|
|
}
|
2014-04-21 01:36:12 +00:00
|
|
|
|
|
2015-03-26 16:58:02 +00:00
|
|
|
|
if (StringHelper.EqualsIgnoreCase(SubProtocol, "hls"))
|
2014-04-21 01:36:12 +00:00
|
|
|
|
{
|
2015-03-26 18:24:13 +00:00
|
|
|
|
return string.Format("{0}/videos/{1}/master.m3u8?{2}", baseUrl, ItemId, queryString);
|
2014-04-21 01:36:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-26 18:24:13 +00:00
|
|
|
|
return string.Format("{0}/videos/{1}/stream{2}?{3}", baseUrl, ItemId, extension, queryString);
|
2014-04-01 22:23:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-26 18:24:13 +00:00
|
|
|
|
private static string BuildDlnaParam(StreamInfo item, string accessToken)
|
2014-04-01 22:23:07 +00:00
|
|
|
|
{
|
2015-03-26 18:24:13 +00:00
|
|
|
|
List<string> list = new List<string>();
|
2014-09-23 04:05:29 +00:00
|
|
|
|
|
2015-04-16 14:59:39 +00:00
|
|
|
|
foreach (NameValuePair pair in BuildParams(item, accessToken, true))
|
2015-03-26 18:24:13 +00:00
|
|
|
|
{
|
|
|
|
|
list.Add(pair.Value);
|
|
|
|
|
}
|
2015-03-30 19:57:37 +00:00
|
|
|
|
|
2014-04-01 22:23:07 +00:00
|
|
|
|
return string.Format("Params={0}", string.Join(";", list.ToArray()));
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-16 14:59:39 +00:00
|
|
|
|
private static List<NameValuePair> BuildParams(StreamInfo item, string accessToken, bool isDlna)
|
2015-03-26 18:24:13 +00:00
|
|
|
|
{
|
|
|
|
|
List<NameValuePair> list = new List<NameValuePair>();
|
|
|
|
|
|
|
|
|
|
list.Add(new NameValuePair("DeviceProfileId", item.DeviceProfileId ?? string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("DeviceId", item.DeviceId ?? string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("MediaSourceId", item.MediaSourceId ?? string.Empty));
|
2016-03-27 21:11:27 +00:00
|
|
|
|
list.Add(new NameValuePair("Static", item.IsDirectStream.ToString().ToLower()));
|
2015-03-26 18:24:13 +00:00
|
|
|
|
list.Add(new NameValuePair("VideoCodec", item.VideoCodec ?? string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("AudioCodec", item.AudioCodec ?? string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("AudioStreamIndex", item.AudioStreamIndex.HasValue ? StringHelper.ToStringCultureInvariant(item.AudioStreamIndex.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("SubtitleStreamIndex", item.SubtitleStreamIndex.HasValue && item.SubtitleDeliveryMethod != SubtitleDeliveryMethod.External ? StringHelper.ToStringCultureInvariant(item.SubtitleStreamIndex.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("VideoBitrate", item.VideoBitrate.HasValue ? StringHelper.ToStringCultureInvariant(item.VideoBitrate.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("AudioBitrate", item.AudioBitrate.HasValue ? StringHelper.ToStringCultureInvariant(item.AudioBitrate.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("MaxAudioChannels", item.MaxAudioChannels.HasValue ? StringHelper.ToStringCultureInvariant(item.MaxAudioChannels.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("MaxFramerate", item.MaxFramerate.HasValue ? StringHelper.ToStringCultureInvariant(item.MaxFramerate.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("MaxWidth", item.MaxWidth.HasValue ? StringHelper.ToStringCultureInvariant(item.MaxWidth.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("MaxHeight", item.MaxHeight.HasValue ? StringHelper.ToStringCultureInvariant(item.MaxHeight.Value) : string.Empty));
|
2015-04-03 02:35:15 +00:00
|
|
|
|
|
2016-04-21 04:04:57 +00:00
|
|
|
|
if (StringHelper.EqualsIgnoreCase(item.SubProtocol, "hls") && !item.ForceLiveStream)
|
2015-04-03 02:35:15 +00:00
|
|
|
|
{
|
|
|
|
|
list.Add(new NameValuePair("StartTimeTicks", string.Empty));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
list.Add(new NameValuePair("StartTimeTicks", StringHelper.ToStringCultureInvariant(item.StartPositionTicks)));
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-26 18:24:13 +00:00
|
|
|
|
list.Add(new NameValuePair("Level", item.VideoLevel.HasValue ? StringHelper.ToStringCultureInvariant(item.VideoLevel.Value) : string.Empty));
|
2015-03-30 19:57:37 +00:00
|
|
|
|
|
2015-03-26 18:24:13 +00:00
|
|
|
|
list.Add(new NameValuePair("MaxRefFrames", item.MaxRefFrames.HasValue ? StringHelper.ToStringCultureInvariant(item.MaxRefFrames.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("MaxVideoBitDepth", item.MaxVideoBitDepth.HasValue ? StringHelper.ToStringCultureInvariant(item.MaxVideoBitDepth.Value) : string.Empty));
|
|
|
|
|
list.Add(new NameValuePair("Profile", item.VideoProfile ?? string.Empty));
|
2016-04-04 00:01:03 +00:00
|
|
|
|
|
|
|
|
|
// no longer used
|
|
|
|
|
list.Add(new NameValuePair("Cabac", string.Empty));
|
2015-03-26 18:24:13 +00:00
|
|
|
|
|
2015-04-01 21:55:50 +00:00
|
|
|
|
list.Add(new NameValuePair("PlaySessionId", item.PlaySessionId ?? string.Empty));
|
2015-03-26 18:24:13 +00:00
|
|
|
|
list.Add(new NameValuePair("api_key", accessToken ?? string.Empty));
|
|
|
|
|
|
2015-03-29 18:16:40 +00:00
|
|
|
|
string liveStreamId = item.MediaSource == null ? null : item.MediaSource.LiveStreamId;
|
|
|
|
|
list.Add(new NameValuePair("LiveStreamId", liveStreamId ?? string.Empty));
|
|
|
|
|
|
2015-04-24 20:06:37 +00:00
|
|
|
|
if (isDlna)
|
|
|
|
|
{
|
|
|
|
|
list.Add(new NameValuePair("ItemId", item.ItemId));
|
|
|
|
|
}
|
2016-02-20 06:57:17 +00:00
|
|
|
|
|
2016-03-27 21:11:27 +00:00
|
|
|
|
list.Add(new NameValuePair("CopyTimestamps", item.CopyTimestamps.ToString().ToLower()));
|
2016-04-21 04:04:57 +00:00
|
|
|
|
list.Add(new NameValuePair("ForceLiveStream", item.ForceLiveStream.ToString().ToLower()));
|
2016-03-07 04:56:45 +00:00
|
|
|
|
list.Add(new NameValuePair("SubtitleMethod", item.SubtitleStreamIndex.HasValue && item.SubtitleDeliveryMethod != SubtitleDeliveryMethod.External ? item.SubtitleDeliveryMethod.ToString() : string.Empty));
|
2016-05-14 05:40:01 +00:00
|
|
|
|
|
|
|
|
|
list.Add(new NameValuePair("TranscodingMaxAudioChannels", item.TranscodingMaxAudioChannels.HasValue ? StringHelper.ToStringCultureInvariant(item.TranscodingMaxAudioChannels.Value) : string.Empty));
|
|
|
|
|
|
2015-03-26 18:24:13 +00:00
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-01 21:55:50 +00:00
|
|
|
|
public List<SubtitleStreamInfo> GetExternalSubtitles(bool includeSelectedTrackOnly, string baseUrl, string accessToken)
|
|
|
|
|
{
|
|
|
|
|
return GetExternalSubtitles(includeSelectedTrackOnly, false, baseUrl, accessToken);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 16:24:16 +00:00
|
|
|
|
public List<SubtitleStreamInfo> GetExternalSubtitles(bool includeSelectedTrackOnly, bool enableAllProfiles, string baseUrl, string accessToken)
|
2015-02-16 00:33:06 +00:00
|
|
|
|
{
|
2015-03-31 16:24:16 +00:00
|
|
|
|
List<SubtitleStreamInfo> list = GetSubtitleProfiles(includeSelectedTrackOnly, enableAllProfiles, baseUrl, accessToken);
|
2015-03-30 19:57:37 +00:00
|
|
|
|
List<SubtitleStreamInfo> newList = new List<SubtitleStreamInfo>();
|
2015-02-16 00:33:06 +00:00
|
|
|
|
|
|
|
|
|
// First add the selected track
|
2015-03-30 19:57:37 +00:00
|
|
|
|
foreach (SubtitleStreamInfo stream in list)
|
2015-02-16 00:33:06 +00:00
|
|
|
|
{
|
2015-03-30 19:57:37 +00:00
|
|
|
|
if (stream.DeliveryMethod == SubtitleDeliveryMethod.External)
|
2015-02-16 00:33:06 +00:00
|
|
|
|
{
|
2015-03-30 19:57:37 +00:00
|
|
|
|
newList.Add(stream);
|
2015-02-16 00:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-30 19:57:37 +00:00
|
|
|
|
return newList;
|
2015-02-16 00:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-30 19:57:37 +00:00
|
|
|
|
public List<SubtitleStreamInfo> GetSubtitleProfiles(bool includeSelectedTrackOnly, string baseUrl, string accessToken)
|
2015-03-31 16:24:16 +00:00
|
|
|
|
{
|
|
|
|
|
return GetSubtitleProfiles(includeSelectedTrackOnly, false, baseUrl, accessToken);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<SubtitleStreamInfo> GetSubtitleProfiles(bool includeSelectedTrackOnly, bool enableAllProfiles, string baseUrl, string accessToken)
|
2014-08-05 23:59:24 +00:00
|
|
|
|
{
|
2014-08-06 04:18:13 +00:00
|
|
|
|
List<SubtitleStreamInfo> list = new List<SubtitleStreamInfo>();
|
|
|
|
|
|
2014-08-05 23:59:24 +00:00
|
|
|
|
// HLS will preserve timestamps so we can just grab the full subtitle stream
|
2015-03-26 16:58:02 +00:00
|
|
|
|
long startPositionTicks = StringHelper.EqualsIgnoreCase(SubProtocol, "hls")
|
2014-08-05 23:59:24 +00:00
|
|
|
|
? 0
|
2016-02-20 06:57:17 +00:00
|
|
|
|
: (PlayMethod == PlayMethod.Transcode && !CopyTimestamps ? StartPositionTicks : 0);
|
2014-08-05 23:59:24 +00:00
|
|
|
|
|
2014-11-16 20:44:08 +00:00
|
|
|
|
// First add the selected track
|
|
|
|
|
if (SubtitleStreamIndex.HasValue)
|
|
|
|
|
{
|
|
|
|
|
foreach (MediaStream stream in MediaSource.MediaStreams)
|
|
|
|
|
{
|
2015-02-05 05:29:37 +00:00
|
|
|
|
if (stream.Type == MediaStreamType.Subtitle && stream.Index == SubtitleStreamIndex.Value)
|
2014-11-16 20:44:08 +00:00
|
|
|
|
{
|
2015-03-31 16:24:16 +00:00
|
|
|
|
AddSubtitleProfiles(list, stream, enableAllProfiles, baseUrl, accessToken, startPositionTicks);
|
2014-11-16 20:44:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!includeSelectedTrackOnly)
|
|
|
|
|
{
|
|
|
|
|
foreach (MediaStream stream in MediaSource.MediaStreams)
|
|
|
|
|
{
|
2015-02-05 05:29:37 +00:00
|
|
|
|
if (stream.Type == MediaStreamType.Subtitle && (!SubtitleStreamIndex.HasValue || stream.Index != SubtitleStreamIndex.Value))
|
2014-11-16 20:44:08 +00:00
|
|
|
|
{
|
2015-03-31 16:24:16 +00:00
|
|
|
|
AddSubtitleProfiles(list, stream, enableAllProfiles, baseUrl, accessToken, startPositionTicks);
|
2014-11-16 20:44:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-30 19:57:37 +00:00
|
|
|
|
|
2014-11-16 20:44:08 +00:00
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 16:24:16 +00:00
|
|
|
|
private void AddSubtitleProfiles(List<SubtitleStreamInfo> list, MediaStream stream, bool enableAllProfiles, string baseUrl, string accessToken, long startPositionTicks)
|
2014-11-16 20:44:08 +00:00
|
|
|
|
{
|
2015-03-31 16:24:16 +00:00
|
|
|
|
if (enableAllProfiles)
|
2015-02-05 05:29:37 +00:00
|
|
|
|
{
|
2015-03-31 16:24:16 +00:00
|
|
|
|
foreach (SubtitleProfile profile in DeviceProfile.SubtitleProfiles)
|
2015-03-30 19:57:37 +00:00
|
|
|
|
{
|
2015-03-31 16:24:16 +00:00
|
|
|
|
SubtitleStreamInfo info = GetSubtitleStreamInfo(stream, baseUrl, accessToken, startPositionTicks, new[] { profile });
|
|
|
|
|
|
|
|
|
|
list.Add(info);
|
2015-03-30 19:57:37 +00:00
|
|
|
|
}
|
2015-02-05 05:29:37 +00:00
|
|
|
|
}
|
2015-03-31 16:24:16 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SubtitleStreamInfo info = GetSubtitleStreamInfo(stream, baseUrl, accessToken, startPositionTicks, DeviceProfile.SubtitleProfiles);
|
2015-02-05 05:29:37 +00:00
|
|
|
|
|
2015-03-31 16:24:16 +00:00
|
|
|
|
list.Add(info);
|
|
|
|
|
}
|
2015-02-16 00:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-31 16:24:16 +00:00
|
|
|
|
private SubtitleStreamInfo GetSubtitleStreamInfo(MediaStream stream, string baseUrl, string accessToken, long startPositionTicks, SubtitleProfile[] subtitleProfiles)
|
2015-02-16 00:33:06 +00:00
|
|
|
|
{
|
2016-04-02 23:39:08 +00:00
|
|
|
|
SubtitleProfile subtitleProfile = StreamBuilder.GetSubtitleProfile(stream, subtitleProfiles, PlayMethod);
|
2015-03-31 16:24:16 +00:00
|
|
|
|
SubtitleStreamInfo info = new SubtitleStreamInfo
|
2014-08-06 02:26:12 +00:00
|
|
|
|
{
|
2014-11-16 20:44:08 +00:00
|
|
|
|
IsForced = stream.IsForced,
|
|
|
|
|
Language = stream.Language,
|
|
|
|
|
Name = stream.Language ?? "Unknown",
|
2015-03-31 16:24:16 +00:00
|
|
|
|
Format = subtitleProfile.Format,
|
2015-03-30 19:57:37 +00:00
|
|
|
|
Index = stream.Index,
|
2016-05-22 16:45:28 +00:00
|
|
|
|
DeliveryMethod = subtitleProfile.Method,
|
|
|
|
|
DisplayTitle = stream.DisplayTitle
|
2015-02-16 00:33:06 +00:00
|
|
|
|
};
|
2015-03-31 16:24:16 +00:00
|
|
|
|
|
|
|
|
|
if (info.DeliveryMethod == SubtitleDeliveryMethod.External)
|
|
|
|
|
{
|
|
|
|
|
if (MediaSource.Protocol == MediaProtocol.File || !StringHelper.EqualsIgnoreCase(stream.Codec, subtitleProfile.Format))
|
|
|
|
|
{
|
|
|
|
|
info.Url = string.Format("{0}/Videos/{1}/{2}/Subtitles/{3}/{4}/Stream.{5}",
|
|
|
|
|
baseUrl,
|
|
|
|
|
ItemId,
|
|
|
|
|
MediaSourceId,
|
|
|
|
|
StringHelper.ToStringCultureInvariant(stream.Index),
|
|
|
|
|
StringHelper.ToStringCultureInvariant(startPositionTicks),
|
|
|
|
|
subtitleProfile.Format);
|
2015-04-02 02:47:59 +00:00
|
|
|
|
|
2016-03-16 16:53:53 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(accessToken))
|
2016-03-15 19:12:10 +00:00
|
|
|
|
{
|
|
|
|
|
info.Url += "?api_key=" + accessToken;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-02 02:47:59 +00:00
|
|
|
|
info.IsExternalUrl = false;
|
2015-03-31 16:24:16 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
info.Url = stream.Path;
|
2015-04-02 02:47:59 +00:00
|
|
|
|
info.IsExternalUrl = true;
|
2015-03-31 16:24:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return info;
|
2014-08-05 23:59:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-18 17:16:25 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns the audio stream that will be used
|
|
|
|
|
/// </summary>
|
|
|
|
|
public MediaStream TargetAudioStream
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (MediaSource != null)
|
|
|
|
|
{
|
2015-03-23 17:19:21 +00:00
|
|
|
|
return MediaSource.GetDefaultAudioStream(AudioStreamIndex);
|
2014-04-18 17:16:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns the video stream that will be used
|
|
|
|
|
/// </summary>
|
|
|
|
|
public MediaStream TargetVideoStream
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (MediaSource != null)
|
|
|
|
|
{
|
2014-05-09 23:08:08 +00:00
|
|
|
|
return MediaSource.VideoStream;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio sample rate that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? TargetAudioSampleRate
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetAudioStream;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
return stream == null ? null : stream.SampleRate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-24 05:08:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio sample rate that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? TargetVideoBitDepth
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetVideoStream;
|
2014-04-24 05:08:10 +00:00
|
|
|
|
return stream == null || !IsDirectStream ? null : stream.BitDepth;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-09 01:15:31 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the target reference frames.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The target reference frames.</value>
|
|
|
|
|
public int? TargetRefFrames
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
MediaStream stream = TargetVideoStream;
|
|
|
|
|
return stream == null || !IsDirectStream ? null : stream.RefFrames;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-24 05:08:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio sample rate that will be in the output stream
|
|
|
|
|
/// </summary>
|
2014-06-23 16:05:19 +00:00
|
|
|
|
public float? TargetFramerate
|
2014-04-24 05:08:10 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetVideoStream;
|
2014-04-24 05:08:10 +00:00
|
|
|
|
return MaxFramerate.HasValue && !IsDirectStream
|
|
|
|
|
? MaxFramerate
|
|
|
|
|
: stream == null ? null : stream.AverageFrameRate ?? stream.RealFrameRate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio sample rate that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double? TargetVideoLevel
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetVideoStream;
|
2014-04-24 05:08:10 +00:00
|
|
|
|
return VideoLevel.HasValue && !IsDirectStream
|
|
|
|
|
? VideoLevel
|
|
|
|
|
: stream == null ? null : stream.Level;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio sample rate that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? TargetPacketLength
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetVideoStream;
|
2014-04-24 05:08:10 +00:00
|
|
|
|
return !IsDirectStream
|
|
|
|
|
? null
|
|
|
|
|
: stream == null ? null : stream.PacketLength;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio sample rate that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TargetVideoProfile
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetVideoStream;
|
2014-04-24 05:08:10 +00:00
|
|
|
|
return !string.IsNullOrEmpty(VideoProfile) && !IsDirectStream
|
|
|
|
|
? VideoProfile
|
|
|
|
|
: stream == null ? null : stream.Profile;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-19 16:05:03 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the target video codec tag.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The target video codec tag.</value>
|
|
|
|
|
public string TargetVideoCodecTag
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
MediaStream stream = TargetVideoStream;
|
|
|
|
|
return !IsDirectStream
|
|
|
|
|
? null
|
|
|
|
|
: stream == null ? null : stream.CodecTag;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-18 17:16:25 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio bitrate that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? TargetAudioBitrate
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetAudioStream;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
return AudioBitrate.HasValue && !IsDirectStream
|
|
|
|
|
? AudioBitrate
|
|
|
|
|
: stream == null ? null : stream.BitRate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio channels that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? TargetAudioChannels
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetAudioStream;
|
|
|
|
|
int? streamChannels = stream == null ? null : stream.Channels;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
|
2014-12-24 06:28:40 +00:00
|
|
|
|
if (MaxAudioChannels.HasValue && !IsDirectStream)
|
|
|
|
|
{
|
|
|
|
|
if (streamChannels.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return Math.Min(MaxAudioChannels.Value, streamChannels.Value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return MaxAudioChannels.Value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return streamChannels;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio codec that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TargetAudioCodec
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetAudioStream;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
|
|
|
|
|
return IsDirectStream
|
|
|
|
|
? (stream == null ? null : stream.Codec)
|
|
|
|
|
: AudioCodec;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Predicts the audio channels that will be in the output stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? TargetSize
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (IsDirectStream)
|
|
|
|
|
{
|
2014-04-25 17:30:41 +00:00
|
|
|
|
return MediaSource.Size;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (RunTimeTicks.HasValue)
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
int? totalBitrate = TargetTotalBitrate;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
|
2014-07-01 04:06:28 +00:00
|
|
|
|
double totalSeconds = RunTimeTicks.Value;
|
|
|
|
|
// Convert to ms
|
|
|
|
|
totalSeconds /= 10000;
|
|
|
|
|
// Convert to seconds
|
|
|
|
|
totalSeconds /= 1000;
|
|
|
|
|
|
2014-04-28 15:05:28 +00:00
|
|
|
|
return totalBitrate.HasValue ?
|
2014-07-01 04:06:28 +00:00
|
|
|
|
Convert.ToInt64(totalBitrate.Value * totalSeconds) :
|
2014-04-28 15:05:28 +00:00
|
|
|
|
(long?)null;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-28 15:05:28 +00:00
|
|
|
|
return null;
|
2014-04-18 17:16:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-04-23 02:47:46 +00:00
|
|
|
|
|
2014-04-24 05:08:10 +00:00
|
|
|
|
public int? TargetVideoBitrate
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream stream = TargetVideoStream;
|
2014-04-24 05:08:10 +00:00
|
|
|
|
|
|
|
|
|
return VideoBitrate.HasValue && !IsDirectStream
|
|
|
|
|
? VideoBitrate
|
|
|
|
|
: stream == null ? null : stream.BitRate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TransportStreamTimestamp TargetTimestamp
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-06-01 04:11:04 +00:00
|
|
|
|
TransportStreamTimestamp defaultValue = StringHelper.EqualsIgnoreCase(Container, "m2ts")
|
2014-04-25 02:45:06 +00:00
|
|
|
|
? TransportStreamTimestamp.Valid
|
|
|
|
|
: TransportStreamTimestamp.None;
|
2014-04-28 15:05:28 +00:00
|
|
|
|
|
2014-04-25 02:00:19 +00:00
|
|
|
|
return !IsDirectStream
|
|
|
|
|
? defaultValue
|
2014-04-25 02:45:06 +00:00
|
|
|
|
: MediaSource == null ? defaultValue : MediaSource.Timestamp ?? TransportStreamTimestamp.None;
|
2014-04-24 05:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int? TargetTotalBitrate
|
2014-04-23 02:47:46 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-04-24 05:08:10 +00:00
|
|
|
|
return (TargetAudioBitrate ?? 0) + (TargetVideoBitrate ?? 0);
|
2014-04-23 02:47:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-22 16:25:47 +00:00
|
|
|
|
public bool? IsTargetAnamorphic
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (IsDirectStream)
|
|
|
|
|
{
|
|
|
|
|
return TargetVideoStream == null ? null : TargetVideoStream.IsAnamorphic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-23 02:47:46 +00:00
|
|
|
|
public int? TargetWidth
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream videoStream = TargetVideoStream;
|
2014-04-23 02:47:46 +00:00
|
|
|
|
|
|
|
|
|
if (videoStream != null && videoStream.Width.HasValue && videoStream.Height.HasValue)
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
ImageSize size = new ImageSize
|
2014-04-23 02:47:46 +00:00
|
|
|
|
{
|
|
|
|
|
Width = videoStream.Width.Value,
|
|
|
|
|
Height = videoStream.Height.Value
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-01 04:06:28 +00:00
|
|
|
|
double? maxWidth = MaxWidth.HasValue ? (double)MaxWidth.Value : (double?)null;
|
|
|
|
|
double? maxHeight = MaxHeight.HasValue ? (double)MaxHeight.Value : (double?)null;
|
|
|
|
|
|
2014-05-08 20:09:53 +00:00
|
|
|
|
ImageSize newSize = DrawingUtils.Resize(size,
|
2014-04-23 02:47:46 +00:00
|
|
|
|
null,
|
|
|
|
|
null,
|
2014-07-01 04:06:28 +00:00
|
|
|
|
maxWidth,
|
|
|
|
|
maxHeight);
|
2014-04-23 02:47:46 +00:00
|
|
|
|
|
|
|
|
|
return Convert.ToInt32(newSize.Width);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return MaxWidth;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int? TargetHeight
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
MediaStream videoStream = TargetVideoStream;
|
2014-04-23 02:47:46 +00:00
|
|
|
|
|
|
|
|
|
if (videoStream != null && videoStream.Width.HasValue && videoStream.Height.HasValue)
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
ImageSize size = new ImageSize
|
2014-04-23 02:47:46 +00:00
|
|
|
|
{
|
|
|
|
|
Width = videoStream.Width.Value,
|
|
|
|
|
Height = videoStream.Height.Value
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-01 04:06:28 +00:00
|
|
|
|
double? maxWidth = MaxWidth.HasValue ? (double)MaxWidth.Value : (double?)null;
|
|
|
|
|
double? maxHeight = MaxHeight.HasValue ? (double)MaxHeight.Value : (double?)null;
|
|
|
|
|
|
2014-05-08 20:09:53 +00:00
|
|
|
|
ImageSize newSize = DrawingUtils.Resize(size,
|
2014-04-23 02:47:46 +00:00
|
|
|
|
null,
|
|
|
|
|
null,
|
2014-07-01 04:06:28 +00:00
|
|
|
|
maxWidth,
|
|
|
|
|
maxHeight);
|
2014-04-23 02:47:46 +00:00
|
|
|
|
|
|
|
|
|
return Convert.ToInt32(newSize.Height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return MaxHeight;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-12 21:13:00 +00:00
|
|
|
|
|
2015-03-30 16:16:34 +00:00
|
|
|
|
public int? TargetVideoStreamCount
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (IsDirectStream)
|
|
|
|
|
{
|
|
|
|
|
return GetMediaStreamCount(MediaStreamType.Video, int.MaxValue);
|
|
|
|
|
}
|
|
|
|
|
return GetMediaStreamCount(MediaStreamType.Video, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int? TargetAudioStreamCount
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (IsDirectStream)
|
|
|
|
|
{
|
|
|
|
|
return GetMediaStreamCount(MediaStreamType.Audio, int.MaxValue);
|
|
|
|
|
}
|
|
|
|
|
return GetMediaStreamCount(MediaStreamType.Audio, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int? GetMediaStreamCount(MediaStreamType type, int limit)
|
|
|
|
|
{
|
|
|
|
|
var count = MediaSource.GetStreamCount(type);
|
|
|
|
|
|
|
|
|
|
if (count.HasValue)
|
|
|
|
|
{
|
|
|
|
|
count = Math.Min(count.Value, limit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-12 21:13:00 +00:00
|
|
|
|
public List<MediaStream> GetSelectableAudioStreams()
|
|
|
|
|
{
|
|
|
|
|
return GetSelectableStreams(MediaStreamType.Audio);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<MediaStream> GetSelectableSubtitleStreams()
|
|
|
|
|
{
|
|
|
|
|
return GetSelectableStreams(MediaStreamType.Subtitle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<MediaStream> GetSelectableStreams(MediaStreamType type)
|
|
|
|
|
{
|
|
|
|
|
List<MediaStream> list = new List<MediaStream>();
|
|
|
|
|
|
|
|
|
|
foreach (MediaStream stream in MediaSource.MediaStreams)
|
|
|
|
|
{
|
|
|
|
|
if (type == stream.Type)
|
|
|
|
|
{
|
|
|
|
|
list.Add(stream);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
}
|
2014-04-01 22:23:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|