change_video_speed
Adjust video playback speed and audio to create faster or slower versions. Specify input/output paths and speed factor for precise customization.
Instructions
Changes the playback speed of a video (and its audio).
Args: video_path: Path to the input video file. output_video_path: Path to save the speed-adjusted video file. speed_factor: The factor by which to change the speed (e.g., 2.0 for 2x speed, 0.5 for half speed). Must be positive.
Returns: A status message indicating success or failure.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| output_video_path | Yes | ||
| speed_factor | Yes | ||
| video_path | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "output_video_path": {
      "title": "Output Video Path",
      "type": "string"
    },
    "speed_factor": {
      "title": "Speed Factor",
      "type": "number"
    },
    "video_path": {
      "title": "Video Path",
      "type": "string"
    }
  },
  "required": [
    "video_path",
    "output_video_path",
    "speed_factor"
  ],
  "title": "change_video_speedArguments",
  "type": "object"
}