|
@@ -77,106 +77,121 @@ namespace MediaBrowser.Model.Entities
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- if (Type == MediaStreamType.Audio)
|
|
|
+ switch (Type)
|
|
|
{
|
|
|
- //if (!string.IsNullOrEmpty(Title))
|
|
|
- //{
|
|
|
- // return AddLanguageIfNeeded(Title);
|
|
|
- //}
|
|
|
-
|
|
|
- var attributes = new List<string>();
|
|
|
-
|
|
|
- if (!string.IsNullOrEmpty(Language))
|
|
|
- {
|
|
|
- attributes.Add(StringHelper.FirstToUpper(Language));
|
|
|
- }
|
|
|
- if (!string.IsNullOrEmpty(Codec) && !string.Equals(Codec, "dca", StringComparison.OrdinalIgnoreCase))
|
|
|
- {
|
|
|
- attributes.Add(AudioCodec.GetFriendlyName(Codec));
|
|
|
- }
|
|
|
- else if (!string.IsNullOrEmpty(Profile) && !string.Equals(Profile, "lc", StringComparison.OrdinalIgnoreCase))
|
|
|
- {
|
|
|
- attributes.Add(Profile);
|
|
|
- }
|
|
|
-
|
|
|
- if (!string.IsNullOrEmpty(ChannelLayout))
|
|
|
- {
|
|
|
- attributes.Add(ChannelLayout);
|
|
|
- }
|
|
|
- else if (Channels.HasValue)
|
|
|
- {
|
|
|
- attributes.Add(Channels.Value.ToString(CultureInfo.InvariantCulture) + " ch");
|
|
|
- }
|
|
|
- if (IsDefault)
|
|
|
- {
|
|
|
- attributes.Add("Default");
|
|
|
- }
|
|
|
-
|
|
|
- return string.Join(" ", attributes);
|
|
|
- }
|
|
|
-
|
|
|
- if (Type == MediaStreamType.Video)
|
|
|
- {
|
|
|
- var attributes = new List<string>();
|
|
|
-
|
|
|
- var resolutionText = GetResolutionText();
|
|
|
-
|
|
|
- if (!string.IsNullOrEmpty(resolutionText))
|
|
|
+ case MediaStreamType.Audio:
|
|
|
{
|
|
|
- attributes.Add(resolutionText);
|
|
|
+ var attributes = new List<string>();
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(Language))
|
|
|
+ {
|
|
|
+ attributes.Add(StringHelper.FirstToUpper(Language));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(Codec) && !string.Equals(Codec, "dca", StringComparison.OrdinalIgnoreCase))
|
|
|
+ {
|
|
|
+ attributes.Add(AudioCodec.GetFriendlyName(Codec));
|
|
|
+ }
|
|
|
+ else if (!string.IsNullOrEmpty(Profile) && !string.Equals(Profile, "lc", StringComparison.OrdinalIgnoreCase))
|
|
|
+ {
|
|
|
+ attributes.Add(Profile);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(ChannelLayout))
|
|
|
+ {
|
|
|
+ attributes.Add(ChannelLayout);
|
|
|
+ }
|
|
|
+ else if (Channels.HasValue)
|
|
|
+ {
|
|
|
+ attributes.Add(Channels.Value.ToString(CultureInfo.InvariantCulture) + " ch");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (IsDefault)
|
|
|
+ {
|
|
|
+ attributes.Add(string.IsNullOrEmpty(localizedDefault) ? "Default" : localizedDefault);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(Title))
|
|
|
+ {
|
|
|
+ return attributes.AsEnumerable()
|
|
|
+ // keep Tags that are not already in Title
|
|
|
+ .Where(tag => Title.IndexOf(tag, StringComparison.OrdinalIgnoreCase) == -1)
|
|
|
+ // attributes concatenation, starting with Title
|
|
|
+ .Aggregate(new StringBuilder(Title), (builder, attr) => builder.Append(" - ").Append(attr))
|
|
|
+ .ToString();
|
|
|
+ }
|
|
|
+
|
|
|
+ return string.Join(" ", attributes);
|
|
|
}
|
|
|
|
|
|
- if (!string.IsNullOrEmpty(Codec))
|
|
|
+ case MediaStreamType.Video:
|
|
|
{
|
|
|
- attributes.Add(Codec.ToUpperInvariant());
|
|
|
+ var attributes = new List<string>();
|
|
|
+
|
|
|
+ var resolutionText = GetResolutionText();
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(resolutionText))
|
|
|
+ {
|
|
|
+ attributes.Add(resolutionText);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(Codec))
|
|
|
+ {
|
|
|
+ attributes.Add(Codec.ToUpperInvariant());
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(Title))
|
|
|
+ {
|
|
|
+ return attributes.AsEnumerable()
|
|
|
+ // keep Tags that are not already in Title
|
|
|
+ .Where(tag => Title.IndexOf(tag, StringComparison.OrdinalIgnoreCase) == -1)
|
|
|
+ // attributes concatenation, starting with Title
|
|
|
+ .Aggregate(new StringBuilder(Title), (builder, attr) => builder.Append(" - ").Append(attr))
|
|
|
+ .ToString();
|
|
|
+ }
|
|
|
+
|
|
|
+ return string.Join(" ", attributes);
|
|
|
}
|
|
|
|
|
|
- return string.Join(" ", attributes);
|
|
|
- }
|
|
|
-
|
|
|
- if (Type == MediaStreamType.Subtitle)
|
|
|
- {
|
|
|
-
|
|
|
- var attributes = new List<string>();
|
|
|
-
|
|
|
- if (!string.IsNullOrEmpty(Language))
|
|
|
+ case MediaStreamType.Subtitle:
|
|
|
{
|
|
|
- attributes.Add(StringHelper.FirstToUpper(Language));
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- attributes.Add(string.IsNullOrEmpty(localizedUndefined) ? "Und" : localizedUndefined);
|
|
|
+ var attributes = new List<string>();
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(Language))
|
|
|
+ {
|
|
|
+ attributes.Add(StringHelper.FirstToUpper(Language));
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ attributes.Add(string.IsNullOrEmpty(localizedUndefined) ? "Und" : localizedUndefined);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (IsDefault)
|
|
|
+ {
|
|
|
+ attributes.Add(string.IsNullOrEmpty(localizedDefault) ? "Default" : localizedDefault);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (IsForced)
|
|
|
+ {
|
|
|
+ attributes.Add(string.IsNullOrEmpty(localizedForced) ? "Forced" : localizedForced);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!string.IsNullOrEmpty(Title))
|
|
|
+ {
|
|
|
+ return attributes.AsEnumerable()
|
|
|
+ // keep Tags that are not already in Title
|
|
|
+ .Where(tag => Title.IndexOf(tag, StringComparison.OrdinalIgnoreCase) == -1)
|
|
|
+ // attributes concatenation, starting with Title
|
|
|
+ .Aggregate(new StringBuilder(Title), (builder, attr) => builder.Append(" - ").Append(attr))
|
|
|
+ .ToString();
|
|
|
+ }
|
|
|
+
|
|
|
+ return string.Join(" - ", attributes.ToArray());
|
|
|
}
|
|
|
|
|
|
- if (IsDefault)
|
|
|
- {
|
|
|
- attributes.Add(string.IsNullOrEmpty(localizedDefault) ? "Default" : localizedDefault);
|
|
|
- }
|
|
|
-
|
|
|
- if (IsForced)
|
|
|
- {
|
|
|
- attributes.Add(string.IsNullOrEmpty(localizedForced) ? "Forced" : localizedForced);
|
|
|
- }
|
|
|
-
|
|
|
- if (!string.IsNullOrEmpty(Title))
|
|
|
- {
|
|
|
- return attributes.AsEnumerable()
|
|
|
- // keep Tags that are not already in Title
|
|
|
- .Where(tag => Title.IndexOf(tag, StringComparison.OrdinalIgnoreCase) == -1)
|
|
|
- // attributes concatenation, starting with Title
|
|
|
- .Aggregate(new StringBuilder(Title), (builder, attr) => builder.Append(" - ").Append(attr))
|
|
|
- .ToString();
|
|
|
- }
|
|
|
-
|
|
|
- return string.Join(" - ", attributes.ToArray());
|
|
|
+ default:
|
|
|
+ return null;
|
|
|
}
|
|
|
-
|
|
|
- if (Type == MediaStreamType.Video)
|
|
|
- {
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- return null;
|
|
|
}
|
|
|
}
|
|
|
|