-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
144 lines (144 loc) · 3.62 KB
/
schema.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"created": {
"type": "string"
},
"numFiles": {
"type": "integer"
},
"files": {
"type": "array",
"items": {
"type": "object",
"properties": {
"filePath": {
"type": "string"
},
"dirName": {
"type": "string"
},
"fileSize": {
"type": "integer"
},
"head": {
"type": "object",
"properties": {
"EBML version": {
"type": "integer"
},
"EBML read version": {
"type": "integer"
},
"EBML maximum ID length": {
"type": "integer"
},
"EBML maximum size length": {
"type": "integer"
},
"Doc type": {
"type": "string"
},
"Doc type version": {
"type": "integer"
},
"Doc type read version": {
"type": "integer"
}
},
"required": ["Doc type", "Doc type version", "Doc type read version"]
},
"segInfo": {
"type": "object",
"properties": {
"Seek head (subentries will be skipped)": {
"type": "null"
},
"Segment information": {
"type": "null"
},
"Segment UID": {
"type": "string"
},
"Muxing application": {
"type": "string"
},
"Writing application": {
"type": "string"
},
"Timecode scale": {
"type": "integer"
},
"Duration": {
"type": "string"
}
},
"required": ["Segment information", "Segment UID", "Muxing application", "Writing application", "Timecode scale", "Duration"]
},
"segTracks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"number": {
"type": "string"
},
"uid": {
"type": "integer"
},
"type": {
"type": "string"
},
"codecId": {
"type": "string"
},
"language": {
"type": "string"
},
"sampFreq": {
"type": "integer"
},
"channels": {
"type": "integer"
}
},
"required": ["number", "uid", "type", "codecId"]
}
},
"chapters": {
"type": "array",
"items": {}
}
},
"required": ["filePath", "dirName", "fileSize", "head", "segInfo", "segTracks"]
}
},
"infoSize": {
"type": "integer"
},
"args": {
"type": "object",
"properties": {
"_": {
"type": "array",
"items": {}
},
"p": {
"type": "string"
},
"o": {
"type": "string"
},
"m": {
"type": "string"
}
},
"required": []
},
"mkvInfoVersion": {
"type": "string"
}
},
"required": ["created", "numFiles", "files", "infoSize", "args", "mkvInfoVersion"]
}