aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-12 15:49:33 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-12 15:49:33 -0500
commit9f6fcc9e058848e5a07400ebca6c1357947b9336 (patch)
treee7231d0c8cd20a55f7caf9b510f66d6ba3baf3b1
parentb501d66fa8b57eefd1c61e8388d5f0b91b34fe92 (diff)
capture conductor
-rw-r--r--MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs10
-rw-r--r--MediaBrowser.Model/Entities/PersonType.cs4
2 files changed, 13 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
index 1df8896d5..31f6af181 100644
--- a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
+++ b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs
@@ -441,7 +441,6 @@ namespace MediaBrowser.MediaEncoding.Probing
}
var composer = FFProbeHelpers.GetDictionaryValue(tags, "composer");
-
if (!string.IsNullOrWhiteSpace(composer))
{
foreach (var person in Split(composer, false))
@@ -450,6 +449,15 @@ namespace MediaBrowser.MediaEncoding.Probing
}
}
+ var conductor = FFProbeHelpers.GetDictionaryValue(tags, "conductor");
+ if (!string.IsNullOrWhiteSpace(conductor))
+ {
+ foreach (var person in Split(conductor, false))
+ {
+ audio.People.Add(new BaseItemPerson { Name = person, Type = PersonType.Conductor });
+ }
+ }
+
audio.Album = FFProbeHelpers.GetDictionaryValue(tags, "album");
var artists = FFProbeHelpers.GetDictionaryValue(tags, "artists");
diff --git a/MediaBrowser.Model/Entities/PersonType.cs b/MediaBrowser.Model/Entities/PersonType.cs
index ee80b1496..bdf846095 100644
--- a/MediaBrowser.Model/Entities/PersonType.cs
+++ b/MediaBrowser.Model/Entities/PersonType.cs
@@ -30,5 +30,9 @@ namespace MediaBrowser.Model.Entities
/// The producer
/// </summary>
public const string Producer = "Producer";
+ /// <summary>
+ /// The conductor
+ /// </summary>
+ public const string Conductor = "Conductor";
}
}