video editing API. The final video can then be downloaded and shared.
You can checkout this reference project, for free, from GitHub and modify it to your needs. For example you can replace with your own background video, logo and font. You could create a hosted page to display the final video which the user can share. You could also use the source code as a starting point to build out an application that send thousands of personalised videos to your customer database automatically instead of using a form.
Unbranded background video is free to download and use under a public domain CC0 license.
Soundtrack licensed under CC BY-SA 3. Christmas Is Coming by MaxKoMusic available from Free Stock Music
curl --request POST 'https://api.shotstack.io/v1/render' \
--header 'x-api-key: YOUR_API_KEY' \
--data-raw '{
"timeline": {
"tracks": [
{
"clips": [
{
"asset": {
"type": "video",
"src": "https://shotstack-assets.s3.amazonaws.com/footage/beach-overhead.mp4"
},
"start": 0,
"length": "auto"
}
]
}
]
},
"output": {
"format": "mp4",
"size": {
"width": 1280,
"height": 720
}
}
}'