add_watermark
Add a watermark to your video file using a specified image, position, and opacity. Input your video and watermark paths, define the output path, and customize placement and transparency for branding or attribution.
Instructions
Add a watermark to a video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPath | Yes | Path to the input video file | |
opacity | No | Opacity of watermark (0.0-1.0) | |
outputPath | Yes | Path for the output video file | |
position | No | Position of watermark (topleft, topright, bottomleft, bottomright, center) | |
watermarkPath | Yes | Path to the watermark image |
Input Schema (JSON Schema)
{
"properties": {
"inputPath": {
"description": "Path to the input video file",
"type": "string"
},
"opacity": {
"description": "Opacity of watermark (0.0-1.0)",
"type": "number"
},
"outputPath": {
"description": "Path for the output video file",
"type": "string"
},
"position": {
"description": "Position of watermark (topleft, topright, bottomleft, bottomright, center)",
"type": "string"
},
"watermarkPath": {
"description": "Path to the watermark image",
"type": "string"
}
},
"required": [
"inputPath",
"watermarkPath",
"outputPath"
],
"type": "object"
}