forked from AMWA-TV/is-04
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow_video.json
executable file
·67 lines (67 loc) · 1.65 KB
/
flow_video.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes a Video Flow",
"title": "Video Flow resource",
"allOf": [
{ "$ref": "flow_core.json" },
{
"type": "object",
"required": [
"format",
"frame_width",
"frame_height",
"colorspace"
],
"properties": {
"format": {
"description": "Format of the data coming from the Flow as a URN",
"type": "string",
"enum": [
"urn:x-nmos:format:video"
],
"format": "uri"
},
"frame_width": {
"description" : "Width of the picture in pixels",
"type" : "integer"
},
"frame_height" : {
"description" : "Height of the picture in pixels",
"type" : "integer"
},
"interlace_mode" : {
"description" : "Interlaced video mode for frames in this Flow",
"type" : "string",
"default": "progressive",
"enum" : [
"progressive",
"interlaced_tff",
"interlaced_bff",
"interlaced_psf"
]
},
"colorspace" : {
"description" : "Colorspace used for the video",
"type" : "string",
"enum" : [
"BT601",
"BT709",
"BT2020",
"BT2100"
]
},
"transfer_characteristic": {
"description": "Transfer characteristic",
"type": "string",
"default": "SDR",
"enum": [
"SDR",
"HLG",
"PQ"
]
}
}
}
]
}