rustmotion 0.7.0

A CLI tool that renders motion design videos from JSON scenarios. No browser, no Node.js — just a single Rust binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Rule: Use Even Dimensions for H.264

H.264 requires even width and height. Odd dimensions cause encoding failures.

**GOOD:**
```json
{ "video": { "width": 1080, "height": 1920 } }
```

**BAD:**
```json
{ "video": { "width": 1081, "height": 1921 } }
```

Common safe resolutions: `1080x1920`, `1920x1080`, `1080x1080`, `720x1280`, `1280x720`.