RecordedMedia

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
filePath string
durationInSeconds number
width integer
height integer
encodingProfile string
sizeInBytes integer
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-recordedmedia-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecordedMedia",
  "title": "RecordedMedia",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string"
    },
    "durationInSeconds": {
      "type": "number",
      "format": "double"
    },
    "width": {
      "type": "integer"
    },
    "height": {
      "type": "integer"
    },
    "encodingProfile": {
      "type": "string"
    },
    "sizeInBytes": {
      "type": "integer",
      "format": "int64"
    }
  }
}