Dynamic - Quick Start
Last updated
Last updated
Login to the HourOne platform https://app.hourone.ai
Video in HourOne is based on a template a template will define the look-and-feel of the video and the available layouts for that video.
Each layout defines the graphical elements (audio, video, images, text, and location of the avatar)
To start, either create a project from the template section or open a pre-existing one.
The steps to create a dynamic video are,
Toggle the developer mode on.
Copy the base request structure, we will use this base to modify your video dynamically, click on the developer button next to the video title.
Now either copy the CURL or JSON body
Create your first scene, start by clicking the scene section in the drawers.
The structure of a scene can be seen in the example below
layout_id is retrieved by clicking the developer icon on the layout preview
media_elements are either videos or images that will appear within the layout, the elements are mandtory and can not be left empty. The media_elements key is a root key of a type array, each element in the array corresponds to a media element within the layout, the id of the element can be retrieved by clicking the developer icon on the media element in the Images and video section in the Scene panel.
The object that describes a media element is a simple JSON (see below) where the id is obtained as described above and the URL is a publicly accessible URL that you provide.
texts_elements are any form of a textual element in the layout either a title, subtitle, or paragraph. The elements are not mandtory and therefore can be left empty, an empty element will not show on the video. The texts_elements key is a root key of a type array, each element in the array corresponds to a text element within the layout, the id of the element can be retrieved by clicking the developer icon on the media element in the Titles section in the Scene panel.
The object that describes a text element is a simple JSON (see below) where the id is obtained as described above and the text key.
transcript the scene's transcript must contain less than 1000 characters, this is what the avatar will say during the video.
This field is optional only and only if the voice_recording_url is provided.
voice_recording_url is an optional field that instead of using transcript and text-to-speech providers. The voice recording is provided via publicly available URL of a wav file.
name the scene name for internal use.
type should be set to create_scene
These elements are global elements that appear in the video.
The IDs for the elements can be found in the Brand panel (all are optional),
The music id is retrieved from the music panel
type should be set create
name the name of the video
template_id the video template will determine the look-and-feel and the layouts, can be retrieved from the Template panel.
palette_id(optional) These are the colors that will be used in the video, this can be retrieved from the Style panel, and color can be sent in the request in the form of a hex colors palette
palette(optional) - an array of custom hex colors, instead of using palette_id:
The palette size must match the template; otherwise, you will receive an error indicating the expected palette size.
palette: [{"color": "#826f3b"}, {"color":"#295c4d"}]
voice_id
character_id
palette is an optional field that can be sent if no palette_id is defined in the form of
You can use multiple characters and voices by setting the character_id and voice_id on the scene. If these are not specified on the scene, the values will be taken from the root.
Now you can take the request you built and use your favorite API testing tool such as Postman.
Once you have modified the JSON use your API key to make a call to the videos endpoint.
The schema for Dynamic Videos is NewVideoRequest in the OpenAPI docs
Using the id received in the video creation call you will be able to poll the status of your video by calling the following API