trim-video
Trim videos to a specific duration by specifying start and end times with a video URL. This tool helps extract precise sections from videos for focused content.
Instructions
Trim videos to a specific duration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endTimestamp | Yes | End time in HH:MM:SS | |
startTimestamp | Yes | Start time in HH:MM:SS | |
videoUrl | Yes | URL of the video |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endTimestamp": {
"description": "End time in HH:MM:SS",
"type": "string"
},
"startTimestamp": {
"description": "Start time in HH:MM:SS",
"type": "string"
},
"videoUrl": {
"description": "URL of the video",
"format": "uri",
"type": "string"
}
},
"required": [
"videoUrl",
"startTimestamp",
"endTimestamp"
],
"type": "object"
}