
shridharathi/brand-video-generator
Public
0
runs
Run shridharathi/brand-video-generator with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
product_image |
string
|
Image of the product to create a brand video for
|
|
brand_name |
string
|
Name of the brand or company
|
|
target_audience |
string
|
general consumers
|
Target audience for the brand video
|
video_style |
None
|
cinematic
|
Visual style for the brand video
|
duration |
None
|
5
|
Duration of video in seconds (8s costs more)
|
include_sound |
boolean
|
True
|
Include background music/sound effects
|
{
"type": "object",
"title": "Input",
"required": [
"product_image",
"brand_name"
],
"properties": {
"duration": {
"enum": [
5,
8
],
"type": "integer",
"title": "duration",
"description": "Duration of video in seconds (8s costs more)",
"default": 5,
"x-order": 4
},
"brand_name": {
"type": "string",
"title": "Brand Name",
"x-order": 1,
"description": "Name of the brand or company"
},
"video_style": {
"enum": [
"cinematic",
"modern",
"elegant",
"energetic",
"minimalist"
],
"type": "string",
"title": "video_style",
"description": "Visual style for the brand video",
"default": "cinematic",
"x-order": 3
},
"include_sound": {
"type": "boolean",
"title": "Include Sound",
"default": true,
"x-order": 5,
"description": "Include background music/sound effects"
},
"product_image": {
"type": "string",
"title": "Product Image",
"format": "uri",
"x-order": 0,
"description": "Image of the product to create a brand video for"
},
"target_audience": {
"type": "string",
"title": "Target Audience",
"default": "general consumers",
"x-order": 2,
"description": "Target audience for the brand video"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "object",
"title": "Output",
"required": [
"video",
"marketing_copy",
"video_description"
],
"properties": {
"video": {
"type": "string",
"title": "Video",
"format": "uri"
},
"marketing_copy": {
"type": "string",
"title": "Marketing Copy"
},
"video_description": {
"type": "string",
"title": "Video Description"
}
}
}