cineprompt 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -17
- package/data/field-values.json +1258 -1229
- package/package.json +19 -4
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
CLI tool for building structured AI video prompts and share links via [cineprompt.io](https://cineprompt.io).
|
|
4
4
|
|
|
5
|
-
Turn shot descriptions into optimized prompts for Sora, Runway, Kling, Veo, Seedance, and other AI video generators.
|
|
5
|
+
Turn shot descriptions into optimized prompts for Sora, Runway, Kling, Veo, Seedance, WAN, Grok Imagine, LTX, and other AI video generators.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -29,7 +29,7 @@ cineprompt auth cp_your_api_key_here
|
|
|
29
29
|
### Build a share link from state JSON
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
cineprompt build '{"mode":"single","complexity":"complex","subjectType":"
|
|
32
|
+
cineprompt build '{"mode":"single","complexity":"complex","subjectType":"character","fields":{"media_type":["cinematic"],"mood":["contemplative"],"genre":["drama"],"char_label":"A retired boxer","subject_description":"Weathered face, broken nose","setting":"interior","location_type":["apartment"],"env_time":"night","shot_type":"medium close-up","framing":["positioned left-third of frame"],"focal_length":"85mm","dof":"shallow depth of field, bokeh","movement_type":["static, locked-off"],"lighting_type":["practical lights"],"film_stock":["Kodak Vision3 500T 5219"],"color_grade":["desaturated"],"ambient":"Refrigerator hum, distant sirens"}}'
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
Output:
|
|
@@ -53,12 +53,12 @@ cat shot.json | cineprompt build
|
|
|
53
53
|
### Browse available fields
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
# List all
|
|
56
|
+
# List all 133 fields
|
|
57
57
|
cineprompt fields
|
|
58
58
|
|
|
59
59
|
# Show valid values for a specific field
|
|
60
|
-
cineprompt fields
|
|
61
|
-
cineprompt fields
|
|
60
|
+
cineprompt fields mood
|
|
61
|
+
cineprompt fields movement_type
|
|
62
62
|
cineprompt fields media_type
|
|
63
63
|
```
|
|
64
64
|
|
|
@@ -67,42 +67,60 @@ cineprompt fields media_type
|
|
|
67
67
|
```json
|
|
68
68
|
{
|
|
69
69
|
"mode": "single",
|
|
70
|
-
"complexity": "
|
|
70
|
+
"complexity": "complex",
|
|
71
71
|
"subjectType": "character",
|
|
72
72
|
"fields": {
|
|
73
73
|
"media_type": ["cinematic"],
|
|
74
|
-
"
|
|
74
|
+
"mood": ["nostalgic"],
|
|
75
|
+
"genre": ["drama"],
|
|
75
76
|
"char_label": "A weathered fisherman",
|
|
76
|
-
"subject_description": "Deep wrinkles, sun-damaged skin",
|
|
77
|
+
"subject_description": "Deep wrinkles, sun-damaged skin, calloused hands",
|
|
78
|
+
"expression": "quietly content",
|
|
79
|
+
"wardrobe": "Faded yellow slicker, wool cap",
|
|
80
|
+
"action_primary": "mending a net",
|
|
77
81
|
"setting": "exterior",
|
|
78
|
-
"location_type": "dock, pier",
|
|
82
|
+
"location_type": ["dock, pier"],
|
|
83
|
+
"custom_location": "A fog-wrapped fishing dock at dawn",
|
|
79
84
|
"env_time": "dawn, first light",
|
|
80
85
|
"weather": "fog",
|
|
81
86
|
"shot_type": "close-up",
|
|
82
|
-
"
|
|
87
|
+
"framing": ["positioned left-third of frame"],
|
|
88
|
+
"focal_length": "85mm",
|
|
83
89
|
"dof": "shallow depth of field, bokeh",
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
90
|
+
"movement_type": ["handheld"],
|
|
91
|
+
"lighting_type": ["daylight"],
|
|
92
|
+
"key_light": "Diffused morning light through fog",
|
|
93
|
+
"film_stock": ["Kodak Portra 400"],
|
|
94
|
+
"color_grade": ["desaturated"],
|
|
95
|
+
"sfx_environment": ["waves crashing, water ambience"],
|
|
96
|
+
"ambient": "Creaking dock, distant foghorn, gulls"
|
|
87
97
|
}
|
|
88
98
|
}
|
|
89
99
|
```
|
|
90
100
|
|
|
91
101
|
### Required fields
|
|
92
102
|
|
|
93
|
-
- **mode** — `"single"`
|
|
103
|
+
- **mode** — `"single"` or `"multi_shot"`
|
|
94
104
|
- **fields** — object mapping field names to values
|
|
95
105
|
|
|
96
106
|
### Optional fields
|
|
97
107
|
|
|
98
|
-
- **complexity** — `"simple"` (default) or `"complex"` (unlocks camera body, lens brand, film stock, color science)
|
|
108
|
+
- **complexity** — `"simple"` (default) or `"complex"` (unlocks camera body, lens brand, film stock, color science, environment layers)
|
|
99
109
|
- **subjectType** — `"character"`, `"object"`, `"vehicle"`, `"creature"`, `"landscape"`, or `"abstract"`
|
|
100
110
|
|
|
101
111
|
### Field types
|
|
102
112
|
|
|
103
|
-
- **Button fields** accept exact string values (use `cineprompt fields <name>` to see options)
|
|
113
|
+
- **Button fields** (93) accept exact string values (use `cineprompt fields <name>` to see options)
|
|
104
114
|
- **Array fields** accept multiple values: `"media_type": ["cinematic", "documentary"]`
|
|
105
|
-
- **
|
|
115
|
+
- **Text fields** (40) accept any string: `"subject_description": "whatever you want"`
|
|
116
|
+
|
|
117
|
+
## Modes
|
|
118
|
+
|
|
119
|
+
**Single Shot** — full cinematography control over one shot. 133 fields across subject, camera, lighting, color, environment, and sound.
|
|
120
|
+
|
|
121
|
+
**Multi-Shot** — sequence of shots with global settings + per-shot overrides. Recurring characters, 28 transition types.
|
|
122
|
+
|
|
123
|
+
**Frame → Motion** — dual-prompt workflow for img2vid. Build the frame first (image prompt), then direct the motion with quick-insert chips for camera moves, pacing, transitions, and directing cues.
|
|
106
124
|
|
|
107
125
|
## Use with AI agents
|
|
108
126
|
|
|
@@ -134,6 +152,7 @@ CINEPROMPT_API_KEY=cp_your_key cineprompt build '{"fields":{...}}'
|
|
|
134
152
|
|
|
135
153
|
- [CinePrompt](https://cineprompt.io) — prompt builder
|
|
136
154
|
- [Guides](https://cineprompt.io/guides) — articles on AI video prompting
|
|
155
|
+
- [Models](https://cineprompt.io/models) — AI video model comparison
|
|
137
156
|
- [Light Owl](https://lightowl.com) — production company behind CinePrompt
|
|
138
157
|
|
|
139
158
|
## License
|