VideoRecordingRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
encodingProfile string
quality string
outputPath string File path for the recorded video
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-videorecordingrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VideoRecordingRequest",
  "title": "VideoRecordingRequest",
  "type": "object",
  "properties": {
    "encodingProfile": {
      "type": "string",
      "enum": [
        "Mp4",
        "Wmv",
        "Avi"
      ],
      "default": "Mp4"
    },
    "quality": {
      "type": "string",
      "enum": [
        "Auto",
        "HD1080p",
        "HD720p",
        "Wvga",
        "Ntsc",
        "Pal",
        "Vga",
        "Qvga"
      ],
      "default": "Auto"
    },
    "outputPath": {
      "type": "string",
      "description": "File path for the recorded video"
    }
  },
  "required": [
    "outputPath"
  ]
}