Watermark
Add an optionally opaque image as a watermark to the bottom right of your video.
Request parameters
- Name
watermark
- Type
- file
- required
- Description
Image to use as watermark
- Name
opacity
- Type
- number
- required
- Description
Number between 0 and 100 to specify how opaque the image is
- Name
position
- Type
- string
- Description
Either
top_left
,top_right
,bottom_right
, orbottom_left
. Defaults tobottom_right
- Name
offset
- Type
- string
- Description
Number to specify how much offset the watermark image from the edge of the video. Defaults to
0
- Name
metadata
- Type
- object
- Description
Arbitrary metadata to associate with this process
HTTP Endpoint
POST
https://api.editframe.com/v2/videos/watermark
Response
{
"id": "RNVqM4mQBX",
"timestamp": 1665085221,
"status": "processing"
}
Examples
curl --location -g --request POST 'https://api.editframe.com/v2/videos/watermark' \
--header 'Authorization: Bearer YOUR_API_TOKEN' \
--form 'watermark=@"/Users/mac/image.jpg"' \
--form 'video=@"/Users/mac/video.mp4"' \
--form 'opacity="50"' \