Image-Text-to-Video
MiniMax H3
Diffusers
Safetensors
text-to-video
image-to-video
video-to-video
text-to-audio-video
image-to-audio-video
image-text-to-audio-video
video-to-audio-video
audio-to-audio-video
audio-video-generation
multimodal
synchronized-audio-video
reference-to-audio-video
Instructions to use MiniMaxAI/MiniMax-H3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MiniMaxAI/MiniMax-H3 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MiniMaxAI/MiniMax-H3", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
Question about prompting on static elements
#81
by leonnn1 - opened
I am trying to build the prompts based on the official articles from Minimax-H3 but I have a question, I have this scenario that has static characters and elements on the start and end frames and I want to the leaves to blow and ignore the end image but only for the leaves. how can I do that?
I tried to make the leaves a subject and ask the model to ignore them from the second picture but so far, regardless of how I rephrase it, these elements keep static, is there a way to circumvent that?
leonnn1 changed discussion title from Question about prompting to Question about prompting on static elements