@imferno/schema 2.0.1-beta.03660c5 → 2.0.1-beta.16b09ca
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schemas/imf-report.json +23 -0
package/package.json
CHANGED
package/schemas/imf-report.json
CHANGED
|
@@ -272,15 +272,38 @@
|
|
|
272
272
|
"type"
|
|
273
273
|
],
|
|
274
274
|
"properties": {
|
|
275
|
+
"channelCount": {
|
|
276
|
+
"description": "Audio channel count (e.g. 2, 6, 8) — only for audio sequences",
|
|
277
|
+
"type": [
|
|
278
|
+
"integer",
|
|
279
|
+
"null"
|
|
280
|
+
],
|
|
281
|
+
"format": "uint32",
|
|
282
|
+
"minimum": 0.0
|
|
283
|
+
},
|
|
275
284
|
"id": {
|
|
276
285
|
"type": "string"
|
|
277
286
|
},
|
|
287
|
+
"language": {
|
|
288
|
+
"description": "RFC 5646 language tag extracted from the essence descriptor (e.g. \"en\", \"fr\")",
|
|
289
|
+
"type": [
|
|
290
|
+
"string",
|
|
291
|
+
"null"
|
|
292
|
+
]
|
|
293
|
+
},
|
|
278
294
|
"resources": {
|
|
279
295
|
"type": "array",
|
|
280
296
|
"items": {
|
|
281
297
|
"$ref": "#/definitions/CplResource"
|
|
282
298
|
}
|
|
283
299
|
},
|
|
300
|
+
"soundfield": {
|
|
301
|
+
"description": "MCA soundfield label (e.g. \"5.1\", \"7.1\", \"Atmos\") — only for audio sequences",
|
|
302
|
+
"type": [
|
|
303
|
+
"string",
|
|
304
|
+
"null"
|
|
305
|
+
]
|
|
306
|
+
},
|
|
284
307
|
"trackId": {
|
|
285
308
|
"type": "string"
|
|
286
309
|
},
|