所有工具

video_blur_region

屏幕、窗口与界面 · macOS · Windows

效果: 写入. 状态: 受限可用.

“受限可用”表示工具可能取决于版本、平台、权限、账户或配置,并不表示它在所有安装中都已启用。

macOS

用途

对视频中的一个或多个矩形区域进行像素化/模糊处理,用于在发布屏幕录制前遮盖 PII(例如电子邮件窗格、姓名)。矩形使用源视频像素和左上角原点:[{x,y,w,h, start_ms?, end_ms?}];省略时间即可覆盖整个片段。非常适合配合标记时间线的 `bounds` 使用。返回输出路径。

必填输入

输入名称会严格保持工具要求的形式。下方可展开的架构中保留英文规范技术定义。

权限与确认

架构未声明明确的确认参数。这并不代表可以未经许可操作;请检查效果并取得授权。

英文规范技术架构macOS
{
  "properties": {
    "input": {
      "description": "Path to the source video file.",
      "type": "string"
    },
    "output": {
      "description": "Default: <input>_blurred.mov. Missing parent folders are created.",
      "type": "string"
    },
    "regions": {
      "description": "[{x,y,w,h, start_ms?, end_ms?}] in source pixels (top-left).",
      "items": {
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "input",
    "regions"
  ],
  "type": "object"
}

文档示例

video_blur_region 的文档示例。请勿执行此示例。所示参数属于虚构数据集;在实际调用前,请解析真实标识符并获得授权。

{
  "input": "/Users/demo/Documents/meeting.mov",
  "regions": [
    {
      "end_ms": 5000,
      "h": 180,
      "start_ms": 0,
      "w": 320,
      "x": 0,
      "y": 0
    }
  ]
}

Windows

用途

对视频中的一个或多个矩形区域进行像素化/模糊处理,用于在发布屏幕录制前遮盖 PII(例如电子邮件窗格、姓名)。矩形使用源视频像素和左上角原点:[{x,y,w,h, start_ms?, end_ms?}];省略时间即可覆盖整个片段。非常适合配合标记时间线的 `bounds` 使用。返回输出路径。

必填输入

输入名称会严格保持工具要求的形式。下方可展开的架构中保留英文规范技术定义。

权限与确认

架构未声明明确的确认参数。这并不代表可以未经许可操作;请检查效果并取得授权。

英文规范技术架构Windows
{
  "properties": {
    "input": {
      "description": "Path to the source video.",
      "type": "string"
    },
    "output": {
      "description": "Output path (default: <input>_blurred.mov).",
      "type": "string"
    },
    "regions": {
      "description": "[{x,y,w,h, start_ms?, end_ms?}] in source pixels (top-left).",
      "items": {
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "input",
    "regions"
  ],
  "type": "object"
}

文档示例

video_blur_region 的文档示例。请勿执行此示例。所示参数属于虚构数据集;在实际调用前,请解析真实标识符并获得授权。

{
  "input": "C:\\Users\\demo\\Documents\\meeting.mov",
  "regions": [
    {
      "end_ms": 5000,
      "h": 180,
      "start_ms": 0,
      "w": 320,
      "x": 0,
      "y": 0
    }
  ]
}