Concatenate
Combine videos together to create a seamless sequence of clips
Request parameters
- Name
videos[]
- Type
- file
- required
- Description
Video path
- Name
scale
- Type
- string
- Description
Either
fit
, orstretch
. Defaults tostretch
.
- Name
metadata
- Type
- timestamp
- Description
Arbitrary metadata to associate with this process
HTTP Endpoint
POST
https://api.editframe.com/v2/videos/concatenate
Response
{
"id": "RNVqM4mQBX",
"timestamp": 1665085221,
"status": "processing"
}
Examples
curl --location -g --request POST 'https://api.editframe.com/v2/videos/concatenate' \
--header 'Authorization: Bearer YOUR_API_TOKEN' \
--form 'videos[]=@"/path/to/file"' \
--form 'videos[]=@"/path/to/file"' \
--form 'videos[]=@"/path/to/file"' \