Customization
You can customize your video by choosing what fonts, colors, images, and music to use.
Fonts​
You can pass the title_font
and body_font
parameters to the API to change the fonts used in your video. You can use any font from Google Fonts.
Colors​
Pass a Hex color
to the API to change the color of the text in your video. Video API automatically changes colors in each scene to keep the video engaging. But the color you pass will be used as the primary color.
Media​
The editor will automatically choose images to match your text. There are a few diffent collections to choose from:
- Images: Stock images
- Videos: Stock videos
- Modern Illustrations: One of our illustration styles
- etc.
You can find the full list of styles in the API reference or view them in the editor.
Send the collection
parameter to the API to change the collection used in your video. Send false
to tell the API to not use any media.
Music​
You can pass the music
parameter to the API to change the background music. Make sure this is an MP3 file. You can also set music
to false
to remove the background music.
Voice​
You can pass the voice
parameter to the API to change the voice used in your video. You can find the full list of voices in the API reference or hear them in the editor. You can also set voice
to false
to remove the voice from your video.
Ratio​
You can set the videos ratio by passing the ratio
parameter to the API. The default is square
. You can also set it to landscape
or portrait
.
Example​
Here is an example of a request body that uses all of these parameters:
{
"markdown": "...",
"draft": true,
"music": "https://firebasestorage.googleapis.com/v0/b/storage.getvidon.com/o/assets%2Fmusic%2FThe_Limit.mp3?alt=media",
"voice": "en-GB-OliviaNeural",
"title_font": "Inter",
"body_font": "Inter",
"color": "#2B5EFF",
"collection": "modern_illustrations",
"ratio": "square"
}