Skip to main content

AI Video Generation Software Development Kit


Orchestrate dozens of technologies and models

Easily use and mix the best-in-class video, image, voice, music and text AI generation models and processing technologies.

Build AI Video Generation Agents

Use Creative AI to automate video production and get the exact content you need for your use-case.

Accelerate and scale

With build-in parrallelization, scaling and control mechanisms, focus on the content you want to have, not on implementation.

What can Vikit.ai bring to my business ?

Accelerate development of your video generation app.

User inputs

if (text)
videoPrompts = PromptFactory(ml_gateway=gw).create_prompt_from_text(text)
if (audio)
videoPrompts = PromptFactory(ml_gateway=gw).create_prompt_from_audio(audio)
final_video = CompositeVideo()
for sub in videoPrompts.subtitles:
sub_video = CompositeVideo()
first_video = RawTextBasedVideo(sub.text).build()
second_video = RawTextBasedVideo(sub.text).build()
transition = SeineTransition(
source_video=first_video,
target_video=second_video,
)
sub_video.append_video(first_video).append_video(transition).append_video(second_video)
final_video.append_video(sub_video)
final_video.build()
 
Output videos
User inputs

if (text)
videoPrompts = PromptFactory(ml_gateway=gw)
.create_prompt_from_text(text)
if (audio)
videoPrompts = PromptFactory(ml_gateway=gw)
.create_prompt_from_audio(audio)
final_video = CompositeVideo()
for sub in videoPrompts.subtitles:
sub_video = CompositeVideo()
first_video = RawTextBasedVideo(sub.text)
.build()
second_video = RawTextBasedVideo(sub.text)
.build()
transition = SeineTransition(
source_video=first_video,
target_video=second_video,
)
sub_video.append_video(first_video)
.append_video(transition)
.append_video(second_video)
final_video.append_video(sub_video)
final_video.build()
Output videos