aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
diff options
context:
space:
mode:
authorMrTimscampi <julien.machiels@protonmail.com>2020-05-14 18:52:42 +0200
committerMrTimscampi <julien.machiels@protonmail.com>2020-05-14 18:52:42 +0200
commit2e18142bb32554cf162827ab1ca7a8040107baea (patch)
tree137960aa04c1bf8c598d03e267195c28635ec1fb /MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
parent234292453f9b05f1fd6c2a00280a1a4b4254a4fa (diff)
Add color primaries to ffprobe output
Diffstat (limited to 'MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs')
-rw-r--r--MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs b/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
index fa51e61a2..d7b0e0e64 100644
--- a/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
+++ b/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
@@ -285,5 +285,12 @@ namespace MediaBrowser.MediaEncoding.Probing
/// <value>The color transfer.</value>
[JsonPropertyName("color_transfer")]
public string ColorTransfer { get; set; }
+
+ /// <summary>
+ /// Gets or sets the color transfer.
+ /// </summary>
+ /// <value>The color transfer.</value>
+ [JsonPropertyName("color_primaries")]
+ public string ColorPrimaries { get; set; }
}
}