All tools

video_concat

Screen, windows & UI · macOS · Windows

Effect: write (strongest supported action). Status: gated.

Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.

macOS

Purpose

Stitches multiple videos end-to-end, in order, into one NEW file (e.g. assemble separate acts). All inputs should share a resolution for a clean result. Returns the output path + duration.

Required inputs

Permissions and confirmation

No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.

Full input schema — macOS
{
  "properties": {
    "inputs": {
      "description": "Ordered list of video file paths.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "output": {
      "description": "Output path (default: <first-input>_joined.mov). Missing parent folders are created.",
      "type": "string"
    }
  },
  "required": [
    "inputs"
  ],
  "type": "object"
}

Documentation example

Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.

{
  "inputs": [
    "/Users/demo/Documents/intro.mov",
    "/Users/demo/Documents/meeting.mov"
  ]
}

Windows

Purpose

Stitches multiple videos end-to-end, in order, into one NEW file (e.g. assemble separate acts). All inputs should share a resolution for a clean result. Returns the output path + duration.

Required inputs

Permissions and confirmation

No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.

Full input schema — Windows
{
  "properties": {
    "inputs": {
      "description": "Ordered list of video file paths.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "output": {
      "description": "Output path (default: <first-input>_joined.mov).",
      "type": "string"
    }
  },
  "required": [
    "inputs"
  ],
  "type": "object"
}

Documentation example

Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.

{
  "inputs": [
    "C:\\Users\\demo\\Documents\\intro.mov",
    "C:\\Users\\demo\\Documents\\meeting.mov"
  ]
}