diff --git a/CHANGELOG.md b/CHANGELOG.md index 7480488..9d70451 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ * [#610 Viewstate Copy doesn't copy partial viewed offsets](https://github.com/WebTools-NG/WebTools-NG/issues/610) (Bug) * [#619 Allow to paste token into login screen](https://github.com/WebTools-NG/WebTools-NG/issues/619) (Enhancement) * [#507 Download Module (Movies)](https://github.com/WebTools-NG/WebTools-NG/issues/507) (Enhancement) +* [#625 Media Info HDR types in Export](https://github.com/WebTools-NG/WebTools-NG/issues/625) (Enhancement) ## V1.1.2 ( 20220925 ) diff --git a/src/components/modules/ExportTools/defs/def-Episode.json b/src/components/modules/ExportTools/defs/def-Episode.json index ae732a7..006423b 100644 --- a/src/components/modules/ExportTools/defs/def-Episode.json +++ b/src/components/modules/ExportTools/defs/def-Episode.json @@ -145,6 +145,7 @@ "Video Stream Bit Depth", "Video Stream Bitrate", "Video Stream Cabac", + "Video Stream Chroma Location", "Video Stream Chroma Sub Sampling", "Video Stream Codec ID", "Video Stream Codec", @@ -153,6 +154,14 @@ "Video Stream Color Space", "Video Stream Color Trc", "Video Stream Default", + "Video Stream DOVI BL compatible ID", + "Video Stream DOVI BL Present", + "Video Stream DOVI EL Present", + "Video Stream DOVI Level", + "Video Stream DOVI Present", + "Video Stream DOVI Profile", + "Video Stream DOVI RPU Present", + "Video Stream DOVI Version", "Video Stream Duration", "Video Stream Frame Rate Mode", "Video Stream Frame Rate", diff --git a/src/components/modules/ExportTools/defs/def-Fields.json b/src/components/modules/ExportTools/defs/def-Fields.json index 50d2834..a60aacb 100644 --- a/src/components/modules/ExportTools/defs/def-Fields.json +++ b/src/components/modules/ExportTools/defs/def-Fields.json @@ -1414,6 +1414,11 @@ "subtype": "string", "subkey": "cabac" }, + "Video Stream Chroma Location": { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].chromaLocation", + "call": 2, + "type": "string" + }, "Video Stream Chroma Sub Sampling": { "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)]", "call": 2, @@ -1477,6 +1482,46 @@ "subtype": "string", "subkey": "duration" }, + "Video Stream DOVI BL compatible ID": { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].DOVIBLCompatID", + "call": 2, + "type": "string" + }, + "Video Stream DOVI BL Present": { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].DOVIBLPresent", + "call": 2, + "type": "string" + }, + "Video Stream DOVI EL Present": { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].DOVIELPresent", + "call": 2, + "type": "string" + }, + "Video Stream DOVI Level": { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].DOVILevel", + "call": 2, + "type": "string" + }, + "Video Stream DOVI Present": { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].DOVIPresent", + "call": 2, + "type": "string" + }, + "Video Stream DOVI Profile" : { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].DOVIProfile", + "call": 2, + "type": "string" + }, + "Video Stream DOVI RPU Present" : { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].DOVIRPUPresent", + "call": 2, + "type": "string" + }, + "Video Stream DOVI Version" : { + "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)].DOVIVersion", + "call": 2, + "type": "string" + }, "Video Stream Frame Rate": { "key": "$.Media[*].Part[*].Stream[?(@.streamType==1)]", "call": 2, diff --git a/src/components/modules/ExportTools/defs/def-Movie.json b/src/components/modules/ExportTools/defs/def-Movie.json index 39e2933..86795a0 100644 --- a/src/components/modules/ExportTools/defs/def-Movie.json +++ b/src/components/modules/ExportTools/defs/def-Movie.json @@ -158,6 +158,7 @@ "Video Stream Bit Depth", "Video Stream Bitrate", "Video Stream Cabac", + "Video Stream Chroma Location", "Video Stream Chroma Sub Sampling", "Video Stream Codec", "Video Stream Codec ID", @@ -166,6 +167,14 @@ "Video Stream Color Space", "Video Stream Color Trc", "Video Stream Default", + "Video Stream DOVI BL compatible ID", + "Video Stream DOVI BL Present", + "Video Stream DOVI EL Present", + "Video Stream DOVI Level", + "Video Stream DOVI Present", + "Video Stream DOVI Profile", + "Video Stream DOVI RPU Present", + "Video Stream DOVI Version", "Video Stream Duration", "Video Stream Frame Rate", "Video Stream Frame Rate Mode",