From 4691694d2ecad9521bd96a0f5fb2a612e28bd6e2 Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 1 Aug 2025 17:10:55 +0000 Subject: [PATCH] feat: Add Unspecified_Image option to Transfer enum in Video class. The Transfer enum was missing value 2, which according to ITU-T H.Sup19 standards represents "Unspecified (Image characteristics are unknown or are determined by the application)". This value is often used for still image coding systems. --- unshackle/core/tracks/video.py | 1 + 1 file changed, 1 insertion(+) diff --git a/unshackle/core/tracks/video.py b/unshackle/core/tracks/video.py index 9069692..8a9d344 100644 --- a/unshackle/core/tracks/video.py +++ b/unshackle/core/tracks/video.py @@ -116,6 +116,7 @@ class Video(Track): class Transfer(Enum): Unspecified = 0 BT_709 = 1 + Unspecified_Image = 2 BT_601 = 6 BT_2020 = 14 BT_2100 = 15