Model reference · open weights
MotionPro is an open-weight video model from HiDream-ai. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | HiDream-ai |
|---|---|
| Type | Video models |
| Task | Image→video |
| Based on | stabilityai/stable-video-diffusion-img2vid |
| Released | 2025-03-25 |
| Popularity | 0 downloads / month |
| Licence | Open weights |
About
🖥️ GitHub    |    🌐 Project Page    |   🤗 Hugging Face   |    📑 Paper    |    📖 PDF   
MotionPro: A Precise Motion Controller for Image-to-Video Generation
🔆 If you find MotionPro useful, please give a ⭐ for this repo, which is important to Open-Source projects. Thanks!
In this repository, we introduce MotionPro, an image-to-video generation model built on SVD. MotionPro learns object and camera motion control from in-the-wild video datasets (e.g., WebVid-10M) without applying special data filtering. The model offers the following key features:
Additionally, our repository provides more tools to benefit the research community's development.:
Clone the repo:
git clone https://github.com/HiDream-ai/MotionPro.git
Install dependencies:
conda create -n motionpro python=3.10.0
conda activate motionpro
pip install -r requirements.txt
| Models | Download Link | Notes |
|---|---|---|
| MotionPro | 🤗Huggingface | Supports both object and camera control. This is the default model mentioned in the paper. |
| MotionPro-Dense | 🤗Huggingface | Supports synchronized video generation when combined with MotionPro. MotionPro-Dense shares the same architecture as Motion, but the input conditions are modified to include: dense optical flow and per-frame visibility masks relative to the first frame. |
Download the model from HuggingFace at high speeds (30-75MB/s):
cd tools/huggingface_down
bash download_hfd.sh
This section of the code supports simultaneous object motion and camera motion control. We provide a user-friendly Gradio demo interface that allows users to control motion with simple brushing and dragging operations. The instructional video can be found in assets/demo.mp4 (please note the version of gradio).
python demo_sparse_flex_wh.py
When you expect all pixels to move (e.g., for camera control), you need to use the brush to fully cover the entire area. You can also test the demo using assets/logo.png.
Additionally, users can also generate controllable image-to-video results using pre-defined camera trajectories. Note that our model has not been trained on a specific camera control dataset. Test the demo using assets/sea.png.
python demo_sparse_flex_wh_pure_camera.py
By combining MotionPro and MotionPro-Dense, we can achieve the following functionalities:
pure_obj_motion.mp4 and pure_camera_motion.mp4, have been generated using the respective demos. By combining their motion flows and using the result as a condition for MotionPro-Dense, we obtain final_video. By pairing the same object motion with different camera motions, we can generate synchronized videos where the object motion remains consistent while the camera motion varies. More DetailsHere, you need to first download the model_weights of cotracker and place them in the tools/co-tracker/checkpoints directory.
python inference_dense.py --ori_video 'assets/cases/dog_pure_obj_motion.mp4' --camera_video 'assets/cases/dog_pure_camera_motion_1.mp4' --save_name 'syn_video.mp4' --ckpt_path 'MotionPro-Dense CKPT-PATH'
We have packaged several demo videos to help users debug the training code. Simply 🤗download, extract the files, and place them in the ./data directory.
Additionally, ./data/dot_single_video contains code for processing raw videos using DOT to generate the necessary conditions for training, making it easier for the community to create training datasets.
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys motionpro for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (motionpro below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/videos/generations \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"motionpro","prompt":"a drone shot over a forest"}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.