Minimax logo
minimax/h3/t2v/trainer

Train a MiniMax H3 LoRA on your own captioned clips for pure text-to-video generation with matching audio.
Training
Commercial use

Input

Additional Settings

Customize your input with more control.

The cost of training depends on the number of steps. The formula is: 0.005 * steps. With 1000 steps, your request will cost $5.00.

Training history

Note: these are the most recent training requests. For the full history, check the requests tab.

MiniMax H3 Trainer — Text-to-Video-Audio (/text-to-video-audio)

Overview

The /text-to-video-audio endpoint trains a LoRA adapter for the MiniMax H3 (Hailuo-03) video+audio model on your own clips, so the model learns a new subject, character, object, or visual style that you can then summon at inference time with a text prompt. This endpoint trains the pure text-to-video objective: no keyframe conditioning is used, and the resulting LoRA is intended for H3's text-to-video mode.

Key features:

  • Learns a subject, object, or style from a small set of your own videos (or images).
  • Joint video + audio training: H3 generates soundtracks natively, and clips that have an audio track teach the LoRA the matching sound. Clips without audio simply train against silence — audio handling is automatic and per-clip, with nothing to configure.
  • Trains on videos or on still images.
  • Optional trigger phrase to activate the learned concept on demand.

Dataset Format

Provide a single .zip archive (linked via training_data_url) containing your clips and captions:

  • Videos: .mp4, .mov, .avi, .mkv
  • Images: .png, .jpg, .jpeg
  • Captions: a .txt file with the same base name as each media file (e.g. clip01.mp4 + clip01.txt).

Captions are required on this endpoint — every media file needs a matching .txt, or you must set a trigger_phrase (which then stands in as the caption for uncaptioned files). If neither is present the request fails with a 422. If you want caption-less training, use the /image-to-video-audio or /first-last-frame-to-video-audio endpoints instead.

The archive must contain only videos OR only images — mixed datasets are rejected. Aim for at least 10 files; more is generally better. Files in subfolders are fine — clips with the same name in different subfolders are kept distinct automatically.

Minimum clip length: with auto_scale_input off (the default), each video must already have at least number_of_frames frames (default 73, ≈ 3.0 s at 24 fps). Shorter clips are silently skipped, and if every clip is too short the request fails (422). Turn on auto_scale_input to resample shorter clips to the target frame count instead. This applies to video datasets only; images are single-frame and always usable.

Input Parameters Reference

Dataset
training_data_url (required)

Type: string

URL to the .zip archive of training clips and captions. See "Dataset Format" above.

trigger_phrase

Type: string Default: ""

A phrase prepended to every caption during training. At inference, including this phrase activates the learned concept. Leave empty when teaching a general style you always want applied.

Training Parameters
rank

Type: integer (one of 8, 16, 32, 64, 128) Default: 32

LoRA capacity. Higher values can capture more detail but use more memory and are more prone to overfitting on small datasets.

ValueUse Case
8–16Small datasets, subtle styles, lower risk of overfitting
32Balanced default
64–128Larger datasets or complex subjects with lots of variation
number_of_steps

Type: integer Default: 2000 (range 16000)

How many optimization steps to run. More steps means more learning but also more time and a higher chance of overfitting. Note that billing has a 100-step floor (see Billing).

learning_rate

Type: number Default: 0.0002

How aggressively the model updates each step. The default is a sensible starting point; raise it cautiously and lower it if results look unstable or degraded.

Video Configuration
number_of_frames

Type: integer Default: 73 (range 22124)

Frames per training clip. H3's video VAE requires frames % 17 == 5 — valid counts are 22, 39, 56, 73, 90, 107, 124. Other values are adjusted with 17 * (value // 17) + 5 and clamped to the supported range rather than using nearest-value rounding; for example, 100 becomes 90 while 123 becomes 124. Has no effect on image datasets.

frame_rate

Type: integer Default: 24 (range 860)

Target frames per second for training clips. H3's native output rate is a fixed 24 fps, so keep the default unless you have a specific reason to deviate.

resolution

Type: string (one of low, medium, high) Default: medium

Training resolution bucket. Combined with aspect_ratio this picks the exact pixel size:

Resolution21:916:94:31:13:49:16
low672×288512×288512×384512×512384×512288×512
medium896×384768×448672×512768×768512×672448×768
high1120×480960×544896×672960×960672×896544×960

H3's native output is 2K; LoRA training at these sub-native resolutions is standard practice across the video-trainer family and carries over to full-resolution inference.

aspect_ratio

Type: string (one of 21:9, 16:9, 4:3, 1:1, 3:4, 9:16) Default: 16:9

Aspect ratio for training clips — the same set the H3 API supports. See the table above.

auto_scale_input

Type: boolean Default: false

When true, videos are automatically fit to the target frame count and frame rate. No effect on image datasets.

split_input_into_scenes

Type: boolean Default: true

When true, videos longer than the duration threshold are automatically split into separate scenes (shots) before training.

split_input_duration_threshold

Type: number Default: 30.0 (range 1.060.0)

Videos longer than this many seconds are eligible for scene splitting.

Outputs

  • lora_file — the trained LoRA weights (.safetensors). This is the main artifact.
  • config_file — a small JSON containing the trigger phrase as instance_prompt and training_type set to t2va, for setting up inference.
  • debug_dataset — a downloadable archive of your preprocessed data, only present when debug_dataset is enabled.

The endpoint does not accept validation samples and does not return preview inference; evaluate the LoRA by loading it into the inference endpoint.

debug_dataset

Type: boolean Default: false

When enabled, returns an archive of the preprocessed training data so you can verify your videos, images, and captions were processed correctly before committing to a longer run. The archive includes preprocessing_report.json, a bounded summary of any dataset fallbacks.

strict_dataset

Type: boolean Default: false

Preprocessing always logs a summary when it substitutes silence for an unreadable or absent video soundtrack. Enable this option to reject those fallbacks with a 422 instead. Captions longer than 4,096 tokenizer tokens are rejected with a 422 in either mode, before the GPU-heavy encoders load.

Billing

A successful run is billed max(100, number_of_steps) step units at $0.00500 per step (category: training). The default 2,000-step run bills 2,000 units = $10.00; the 6,000-step maximum bills $30.00; requests under 100 steps are floored to 100 units = $0.50. Requests that fail before training completes (input-validation errors / HTTP 422, or dataset-download failures) are billed 0 units. If the training node is interrupted, the run resumes from its latest checkpoint under the same request — you are billed once, on completion.

How the Training Works

Pipeline Overview
  1. Preprocessing
    1. Your archive is downloaded and extracted.
    2. Media is matched to captions by file name.
    3. Each clip is resized and cropped to the chosen resolution bucket and (optionally) split into scenes.
    4. Video frames, audio, and captions are pre-encoded (video VAE, audio VAE, and H3's Qwen3-VL text encoder).
  2. Training — the LoRA is trained for number_of_steps on H3's packed video+audio+text sequence. Resume checkpoints are written continuously.
  3. Output — the final LoRA and config are uploaded.
What Happens to Your Data
  • Archive extraction: the .zip is unpacked; macOS __MACOSX metadata folders are ignored.
  • File matching: each media file is paired with the .txt of the same base name.
  • Video fitting: each clip is resized to fill the target resolution while keeping aspect ratio, then center-cropped to the exact bucket dimensions. With auto_scale_input, clips are resampled to the target frame rate and frame count.
  • Scene splitting: with split_input_into_scenes, clips longer than the threshold are cut into separate shots, each becoming its own training sample.
  • Captions: the trigger phrase (if any) is prepended to each caption. H3 conditions on captions verbatim — no chat template — so what you write is exactly what the model sees.
  • Audio: each clip's soundtrack is encoded and learned jointly with the video; clips without an audio track train against silence.
LoRA Training

A LoRA is a small set of adapter weights layered on top of the frozen base model — here, H3's attention projections. Training only updates these adapters, so the result is a compact file you load alongside the base H3 model at inference. The base model's general capabilities are preserved; the LoRA nudges it toward your subject or style.

Tips for Getting Good Results

Dataset Quality
  • Use at least 10 clips; 20–50 varied clips often work better for a robust concept.
  • Keep quality high: sharp, well-lit, representative footage. The LoRA reproduces whatever artifacts are common in your data.
  • For a subject/character/object, show it from multiple angles and in different contexts.
  • For a style, include varied content all sharing the same look.
  • If the soundtrack matters (ambience, foley, a signature sound), make sure the clips that carry it have clean audio — the LoRA learns sound and picture together.
Caption Best Practices
  • Describe what is actually in each clip, plainly and specifically.
  • Subject/object training: caption the subject with your trigger phrase plus a plain description, e.g. tronl0g0 a glowing blue logo spinning on a desk.
  • Style training: describe the content and let the style be learned implicitly; optionally use a style trigger phrase.

Good caption: a red sports car drives along a coastal highway at sunset Weak caption: car (too sparse to anchor the concept)

Trigger Phrases
  • For a specific subject/object/character, pick a rare, distinctive trigger token (e.g. tronl0g0) so it does not collide with words the model already knows, and include it in every caption.
  • For an always-on style, you can skip the trigger phrase entirely — but remember this endpoint then requires a .txt caption per file.
Scene Splitting and Captions

If split_input_into_scenes is on, one long video becomes several shorter clips that all share the original caption. If different parts of the video show different things, the shared caption may not describe each split accurately. For precise captions, pre-split your clips and disable scene splitting.

Inference Format Matching

Prompt the trained LoRA the same way you captioned it. If you trained with a trigger phrase, include that phrase at inference. If your captions were short and descriptive, short descriptive prompts will behave most predictably.

json
{
  "training_data_url": "https://example.com/my_dataset.zip",
  "trigger_phrase": "tronl0g0",
  "rank": 32,
  "number_of_steps": 2000,
  "learning_rate": 0.0002,
  "number_of_frames": 73,
  "frame_rate": 24,
  "resolution": "medium",
  "aspect_ratio": "16:9"
}
Diagnosing Issues
  • Underfitting (the concept barely appears): increase number_of_steps, raise rank, or improve caption quality.
  • No effect at all: confirm the trigger phrase is in your captions and in your inference prompts.
  • 422 about missing captions: every media file needs a .txt on this endpoint (or set a trigger_phrase).
  • Training fails on the dataset: check that the archive contains only videos or only images, and that captions match media base names.
Common Pitfalls
  • Mixing images and videos in one archive (not supported).
  • Frame counts that ignore the % 17 == 5 rule (they are snapped automatically — check the logs if durations look off).
  • Forgetting the trigger phrase at inference.