aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Probing/FFProbeHelpers.cs
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2018-12-14 21:28:12 -0500
committerGitHub <noreply@github.com>2018-12-14 21:28:12 -0500
commit46c75d75bd8702da4d3728c11f28756a9c9abb72 (patch)
treedd6a198e3c104ebc732a615153c4bb5514e25660 /MediaBrowser.MediaEncoding/Probing/FFProbeHelpers.cs
parentb36b526f27ebd9ac716d743eea26e65407ceeea4 (diff)
parenta73d255f51f135adbc2c352fef79f776ce9fcb02 (diff)
Merge pull request #166 from jellyfin/develop
Develop
Diffstat (limited to 'MediaBrowser.MediaEncoding/Probing/FFProbeHelpers.cs')
-rw-r--r--MediaBrowser.MediaEncoding/Probing/FFProbeHelpers.cs117
1 files changed, 117 insertions, 0 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/FFProbeHelpers.cs b/MediaBrowser.MediaEncoding/Probing/FFProbeHelpers.cs
new file mode 100644
index 000000000..396c85e21
--- /dev/null
+++ b/MediaBrowser.MediaEncoding/Probing/FFProbeHelpers.cs
@@ -0,0 +1,117 @@
+using System;
+using System.Collections.Generic;
+
+namespace MediaBrowser.MediaEncoding.Probing
+{
+ public static class FFProbeHelpers
+ {
+ /// <summary>
+ /// Normalizes the FF probe result.
+ /// </summary>
+ /// <param name="result">The result.</param>
+ public static void NormalizeFFProbeResult(InternalMediaInfoResult result)
+ {
+ if (result == null)
+ {
+ throw new ArgumentNullException("result");
+ }
+
+ if (result.format != null && result.format.tags != null)
+ {
+ result.format.tags = ConvertDictionaryToCaseInSensitive(result.format.tags);
+ }
+
+ if (result.streams != null)
+ {
+ // Convert all dictionaries to case insensitive
+ foreach (var stream in result.streams)
+ {
+ if (stream.tags != null)
+ {
+ stream.tags = ConvertDictionaryToCaseInSensitive(stream.tags);
+ }
+
+ if (stream.disposition != null)
+ {
+ stream.disposition = ConvertDictionaryToCaseInSensitive(stream.disposition);
+ }
+ }
+ }
+ }
+
+ /// <summary>
+ /// Gets a string from an FFProbeResult tags dictionary
+ /// </summary>
+ /// <param name="tags">The tags.</param>
+ /// <param name="key">The key.</param>
+ /// <returns>System.String.</returns>
+ public static string GetDictionaryValue(Dictionary<string, string> tags, string key)
+ {
+ if (tags == null)
+ {
+ return null;
+ }
+
+ string val;
+
+ tags.TryGetValue(key, out val);
+ return val;
+ }
+
+ /// <summary>
+ /// Gets an int from an FFProbeResult tags dictionary
+ /// </summary>
+ /// <param name="tags">The tags.</param>
+ /// <param name="key">The key.</param>
+ /// <returns>System.Nullable{System.Int32}.</returns>
+ public static int? GetDictionaryNumericValue(Dictionary<string, string> tags, string key)
+ {
+ var val = GetDictionaryValue(tags, key);
+
+ if (!string.IsNullOrEmpty(val))
+ {
+ int i;
+
+ if (int.TryParse(val, out i))
+ {
+ return i;
+ }
+ }
+
+ return null;
+ }
+
+ /// <summary>
+ /// Gets a DateTime from an FFProbeResult tags dictionary
+ /// </summary>
+ /// <param name="tags">The tags.</param>
+ /// <param name="key">The key.</param>
+ /// <returns>System.Nullable{DateTime}.</returns>
+ public static DateTime? GetDictionaryDateTime(Dictionary<string, string> tags, string key)
+ {
+ var val = GetDictionaryValue(tags, key);
+
+ if (!string.IsNullOrEmpty(val))
+ {
+ DateTime i;
+
+ if (DateTime.TryParse(val, out i))
+ {
+ return i.ToUniversalTime();
+ }
+ }
+
+ return null;
+ }
+
+ /// <summary>
+ /// Converts a dictionary to case insensitive
+ /// </summary>
+ /// <param name="dict">The dict.</param>
+ /// <returns>Dictionary{System.StringSystem.String}.</returns>
+ private static Dictionary<string, string> ConvertDictionaryToCaseInSensitive(Dictionary<string, string> dict)
+ {
+ return new Dictionary<string, string>(dict, StringComparer.OrdinalIgnoreCase);
+ }
+ }
+}