1234567891011121314151617181920212223242526272829303132333435 |
- {
- "className": "VideoMedia",
- "newProperties": [
- {
- "name": "encoding",
- "description": "Encoding of the video media object",
- "required": true,
- "property_type": { "Single": { "Reference": { "className": "VideoMediaEncoding" } } }
- },
- {
- "name": "pixelWidth",
- "description": "Video media width in pixels",
- "required": true,
- "property_type": { "Single": "Uint16" }
- },
- {
- "name": "pixelHeight",
- "description": "Video media height in pixels",
- "required": true,
- "property_type": { "Single": "Uint16" }
- },
- {
- "name": "size",
- "description": "Video media size in bytes",
- "required": false,
- "property_type": { "Single": "Uint64" }
- },
- {
- "name": "location",
- "description": "Location of the video media object",
- "required": true,
- "property_type": { "Single": { "Reference": { "className": "MediaLocation", "sameOwner": true } } }
- }
- ]
- }
|