Image-Text-to-Video
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] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -269,8 +269,11 @@ TOKEN="<token>"
|
|
| 269 |
|
| 270 |
MiniMax platform:
|
| 271 |
|
| 272 |
-
|
| 273 |
-
-
|
|
|
|
|
|
|
|
|
|
| 274 |
|
| 275 |
The examples below encode local H3\-Base output files as Base64 Data URLs\. For production use, uploading the video to a publicly accessible URL and passing that URL as `base_video` is recommended\.
|
| 276 |
|
|
|
|
| 269 |
|
| 270 |
MiniMax platform:
|
| 271 |
|
| 272 |
+
API docs:
|
| 273 |
+
- Create H3-2K: use /video-generation-v2-create [EN-docs](http//platform.minimax.io/docs/api-reference/video-generation-v2-create), [CN-docs](http//platform.minimaxi.com/docs/api-reference/video-generation-v2-create)
|
| 274 |
+
- H3-Context-IR:use /video-generation-v2-h3-context-ir [EN-docs](http://platform.minimax.io/docs/api-reference/video-generation-v2-h3-context-ir), [CN-docs](http://platform.minimaxi.com/docs/api-reference/video-generation-v2-h3-context-ir)
|
| 275 |
+
- H3-Regenerate-2K:use /video-generation-v2-regeneration [EN-docs](http://platform.minimax.io/docs/api-reference/video-generation-v2-regeneration), [CN-docs](http://platform.minimaxi.com/docs/api-reference/video-generation-v2-regeneration)
|
| 276 |
+
|
| 277 |
|
| 278 |
The examples below encode local H3\-Base output files as Base64 Data URLs\. For production use, uploading the video to a publicly accessible URL and passing that URL as `base_video` is recommended\.
|
| 279 |
|