Generative AI Videos using Bedrock, Polly, iMovie - FakeTube #2

We are building FakeTube - a YouTube clone using cloud-native and web technologies. In the last episode we defined initial project requirements. We are almost ready for the development, but before we jump into writing code, we need one more thing - a video content. Due to potential copyright issues, using existing YouTube videos is not an option. Instead, we can consider using stock video footage from services such as Shutterstock or creating our own content with a mobile phone. There is however a better way in my opinion. We are living in a Generative AI era, so why not just use some foundation models to generate not only ideas for the videos, but also the videos themselves. Content Requirements FakeTube is all about videos and we need at least a few of them to implement and test home page features such as responsive grid layout, infinite scroll or inline video player. How many? For the infinite scroll we will need a lot of videos. This is because YouTube loads videos in batches (which is actually a page size) of 24. So we will need more than this to accurately illustrate the feature. Also, having a home page full of videos, especially on the larger screens will look much better, so let's assume our target will be to generate 32 videos (which is BTW also a perfect number from the computer science perspective: 25). What topics? Should we generate some random videos or do we have some specific topics or categories in mind? It turns out that YouTube can help us with that. When you upload a video using YouTube Studio, in the "Details" step there is a hidden "Paid promotion, tags, subtitles, and more" section, which you can expand by clicking the "Show more" button. One of the subsections there is "Category" ("Add your video to a category so viewers can find it more easily"). There are 15 categories in total. They are very generic, but it will help us to create more structured and consistent video content. For now let's select 8 categories and we will generate 4 videos per category, which will be 32 videos in total: Autos & Vehicles Education Gaming Howto & Style Nonprofits & Activism Pets & Animals Sports Travel & Events Generative AI With a clearer understanding of our desired content, the next crucial step is to identify a Generative AI service and foundation model capable of generating a video script and footage. I personally have a lot of experience with AWS (Amazon Web Services), so it's a natural choice to use it for this project. At some point I really would like compare it with other cloud providers like Microsoft Azure or Google Cloud or even independent services, but for now we will use AWS as a foundation and a baseline for FakeTube. Amazon Bedrock Luckily for us, we don't have to spend a lot of time on research. Amazon Bedrock is the service dedicated for the generative AI applications in AWS. It's one of the fastest growing AWS services, which gives you access to a wide range of Foundation Models (FM) from leading AI companies like AI21 Labs, Cohere, Stability AI, Anthropic, Meta, Mistral AI, DeepSeek and of course Amazon themselves. Amazon Nova One of the models or actually a family of models which can be a perfect fit for our use case is Amazon Nova, because as stated in the documentation, it includes: creative content generation models that accept text and image inputs and produce image or video outputs. They are designed to deliver customizable high-quality images and videos for visual content generation. We will be interested in 3 models from the Amazon Nova family: Amazon Nova Reel state-of-the-art video generation model that allows customers to easily create high quality video from text and images. Amazon Nova Canvas state-of-the-art image generation model that creates professional-grade images from text or images provided in prompts. Amazon Nova Micro text-only model that delivers the lowest latency responses at very low cost. It is highly performant at language understanding, translation, reasoning, code completion, brainstorming, and mathematical problem-solving. Limitations There are currently some important limitations of the Amazon Nova Reel, which can be difficult to accept or affect our content generation workflow: Video duration is limited Amazon Nova Reel serves a wide range of potential application domains and offers the following core capabilities: Generate videos of up to 6 seconds given a text prompt. Generate videos of up to 6 seconds given a reference image and a text prompt. There is no audio Modalities Amazon Nova Reel does not currently support audio or 3D content. The first limitation is not a big deal at the moment. We can accept that we will have short video examples. The second one is more problematic. One of the features of the video player is the "Unmute/mute button", which will be kind of useless when a video doesn

Mar 31, 2025 - 17:13
 0
Generative AI Videos using Bedrock, Polly, iMovie - FakeTube #2

We are building FakeTube - a YouTube clone using cloud-native and web technologies. In the last episode we defined initial project requirements. We are almost ready for the development, but before we jump into writing code, we need one more thing - a video content.

Due to potential copyright issues, using existing YouTube videos is not an option. Instead, we can consider using stock video footage from services such as Shutterstock or creating our own content with a mobile phone.

There is however a better way in my opinion. We are living in a Generative AI era, so why not just use some foundation models to generate not only ideas for the videos, but also the videos themselves.

Content Requirements

FakeTube is all about videos and we need at least a few of them to implement and test home page features such as responsive grid layout, infinite scroll or inline video player.

How many?

For the infinite scroll we will need a lot of videos. This is because YouTube loads videos in batches (which is actually a page size) of 24. So we will need more than this to accurately illustrate the feature.

Also, having a home page full of videos, especially on the larger screens will look much better, so let's assume our target will be to generate 32 videos (which is BTW also a perfect number from the computer science perspective: 25).

What topics?

Should we generate some random videos or do we have some specific topics or categories in mind?

It turns out that YouTube can help us with that. When you upload a video using YouTube Studio, in the "Details" step there is a hidden "Paid promotion, tags, subtitles, and more" section, which you can expand by clicking the "Show more" button.

Paid promotion, tags, subtitles, and more

One of the subsections there is "Category" ("Add your video to a category so viewers can find it more easily").

YouTube Studio video categories

There are 15 categories in total. They are very generic, but it will help us to create more structured and consistent video content.

For now let's select 8 categories and we will generate 4 videos per category, which will be 32 videos in total:

  • Autos & Vehicles
  • Education
  • Gaming
  • Howto & Style
  • Nonprofits & Activism
  • Pets & Animals
  • Sports
  • Travel & Events

Generative AI

With a clearer understanding of our desired content, the next crucial step is to identify a Generative AI service and foundation model capable of generating a video script and footage.

I personally have a lot of experience with AWS (Amazon Web Services), so it's a natural choice to use it for this project. At some point I really would like compare it with other cloud providers like Microsoft Azure or Google Cloud or even independent services, but for now we will use AWS as a foundation and a baseline for FakeTube.

Amazon Bedrock

Luckily for us, we don't have to spend a lot of time on research.

Amazon Bedrock is the service dedicated for the generative AI applications in AWS.

It's one of the fastest growing AWS services, which gives you access to a wide range of Foundation Models (FM) from leading AI companies like AI21 Labs, Cohere, Stability AI, Anthropic, Meta, Mistral AI, DeepSeek and of course Amazon themselves.

Amazon Nova

One of the models or actually a family of models which can be a perfect fit for our use case is Amazon Nova, because as stated in the documentation, it includes:

creative content generation models that accept text and image inputs and produce image or video outputs. They are designed to deliver customizable high-quality images and videos for visual content generation.

We will be interested in 3 models from the Amazon Nova family:

  • Amazon Nova Reel

state-of-the-art video generation model that allows customers to easily create high quality video from text and images.

Amazon Nova Reel demo

  • Amazon Nova Canvas

state-of-the-art image generation model that creates professional-grade images from text or images provided in prompts.

Amazon Nova Canvas demo

  • Amazon Nova Micro

text-only model that delivers the lowest latency responses at very low cost. It is highly performant at language understanding, translation, reasoning, code completion, brainstorming, and mathematical problem-solving.

Amazon Nova Micro demo

Limitations

There are currently some important limitations of the Amazon Nova Reel, which can be difficult to accept or affect our content generation workflow:

Video duration is limited

Amazon Nova Reel serves a wide range of potential application domains and offers the following core capabilities:

  • Generate videos of up to 6 seconds given a text prompt.

  • Generate videos of up to 6 seconds given a reference image and a text prompt.

There is no audio

Modalities

  • Amazon Nova Reel does not currently support audio or 3D content.

The first limitation is not a big deal at the moment. We can accept that we will have short video examples.

The second one is more problematic. One of the features of the video player is the "Unmute/mute button", which will be kind of useless when a video doesn't have an audio track.

Solution would be to generate audio using some other foundation model or service and merge it with the video using for example Apple iMovie, which I already use for video editing.

There are two ideas about an audio track

  1. Generate background music
  2. Generate voice-over narration

Background music is a very nice option, but unfortunately I didn't find a foundation model in Amazon Bedrock which is capable of doing that. There is a dedicated service for that AWS DeepComposer, but unfortunately it's deprecated

After careful consideration, we have made the decision to end support for AWS DeepComposer, effective 17-Sep-2025. New customer sign-ups and account upgrades are no longer available.

That's why I decided for a voice-over narration option, and there is a very good AWS service exactly for that purpose.

Amazon Polly

Amazon Polly was created precisely for that - it's AI voice generator and text-to-speech tool, which can create high-quality, natural-sounding human voices in dozens of languages.

It's also super easy to use - we just need to enter text we want to synthesize, select engine, language and voice and download it as an mp3 file.

Amazon Polly demo

Workflow

High level overview

Putting this all together - we will create a workflow, which looks like this:

Generative AI video workflow

1) We will use prompt engineering techniques to create input for Amazon Nova Micro, asking it to generate JSON metadata for the video, including category, title, slug (id), description and prompts for other foundation models and services to generate thumbnail, audio and video.

2) Output from Amazon Nova Micro will look like this:

{
  "category": "Video category",
  "title": "Video title",
  "slug": "video-title",
  "description": "Video description",
  "thumbnail": "Prompt for Amazon Nova Canvas",
  "video": "Prompt for Amazon Nova Reel",
  "audio": "Text for Amazon Polly"
}

3) We will use "thumbnail": "Prompt for Amazon Nova Canvas" from step 2 as an input for Amazon Nova Canvas to generate 3 thumbnails. One of them (arbitrary selected) will be image input for Amazon Nova Reel to generate a video

4) We will use "audio": "Text for Amazon Polly" from step 2) as an input for Amazon Polly to generate voice-over narration audio.

5) We will use "video": "Prompt for Amazon Nova Reel" from step 2 as an input for Amazon Nova Reel, together with one of the thumbnails from step 3) to generate a video.

6) We will use Apple iMovie to merge audio from step 4 with video from step 5 and produce a final video with an audio track.

Let's try it

Prerequisites

Not all foundation models in Amazon Bedrock are supported in all regions, so if you can't find Amazon Nova models in your AWS region of choice - you can switch to US East (N. Virginia) us-east-1 region.

Models have to also be enabled before you use them. Scroll down the left sidebar to the very bottom and select Bedrock configurations -> Model access -> Modify model access and enable Nova Reel, Nova Micro, Nova Canvas models.

Amazon Bedrock enable models

Prompt

Prompt engineering is process of developing, designing and optimising prompts to enhance the output of FM (Foundation Model) to our needs.

Improved prompting technique consists of:

  • Instruction - a task for the model to do
  • Context - external information to guide the model
  • Input data - the input for which you want a response
  • Output indicator - the output type or format

After some experiments I ended up with prompt like this:

Instruction:
Generate an example video metadata for a given [CATEGORY]
and [TOPIC] suggestion (if provided). Output should be in
a JSON format, with the following kay-value pairs

- category: provided category in the input
- title: video title
- slug: title slug
- description: video description
- thumbnail: prompt for Amazon Nova Canvas model, which will generate video thumbnail
- video: prompt for Amazon Nova Reel, which will generate video (based on that prompt and generated thumbnail)
- audio: text for Amazon Polly, which will be synthesised into speech and will be part of the video's audio track
  Make all parts of the metadata are concise, consistent and easily understandable by a 12 year old child. Make sure that video is exactly 6 seconds long and synthesised audio is 5 seconds long. Video script should be simple but engaging animation with a moving parts and changing lights. Don't add any statistics or text overlays to the thumbnail or video.

Context:  
This video content will be used on YouTube clone, which is an educational software engineering project. The video content will be used to showcase the capabilities of the platform.

Examples:

Input:
[CATEGORY] is "Autos & Vehicles"
Output:
{
  "category": "Autos & Vehicles",
  "title": "Magic Wheels: The Future of Cars",
  "slug": "magic-wheels-the-future-of-cars",
  "description": "Discover how cars of the future will move with magic wheels! Watch the cool animation of a car zooming around with flashing lights and see how it might change our rides!",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a futuristic car with spinning 'magic wheels' and flashing lights. The car should be zooming through a bright, neon-lit futuristic cityscape.",
  "video": "Generate a 6-second dynamic video with a futuristic car featuring magic wheels that spin and emit flashing lights. The car zooms through a vibrant, neon-lit city with animated movement and bright colors. The scene should be fast-paced and full of energy.",
  "audio": "Welcome to the future of cars! Watch this dynamic future car with magic wheels zooming through a vibrant city."
}

Input:
[CATEGORY] is "Nonprofits & Activism"

Output:

It's not perfect, but good enough for our use case. It's important to note that there are a few prompt engineering techniques e.g.

Enhanced prompt
  • Instruction

Generate an example video metadata for a given [CATEGORY]
and [TOPIC] suggestion (if provided)
...
Make all parts of the metadata are concise, consistent and easily understandable by a 12 year old child. Make sure that video is exactly 6 seconds long and synthesised audio is 5 seconds long. Video script should be simple but engaging animation with a moving parts and changing lights.

  • Output indicator

Output should be in a JSON format, with the following kay-value pairs
...

  • category: provided category in the input
  • title: video title
  • slug: title slug
  • description: video description
  • thumbnail: prompt for Amazon Nova Canvas model, which will generate video thumbnail
  • video: prompt for Amazon Nova Reel, which will generate video (based on that prompt and generated thumbnail)
  • audio: text for Amazon Polly, which will be synthesised into speech and will be part of the video's audio track
  • Context

This video content will be used on YouTube clone, which is an educational software engineering project. The video content will be used to showcase the capabilities of the platform.

  • Input

[CATEGORY] is "Nonprofits & Activism"

Negative prompting

A technique where you explicitly instruct the model on what not to include or do in the response.

Don't add any statistics or text overlays to the thumbnail or video.

Few-shot prompting

Provide examples of a task to the model to guide its output. I used one example (one-shot prompting). Probably I could get better results providing more examples, but it was good enough for now.

Input:
[CATEGORY] is "Autos & Vehicles"
Output:
{
"category": "Autos & Vehicles",
"title": "Magic Wheels: The Future of Cars",
"slug": "magic-wheels-the-future-of-cars",
"description": "Discover how cars of the future will move with magic wheels! Watch the cool animation of a car zooming around with flashing lights and see how it might change our rides!",
"thumbnail": "Create a dynamic and colorful thumbnail showcasing a futuristic car with spinning 'magic wheels' and flashing lights. The car should be zooming through a bright, neon-lit futuristic cityscape.",
"video": "Generate a 6-second dynamic video with a futuristic car featuring magic wheels that spin and emit flashing lights. The car zooms through a vibrant, neon-lit city with animated movement and bright colors. The scene should be fast-paced and full of energy.",
"audio": "Welcome to the future of cars! Watch this dynamic future car with magic wheels zooming through a vibrant city."
}

Prompt templates

Templates simplify and standardize the process of generating prompts.

Generate an example video metadata for a given [CATEGORY]
and [TOPIC] suggestion (if provided)
...
[CATEGORY] is "Nonprofits & Activism"

Amazon Nova Micro

We can access Amazon Nova Micro foundation model using Chat/Text playground. Choose "Single prompt" mode from the dropdown. Then click "Select model" and choose Amazon category, Nova Micro model and On-demand inference (which is pay-as-you-go model, where you are charged based on the number of input and output tokens processed for each request).

Amazon Nova Micro model

Let's also adjust some inference parameters which are located in the "Configurations" segment on the left. There are at least two interesting sections:

  • Randomness and diversity
  • Length

I increased the "Response length" parameter to 1024, because the default setting of 512 was not enough for our video metadata JSON output.

I also increased "Temperature" and "Top P" parameters to a maximum value of 1 to make model responses more random, diverse and creative.

Let's now paste our prompt and modify input category to "Sports" like this:

Input:
[CATEGORY] is "Sports"

Amazon Nova Micro

Here is JSON video metadata output generated by the Amazon Nova Micro foundation model:

{
  "category": "Sports",
  "title": "Amazing Soccer Tricks",
  "slug": "amazing-soccer-tricks",
  "description": "Watch this cool soccer player do amazing tricks on the field! See how he spins the ball and makes it move in crazy ways!",
  "thumbnail": "Create a dynamic and colorful thumbnail showing a soccer player doing a spinning trick with the ball, surrounded by flashing lights and a vibrant soccer field.",
  "video": "Generate a 6-second dynamic video featuring a soccer player performing amazing tricks with the ball, including spins and flips. The scene should be fast-paced, full of energy, and colorful with animated movement and lights.",
  "audio": "Check out these amazing soccer tricks! The player spin and flip the ball in incredible ways!"
}

Amazon Nova Canvas

Now it's time to generate thumbnails using Amazon Nova Canvas.

We can access Amazon Nova Canvas foundation model using Image/Video playground. Click "Select model" and choose Amazon category, Nova Canvas model and On-demand inference.

Amazon Nova Canvas

Default inference parameters ("Configurations" segment on the left) are just fine. We want "Generate image" action with 3 images with 1280 x 720 size and 16:9 aspect ratio.

Let's use thumbnail prompt generated by Amazon Nova Micro:

Create a dynamic and colorful thumbnail showing a soccer player
doing a spinning trick with the ball, surrounded by flashing
lights and a vibrant soccer field.

Amazon Nova Canvas

Here are 3 thumbnails generated by the Amazon Nova Canvas foundation model:

Amazing Soccer Tricks thumbnails

Amazon Polly

Let's generate our audio track using Amazon Polly. Some voice engines were available only in certain AWS regions, so I switched to US East (N. Virginia) us-east-1 region.

I was trying different engines and voices, but for that one I used "Generative" engine (the most expressive and adaptive speech using Generative Al), "English, Indian" language variant and "Kajal, Female" voice.

Let's use audio input generated by Amazon Nova Micro:

Check out these amazing soccer tricks!
The player spin and flip the ball in incredible ways!

Amazon Polly

Here is an voice-over narration generated by the Amazon Polly:

Amazon Nova Reel

Now it's finally time to generate the video using Amazon Nova Reel.

We can access the Amazon Nova Reel foundation model using Image/Video playground. Click "Select model" and choose Amazon category, Nova Reel model and On-demand inference.

Amazon Nova Reel model

Let's also adjust some inference parameters which are located in the "Configurations" segment on the left.

"Generate video" action is already selected by default. One thing we have to provide is a reference image, which will be a start frame for our video. We will of course use one of the thumbnails generated by the Amazon Nova Canvas foundation model.

Let's also use video prompt generated by Amazon Nova Micro:

Generate a 6-second dynamic video featuring a soccer player
performing amazing tricks with the ball, including spins and flips.
The scene should be fast-paced, full of energy, and colorful with
animated movement and lights.

Amazon Nova Reel

Here are the video generated by the Amazon Nova Reel foundation model:

Definitely it's not perfect, but funny for sure - with all those strange movements of the soccer player body. Indeed he does the tricks in some "incredible ways" ;)

Apple iMovie

The last step will be to merge audio generated by Amazon Polly with video generated by Amazon Nova Reel.

We will use the Apple iMovie for that purpose. We just need to drag and drop both resources, place it on the timeline and export it.

Apple iMovie

Here is the final result:

Content

Here's a list of all the 32 generated videos.

Autos & Vehicles

Desert Motorcycle Adventure

Metadata
{
  "category": "Autos & Vehicles",
  "title": "Desert Motorcycle Adventure",
  "slug": "desert-motorcycle-adventure",
  "description": "Join us on a thrilling motorcycle ride through the desert! Watch this cool animation of a bike zooming across the sand with bright lights and see how it travels in the vast desert.",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a sleek motorcycle speeding through a vast desert with bright, flashing lights. The bike should be leaving a trail of sand and dust, with a dramatic sunset in the background.",
  "video": "Generate a 6-second dynamic video with a sleek motorcycle zooming across the desert. The bike's lights flash brightly as it speeds through the sand, leaving a trail of dust and sand. The scene should be fast-paced and full of energy, with a dramatic sunset in the background.",
  "audio": "Experience the thrill of a desert motorcycle ride! Watch this sleek bike zoom across the sand with bright, flashing lights and see how it conquers the vast desert."
}
Thumbnails

Desert Motorcycle Adventure

Audio

Video

Exploring the Magic of Motorhomes

Metadata
{
  "category": "Autos & Vehicles",
  "title": "Exploring the Magic of Motorhomes",
  "slug": "exploring-the-magic-of-motorhomes",
  "description": "Step inside a motorhome and see how it transforms into a magical home on wheels! Watch the cool animation of a motorhome zooming through the countryside with changing lights and see how it can be your home anywhere!",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a motorhome transforming into a magical home on wheels with spinning 'magic wheels' and flashing lights. The motorhome should be zooming through a bright, countryside landscape.",
  "video": "Generate a 6-second dynamic video with a motorhome featuring magic wheels that spin and emit flashing lights. The motorhome zooms through a vibrant countryside with animated movement and bright colors. The scene should be fast-paced and full of energy.",
  "audio": "Welcome to the magical world of motorhomes! Watch this motorhome with magic wheels zooming through a vibrant countryside."
}
Thumbnails

Exploring the Magic of Motorhomes

Audio

Video

Magic Wheels: The Future of Cars

Metadata
{
  "category": "Autos & Vehicles",
  "title": "Magic Wheels: The Future of Cars",
  "slug": "magic-wheels-the-future-of-cars",
  "description": "Discover how cars of the future will move with magic wheels! Watch the cool animation of a car zooming around with flashing lights and see how it might change our rides!",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a futuristic car with spinning 'magic wheels' and flashing lights. The car should be zooming through a bright, neon-lit futuristic cityscape.",
  "video": "Generate a 6-second dynamic video with a futuristic car featuring magic wheels that spin and emit flashing lights. The car zooms through a vibrant, neon-lit city with animated movement and bright colors. The scene should be fast-paced and full of energy.",
  "audio": "Welcome to the future of cars! Watch this dynamic future car with magic wheels zooming through a vibrant city."
}
Thumbnails

Magic Wheels: The Future of Cars

Audio

Video

Mud Monster Truck Adventure

Metadata
{
  "category": "Autos & Vehicles",
  "title": "Mud Monster Truck Adventure",
  "slug": "mud-monster-truck-adventure",
  "description": "Join us on an offroad adventure with a monster truck in the mud! Watch the cool animation of a truck bouncing through muddy terrain with big, powerful wheels.",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a monster truck in the mud with big, powerful spinning wheels and splashing mud. The truck should be in a muddy terrain with bright, vibrant colors.",
  "video": "Generate a 6-second dynamic video with a monster truck featuring big, powerful spinning wheels that splash mud. The truck bounces through muddy terrain with animated movement and bright colors. The scene should be fast-paced and full of energy.",
  "audio": "Experience the thrill of an offroad monster truck adventure in the mud! Watch this powerful truck with big, spinning wheels bouncing through muddy terrain."
}
Thumbnails

Mud Monster Truck Adventure

Audio

Video

Education

Learning with Fun: The Magic of Numbers

Metadata
{
  "category": "Education",
  "title": "Learning with Fun: The Magic of Numbers",
  "slug": "learning-with-fun-the-magic-of-numbers",
  "description": "Join us in an exciting adventure where numbers come to life! Watch the fun animation of numbers dancing and playing in a magical world.",
  "thumbnail": "Create a colorful and playful thumbnail featuring dancing numbers and magical lights in a bright, whimsical background. The numbers should look like they're having fun and playing together.",
  "video": "Generate a 6-second fun video with animated numbers dancing and playing in a magical world. The numbers should move in a lively and colorful scene, with changing lights and engaging animations. No text or statistics should be added.",
  "audio": "Welcome to the magical world of numbers! Watch these numbers dance and play in a fun and colorful adventure."
}
Thumbnails

Learning with Fun: The Magic of Numbers

Audio

Video

Learning with Fun: The Magic of Science

Metadata
{
  "category": "Education",
  "title": "Learning with Fun: The Magic of Science",
  "slug": "learning-with-fun-the-magic-of-science",
  "description": "Join us on a fun journey through science! Watch an exciting animation of a magical science experiment that changes colors and moves with amazing energy!",
  "thumbnail": "Create a colorful and dynamic thumbnail featuring a magical science experiment with glowing, colorful particles swirling around in a bright, futuristic lab setting.",
  "video": "Generate a 6-second dynamic video with a magical science experiment that features glowing, colorful particles swirling and changing colors. The scene should be fast-paced and full of energy, with animated movement and bright colors.",
  "audio": "Welcome to the magic of science! Watch this colorful experiment with glowing particles swirling in a futuristic lab."
}
Thumbnails

Learning with Fun: The Magic of Science

Audio

Video

Rocket Science: Blast Off!

Metadata
{
  "category": "Education",
  "title": "Rocket Science: Blast Off!",
  "slug": "rocket-science-blast-off",
  "description": "Learn about rocket science with this fun animation! Watch a rocket zoom into space with bright lights and see how it might change our future!",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a rocket blasting off into space with bright lights and trails. The rocket should be surrounded by stars and a vibrant, colorful sky.",
  "video": "Generate a 6-second dynamic video with a rocket blasting off into space. The rocket features bright lights and trails that emit colorful sparks. The scene should be fast-paced and full of energy, showing the rocket soaring through the sky with animated movements.",
  "audio": "Welcome to rocket science! Watch this rocket blast off into space with bright lights and colorful trails."
}
Thumbnails

Rocket Science: Blast Off!

Audio

Video

The Magic of Magnets

Metadata
{
  "category": "Education",
  "title": "The Magic of Magnets",
  "slug": "the-magic-of-magnets",
  "description": "Learn about magnets in this fun and engaging 6-second video! Watch as a magnet attracts metal objects with cool lights and see how it works!",
  "thumbnail": "Create a colorful and dynamic thumbnail showing a magnet with glowing lines attracting metal objects like a paper clip and a nail. The background should have a bright, futuristic look.",
  "video": "Generate a 6-second dynamic video with a magnet that has glowing lines attracting metal objects like a paper clip and a nail. The magnet should move around with bright, colorful lights and animated movement. The scene should be fast-paced and full of energy.",
  "audio": "Discover the magic of magnets! Watch how they attract metal objects with bright lights and see how they work!"
}
Thumbnails

The Magic of Magnets

Audio

Video

Gaming

Chess Showdown: The Ultimate Battle

Metadata
{
  "category": "Gaming",
  "title": "Chess Showdown: The Ultimate Battle",
  "slug": "chess-showdown-the-ultimate-battle",
  "description": "Watch an exciting chess game unfold! See the pieces moving in a thrilling match with flashing lights and dynamic movements.",
  "thumbnail": "Create a vibrant thumbnail showing two players in an intense chess match with glowing pieces and flashing lights. The scene should be dynamic and full of energy.",
  "video": "Generate a 6-second dynamic video of an intense chess game with glowing pieces and flashing lights. The pieces move in a thrilling match, creating a fast-paced and energetic scene.",
  "audio": "Join the ultimate chess showdown! Watch the pieces move in a thrilling match with glowing lights and dynamic movements."
}
Thumbnails

Chess Showdown: The Ultimate Battle

Audio

Video

Retro Platformer Adventure

Metadata
{
  "category": "Gaming",
  "title": "Retro Platformer Adventure",
  "slug": "retro-platformer-adventure",
  "description": "Step into the world of classic platform games! Watch this fun animation of a character jumping over obstacles in a retro-style game world.",
  "thumbnail": "Create a vibrant thumbnail featuring a classic platformer character jumping over obstacles with pixel art style. Include colorful background elements like platforms and enemies.",
  "video": "Generate a 6-second engaging video with a classic platformer character jumping over obstacles in a retro-style game world. The scene should have animated movement, colorful platforms, and simple enemies. The animation should be fast-paced and full of energy.",
  "audio": "Welcome to the classic platformer adventure! Watch the character jump and dodge obstacles in this retro-style game world."
}
Thumbnails

Retro Platformer Adventure

Audio

Video

RTS Battle: Strategy in Action

Metadata
{
  "category": "Gaming",
  "title": "RTS Battle: Strategy in Action",
  "slug": "rts-battle-strategy-in-action",
  "description": "Step into the world of real-time strategy games! Watch this 6-second animation of a thrilling battle where armies clash with dynamic strategies and fast-paced action.",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a real-time strategy game scene. Show two armies clashing with soldiers, tanks, and flying units in mid-action. Use bright colors and flashy effects to highlight the intense battle.",
  "video": "Generate a 6-second dynamic video featuring a real-time strategy game battle. Show armies clashing with soldiers, tanks, and flying units. Include animated movements, changing strategies, and bright, flashy effects to highlight the fast-paced action.",
  "audio": "Join the real-time strategy battle! Watch as armies clash with dynamic strategies and fast-paced action in this thrilling 6-second animation."
}
Thumbnails

RTS Battle: Strategy in Action

Audio

Video

Tetris: The Classic Block Puzzle

Metadata
{
  "category": "Gaming",
  "title": "Tetris: The Classic Block Puzzle",
  "slug": "tetris-the-classic-block-puzzle",
  "description": "Explore the timeless world of Tetris! Watch an exciting 6-second animation of classic Tetris blocks falling and fitting together in a fun, colorful scene.",
  "thumbnail": "Create a vibrant and energetic thumbnail featuring classic Tetris blocks in motion, with bright colors and a dynamic background. Show a few blocks falling and fitting together in a neat row.",
  "video": "Generate a 6-second engaging video showcasing the classic Tetris game. Animate Tetris blocks falling and fitting together in a colorful, fast-paced scene. The blocks should move smoothly and create neat rows as they fit.",
  "audio": "Welcome to the classic Tetris! Watch the blocks fall and fit together in this exciting, colorful game."
}
Thumbnails

Tetris: The Classic Block Puzzle

Audio

Video

Howto & Style

Easy Soup Cooking Fun

Metadata
{
  "category": "Howto & Style",
  "title": "Easy Soup Cooking Fun",
  "slug": "easy-soup-cooking-fun",
  "description": "Learn how to cook a simple and delicious soup with this fun and easy animation! Watch the steps to make soup in a playful and engaging way.",
  "thumbnail": "Create a cheerful and colorful thumbnail showing a pot of soup with steam rising, surrounded by fun kitchen utensils like a spoon and a whisk. The background should be a bright, happy kitchen.",
  "video": "Generate a 6-second engaging video showing a simple soup cooking process with fun animations. Start with ingredients like carrots and potatoes in a pot, then add water and stir. The pot should bubble with colorful steam and playful movements. The scene should be lively and easy to follow.",
  "audio": "Let's cook a simple soup together! Watch the fun ingredients come together in a bubbling pot."
}
Thumbnails

Easy Soup Cooking Fun

Audio

Video

Fashion Forward: Catwalk Chic

Metadata
{
  "category": "Howto & Style",
  "title": "Fashion Forward: Catwalk Chic",
  "slug": "fashion-forward-catwalk-chic",
  "description": "Step into the world of high fashion! Watch a model showcase a stunning outfit on the catwalk. See the elegance and style as the model walks with confidence.",
  "thumbnail": "Create a vibrant and stylish thumbnail showcasing a model in a chic outfit walking down a catwalk. The model should be in a glamorous pose with bright lights and a stylish background.",
  "video": "Generate a 6-second dynamic video featuring a model presenting a chic outfit on a catwalk. The model walks gracefully with elegant movements and changing lights. The scene should be stylish and full of energy.",
  "audio": "Discover catwalk chic! Watch this model in a stylish outfit walking with confidence and elegance."
}
Thumbnails

Fashion Forward: Catwalk Chic

Audio

Video

Hair Magic: A Girl's New Haircut

Metadata
{
  "category": "Howto & Style",
  "title": "Hair Magic: A Girl's New Haircut",
  "slug": "hair-magic-a-girls-new-haircut",
  "description": "Watch a magical haircut in action! See how a hairdresser cuts a girl's hair with fun, colorful magic. The scene is full of bright colors and exciting movements.",
  "thumbnail": "Create a vibrant thumbnail showing a hairdresser with colorful magic wands, cutting a girl's hair in a bright, playful setting. The girl has a big smile, and the hair is styled with fun, animated movements.",
  "video": "Generate a 6-second engaging video with a hairdresser using colorful magic wands to cut a girl's hair. The scene is full of bright colors and animated movements, with the girl smiling and the hair changing in a fun, magical way.",
  "audio": "Watch the magic of a new haircut! See how a hairdresser uses colorful magic to cut a girl's hair in a fun and exciting way."
}
Thumbnails

Hair Magic: A Girl's New Haircut

Audio

Video

How to Use a Yo-Yo: Fun Tricks for Beginners

Metadata
{
  "category": "Howto & Style",
  "title": "How to Use a Yo-Yo: Fun Tricks for Beginners",
  "slug": "how-to-use-a-yoyo-fun-tricks-for-beginners",
  "description": "Learn how to use a yo-yo with fun tricks! Watch this cool animation of a kid spinning a yo-yo with amazing tricks and see how you can start too!",
  "thumbnail": "Create a fun and colorful thumbnail showing a happy kid spinning a yo-yo with spinning parts and colorful tricks. The background should be bright and playful.",
  "video": "Generate a 6-second dynamic video with a kid spinning a yo-yo with fun tricks. The yo-yo spins and emits colorful lights. The scene should be fast-paced and full of energy.",
  "audio": "Welcome to the world of yo-yo! Watch this kid spin a yo-yo with fun tricks in a bright and colorful city."
}
Thumbnails

How to Use a Yo-Yo: Fun Tricks for Beginners

Audio

Video

Nonprofits & Activism

Charity Run: Running Together for a Cause

Metadata
{
  "category": "Nonprofits & Activism",
  "title": "Charity Run: Running Together for a Cause",
  "slug": "charity-run-running-together-for-a-cause",
  "description": "Join us in this fun charity run animation! Watch how people come together to run, smile, and support a great cause. The video shows a fast-paced, colorful run with happy participants and bright lights.",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a group of people running together with bright, flashing lights and a charity banner. The scene should be vibrant and energetic, set against a cheerful background.",
  "video": "Generate a 6-second dynamic video with a group of people running together in a charity run. The scene includes fast-paced animation with smiling faces, flashing lights, and colorful banners. The movement should be energetic and full of life.",
  "audio": "Join us in the charity run! Watch the energetic group of runners with bright lights and banners, coming together for a great cause."
}
Thumbnails

Charity Run: Running Together for a Cause

Audio

Video

Standing Up for Change: Peaceful Road Block

Metadata
{
  "category": "Nonprofits & Activism",
  "title": "Standing Up for Change: Peaceful Road Block",
  "slug": "standing-up-for-change-peaceful-road-block",
  "description": "See how people come together to make a difference with a peaceful road block. Watch the animation of people sitting on the road to stop car traffic and show their support for important causes!",
  "thumbnail": "Create a vibrant thumbnail showing a group of people sitting on the road with signs, blocking traffic in a peaceful manner. The scene should be set in a busy city street with bright colors and a clear message of activism.",
  "video": "Generate a 6-second engaging video with a group of people sitting on the road, blocking traffic in a peaceful way. The scene should feature animated movement, bright colors, and changing lights to show their support for important causes. No text overlays or statistics.",
  "audio": "Join us in standing up for change! Watch how people peacefully block traffic to make their voices heard for important causes."
}
Thumbnails

Standing Up for Change: Peaceful Road Block

Audio

Video

Street Volunteers: Collecting for a Cause

Metadata
{
  "category": "Nonprofits & Activism",
  "title": "Street Volunteers: Collecting for a Cause",
  "slug": "street-volunteers-collecting-for-a-cause",
  "description": "See how street volunteers collect money in a can for a good cause! Watch the fun animation of people helping each other and the bright lights of the city.",
  "thumbnail": "Create a colorful thumbnail showing street volunteers with cans collecting money, surrounded by bright city lights and animated movement. The volunteers should be smiling and happy.",
  "video": "Generate a 6-second dynamic video with street volunteers collecting money in cans, surrounded by bright city lights and animated movement. The scene should be fast-paced, full of energy, and show people helping each other.",
  "audio": "Meet the street volunteers! Watch them collect money for a good cause in the bright city lights. Join them in making a difference!"
}
Thumbnails

Street Volunteers: Collecting for a Cause

Audio

Video

Tree Guardians: Protecting Nature's Champions

Metadata
{
  "category": "Nonprofits & Activism",
  "title": "Tree Guardians: Protecting Nature's Champions",
  "slug": "tree-guardians-protecting-natures-champions",
  "description": "Meet the brave activists who stand firm, chained to trees to protect them from bulldozers. Watch the powerful animation of their dedication to saving our forests!",
  "thumbnail": "Create a striking thumbnail showing activists, with their hands chained to a tree, standing firm against a bulldozer. The scene is set in a lush forest with vibrant green trees and a bulldozer in the background. Use bright colors to highlight the activists' determination.",
  "video": "Generate a 6-second engaging animation of activists chained to trees, standing firm against a bulldozer. The scene shows the activists with determined faces, the trees with vibrant green leaves, and the bulldozer in the background. The animation should have dynamic movements and bright colors to convey the activists' courage and the urgency of the situation.",
  "audio": "Meet the tree guardians! Watch these brave activists stand firm, chained to trees, protecting our forests from bulldozers."
}
Thumbnails

Tree Guardians: Protecting Nature's Champions

Audio

Video

Pets & Animals

Dancing Pets: A Fun Animal Show

Metadata
{
  "category": "Pets & Animals",
  "title": "Dancing Pets: A Fun Animal Show",
  "slug": "dancing-pets-a-fun-animal-show",
  "description": "Watch cute animals dance in this fun animation! See how pets like dogs, cats, and birds move to the beat with colorful lights and happy music!",
  "thumbnail": "Create a colorful and lively thumbnail showing dancing pets like dogs, cats, and birds with glowing, spinning lights around them. The scene should be set in a bright, happy park with a cheerful atmosphere.",
  "video": "Generate a 6-second dynamic video featuring cute animals dancing to the beat with colorful lights and animated movements. The scene should be fast-paced, full of energy, and include happy, dancing pets with glowing effects.",
  "audio": "Join the fun with dancing pets! Watch how dogs, cats, and birds move to the beat with colorful lights and happy music."
}
Thumbnails

Dancing Pets: A Fun Animal Show

Audio

Video

Rattlesnake's Dance: A Wild Adventure

Metadata
{
  "category": "Pets & Animals",
  "title": "Rattlesnake's Dance: A Wild Adventure",
  "slug": "rattlesnakes-dance-wild-adventure",
  "description": "Watch a rattlesnake's mesmerizing dance in the wild! This 6-second animation shows a rattlesnake swaying and rattling its tail in a vibrant, sunny meadow.",
  "thumbnail": "Create a vivid thumbnail featuring a rattlesnake swaying gracefully in a sunny meadow, with its tail rattling and creating a dynamic visual effect. The background should be a bright, colorful meadow with wildflowers.",
  "video": "Generate a 6-second engaging animation of a rattlesnake swaying and rattling its tail in a vibrant, sunny meadow. The scene should be lively with colorful flowers and dynamic movement.",
  "audio": "Discover the rattlesnake's dance in the wild! Watch this fascinating creature swaying and rattling its tail in a sunny meadow."
}
Thumbnails

Rattlesnake's Dance: A Wild Adventure

Audio

Video

Snail's Slow and Steady Adventure

Metadata
{
  "category": "Pets & Animals",
  "title": "Snail's Slow and Steady Adventure",
  "slug": "snail-slow-and-steady-adventure",
  "description": "Join a snail on its slow but steady adventure through a garden! Watch the snail's journey with colorful flowers and gentle movements.",
  "thumbnail": "Create a peaceful and colorful thumbnail showing a snail moving slowly across a garden with blooming flowers and gentle sunlight. The snail should look happy and content.",
  "video": "Generate a 6-second video with a snail making its slow journey across a vibrant garden. The snail moves gracefully among colorful flowers, with gentle and smooth movements. The scene should be calm and full of nature's beauty.",
  "audio": "Meet the snail, taking its time on a slow and steady adventure through a beautiful garden. Watch its gentle journey among the flowers."
}
Thumbnails

Snail's Slow and Steady Adventure

Audio

Video

The Amazing World of Octopus!

Metadata
{
  "category": "Pets & Animals",
  "title": "The Amazing World of Octopus!",
  "slug": "the-amazing-world-of-octopus",
  "description": "Hey there! Today we're going to explore the amazing world of octopuses. Did you know that octopuses can change color and even disappear? Watch as this clever creature shows us its amazing tricks!",
  "thumbnail": "Create a dynamic and colorful thumbnail for a video titled 'The Amazing World of Octopus!' The thumbnail should feature a close-up of a bright, curious octopus using its tentacles to perform a trick, like changing color or hiding in a shell. The background should be vibrant with ocean elements like bubbles and seaweed to highlight the underwater environment.",
  "video": "Generate a 6-second dynamic video showcasing the amazing world of octopuses. Start with a close-up of a curious octopus in an underwater setting, using its tentacles to perform a color-changing trick. The octopus should smoothly transition through different colors and then quickly hide in a small shell. The video should have a playful and vibrant atmosphere with flashes of different colors to keep the audience engaged.",
  "audio": "Today we're going to explore the amazing world of octopuses. Did you know that octopuses can change color and even disappear?"
}
Thumbnails

The Amazing World of Octopus!

Audio

Video

Sports

Amazing Soccer Tricks

Metadata
{
  "category": "Sports",
  "title": "Amazing Soccer Tricks",
  "slug": "amazing-soccer-tricks",
  "description": "Watch this cool soccer player do amazing tricks on the field! See how he spins the ball and makes it move in crazy ways!",
  "thumbnail": "Create a dynamic and colorful thumbnail showing a soccer player doing a spinning trick with the ball, surrounded by flashing lights and a vibrant soccer field.",
  "video": "Generate a 6-second dynamic video featuring a soccer player performing amazing tricks with the ball, including spins and flips. The scene should be fast-paced, full of energy, and colorful with animated movement and lights.",
  "audio": "Check out these amazing soccer tricks! The player spin and flip the ball in incredible ways!"
}
Thumbnails

Amazing Soccer Tricks

Audio

Video

Classic Golf: The Art of the Swing

Metadata
{
  "category": "Sports",
  "title": "Classic Golf: The Art of the Swing",
  "slug": "classic-golf-the-art-of-the-swing",
  "description": "Step into the world of classic golf! Watch this fun animation of a golfer taking a perfect swing and hitting the ball into a beautifully designed golf course.",
  "thumbnail": "Create a dynamic and colorful thumbnail showcasing a golfer taking a powerful swing with a classic golf club, hitting a bright yellow ball. The scene should be set in a picturesque golf course with green grass and a clear blue sky.",
  "video": "Generate a 6-second dynamic video with a golfer taking a powerful swing and hitting a bright yellow ball into a beautifully designed golf course. The scene should be fast-paced, full of energy, and highlight the golfer's skill and the vibrant golf course.",
  "audio": "Welcome to the world of classic golf! Watch this golfer take a perfect swing and hit the ball into a beautiful golf course."
}
Thumbnails

Classic Golf: The Art of the Swing

Audio

Video

Retro Hockey: A Blast from the Past

Metadata
{
  "category": "Sports",
  "title": "Retro Hockey: A Blast from the Past",
  "slug": "retro-hockey-a-blast-from-the-past",
  "description": "Step into the retro world of hockey! Watch this fun animation of classic hockey games with spinning pucks and retro players. See how hockey has evolved over the years!",
  "thumbnail": "Create a vibrant thumbnail featuring a classic hockey game from the past. Show a retro hockey player with a spinning puck, surrounded by colorful, old-school hockey gear and a retro arena background.",
  "video": "Generate a 6-second engaging video with a retro hockey player spinning a puck across the ice. The scene includes classic hockey gear, retro players, and a nostalgic arena background. The animation should be fast-paced with bright colors and simple movements.",
  "audio": "Welcome to the retro world of hockey! Watch this classic game with a spinning puck and nostalgic players in action."
}
Thumbnails

Retro Hockey: A Blast from the Past

Audio

Video

Tennis Magic: The Spin of Champions

Metadata
{
  "category": "Sports",
  "title": "Tennis Magic: The Spin of Champions",
  "slug": "tennis-magic-the-spin-of-champions",
  "description": "Watch the magic of tennis with spinning balls and powerful serves! This animated video shows a tennis match with exciting spins and fast-moving shots.",
  "thumbnail": "Create a vibrant thumbnail featuring a tennis player hitting a powerful serve with a spinning ball, set against a bright, colorful tennis court. The ball should be glowing with energy.",
  "video": "Generate a 6-second dynamic video of a tennis match with a player hitting powerful, spinning serves. The ball should move quickly, with bright colors and animated effects. The scene should be fast-paced and full of energy.",
  "audio": "Experience the magic of tennis with spinning serves and powerful shots! Watch the player hit dynamic serves in this exciting tennis match."
}
Thumbnails

Tennis Magic: The Spin of Champions

Audio

Video

Travel & Events

Adventure Awaits: Mountain Hiking

Metadata
{
  "category": "Travel & Events",
  "title": "Adventure Awaits: Mountain Hiking",
  "slug": "adventure-awaits-mountain-hiking",
  "description": "Embark on a thrilling mountain hiking adventure! Watch this fun animation of hikers climbing up a mountain with stunning views and see how hiking can be an exciting journey!",
  "thumbnail": "Create a vibrant and exciting thumbnail featuring hikers climbing up a majestic mountain with stunning views and a clear blue sky. The hikers should be smiling and looking adventurous.",
  "video": "Generate a 6-second dynamic video with animated hikers climbing up a mountain with stunning views. The scene should be fast-paced, full of energy, and highlight the beauty of the mountain and the excitement of the hikers.",
  "audio": "Join the adventure! Watch hikers climb up a majestic mountain with stunning views. It's an exciting journey!"
}
Thumbnails

Adventure Awaits: Mountain Hiking

Audio

Video

City Adventure: Walking Tour

Metadata
{
  "category": "Travel & Events",
  "title": "City Adventure: Walking Tour",
  "slug": "city-adventure-walking-tour",
  "description": "Join us on a fun walking tour of a city! Watch the animation of a person exploring the city streets, parks, and landmarks on foot. See how exciting city tours can be!",
  "thumbnail": "Create a vibrant thumbnail showing a person walking through a city street, with parks and landmarks in the background. Use bright colors and dynamic poses to capture the excitement of the tour.",
  "video": "Generate a 6-second engaging video featuring a person walking through a city, exploring parks, and visiting landmarks. The animation should have moving parts and changing lights, with a fast-paced and energetic vibe.",
  "audio": "Embark on a city adventure! Watch this person explore the city streets, parks, and landmarks on foot. It's a fun and exciting walking tour!"
}
Thumbnails

City Adventure: Walking Tour

Audio

Video

Exploring Magical Festivals

Metadata
{
  "category": "Travel & Events",
  "title": "Exploring Magical Festivals",
  "slug": "exploring-magical-festivals",
  "description": "Join us on a journey to magical festivals around the world! Watch this fun animation to see colorful parades, dancing lights, and happy people celebrating together.",
  "thumbnail": "Create a vibrant and colorful thumbnail featuring a festival scene with dancing lights, colorful costumes, and people smiling and celebrating. The scene should be lively and full of joy.",
  "video": "Generate a 6-second dynamic video showcasing a magical festival with colorful parades, dancing lights, and happy people celebrating. The scene should be lively, full of energy, and filled with bright colors.",
  "audio": "Welcome to magical festivals around the world! Watch colorful parades, dancing lights, and happy people celebrating together."
}
Thumbnails

Exploring Magical Festivals

Audio

Video

Live from the Big Conference!

Metadata
{
  "category": "Travel & Events",
  "title": "Live from the Big Conference!",
  "slug": "live-from-the-big-conference",
  "description": "Join us at a big conference where experts share exciting ideas! Watch the lively speaker and see how people from around the world come together to learn and share.",
  "thumbnail": "Create a vibrant thumbnail showing a lively conference scene with a speaker on stage, surrounded by an engaged audience. Include colorful banners and a backdrop of a modern conference hall.",
  "video": "Generate a 6-second video featuring a lively conference scene. Show a speaker on stage with a dynamic presentation, surrounded by an enthusiastic audience. Include animated elements like moving slides and bright lights.",
  "audio": "Welcome to the big conference! Watch the lively speaker sharing exciting ideas with an engaged audience."
}
Thumbnails

Live from the Big Conference!

Audio

Video