Quickreels Docs

Video Customization Options

When creating a video using the QuickReels AI API, you have several options to customize your content. This page outlines the available choices for each parameter.

Topic

The topic sets the theme or subject of your video. You can choose from the following predefined topics:

  • Random AI Story
  • Scary Story
  • Bedtime Story
  • Interesting Story
  • Urban Legend
  • Motivational Story
  • Fun Facts
  • Long Form Jokes
  • Life Pro Tips
  • Philosophy
  • Product Marketing

Example:

{
	"topic": "Random AI Story"
}

Duration

You can specify the length of your video. Two options are available:

  • 30 seconds
  • 1 minute

Example:

{
	"duration": "60"
}

Narration Voices

Choose from a variety of AI voices for your video narration. Each voice has a unique character and tone:

Voice IDNameGender
alloyAlloyMale
echoEchoMale
fableFableMale
onyxOnyxMale
novaNovaFemale
shimmerShimmerFemale

Example:

{
	"narrationVoiceId": "nova"
}

Background Style

Currently, the only available background style is "flux". This creates a dynamic, flowing background for your video.

Example:

{
	"backgroundStyle": "flux"
}

Language

While not explicitly listed in the provided options, the API allows you to specify the language for your video. This should be a valid language code (e.g., "en" for English, "es" for Spanish).

Example:

{
	"language": "en"
}

Custom Content

If you want more control over your video content, you can use the custom field to provide specific instructions or content for your video.

Example:

{
	"custom": "Create a video about the history of artificial intelligence, focusing on major breakthroughs in the last decade."
}

When you use the custom field:

  • The AI will use your provided content as a primary source for generating the video.
  • It will still use the selected topic as context to shape the overall tone and style of the video.
  • The custom content allows for more specific and tailored videos, ideal for product marketing, educational content, or any scenario where you need precise control over the video's subject matter.

Putting It All Together

Here's an example of a complete video creation request using all available options:

{
	"topic": "Random AI Story",
	"backgroundStyle": "flux",
	"narrationVoiceId": "nova",
	"language": "en",
	"duration": "60",
	"custom": "Create a video about the history of artificial intelligence, focusing on major breakthroughs in the last decade."
}

This configuration will create a 1-minute video with an interesting story theme, using the Nova voice for narration, a flux background style, in English, with a custom story about AI and human friendship.

Remember, while the custom field gives you more control, the AI will still use its training to expand upon and creatively interpret your instructions to create a compelling video.

On this page