-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathvideos.json
More file actions
376 lines (376 loc) · 9.58 KB
/
videos.json
File metadata and controls
376 lines (376 loc) · 9.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
[
{
"id": "10ff5e12f01476a4",
"type": "tab",
"label": "Videos Example",
"disabled": false,
"info": "Videos example.\n\nThis flow shows the current OpenAI video surface in the same direct Node-RED style as the rest of the project:\n- create a video job from a prompt\n- create a reusable character from an uploaded clip\n- fetch a saved character\n- edit, extend, or remix a completed video\n- download a rendered asset such as the thumbnail or main video\n\nSome inject nodes include placeholder ids or file paths. Replace those with real values before running them against the API.",
"env": []
},
{
"id": "9f6f8594b3dcbf9f",
"type": "comment",
"z": "10ff5e12f01476a4",
"name": "Configure the red-marked nodes, then replace the placeholder ids and file paths where needed.",
"info": "Before running:\n- import the flow, then configure each red-marked `OpenAI API` node with your own `Service Host`\n- this example stores request data in `msg.ai` because each `OpenAI API` node is configured to `ai`\n- if your node uses the default property, move the same fields under `msg.payload`\n\nWhat this flow covers:\n- Sora video creation from a prompt\n- character creation from an uploaded video clip\n- character retrieval by id\n- edit, extend, and remix flows for completed videos\n- downloadable assets through `downloadVideoContent`",
"x": 470,
"y": 120,
"wires": []
},
{
"id": "0d4567126bfb0be9",
"type": "inject",
"z": "10ff5e12f01476a4",
"name": "Create Video",
"props": [
{
"p": "ai.prompt",
"v": "A calm sunrise over a coastal city, filmed like a quiet documentary opening shot.",
"vt": "str"
},
{
"p": "ai.model",
"v": "sora-2",
"vt": "str"
},
{
"p": "ai.seconds",
"v": "8",
"vt": "str"
},
{
"p": "ai.size",
"v": "1280x720",
"vt": "str"
}
],
"repeat": "",
"crontab": "",
"once": false,
"onceDelay": 0.1,
"topic": "",
"x": 180,
"y": 220,
"wires": [
[
"7f343de47d4a5e77"
]
]
},
{
"id": "7f343de47d4a5e77",
"type": "OpenAI API",
"z": "10ff5e12f01476a4",
"name": "Create Video",
"property": "ai",
"propertyType": "msg",
"service": "",
"method": "createVideo",
"x": 430,
"y": 220,
"wires": [
[
"d0dd9462465a1fb9"
]
]
},
{
"id": "8a31b2fbda8ad50f",
"type": "inject",
"z": "10ff5e12f01476a4",
"name": "Create Video Character",
"props": [
{
"p": "ai.name",
"v": "Lead Runner",
"vt": "str"
},
{
"p": "ai.video",
"v": "/path/to/character-source.mp4",
"vt": "str"
}
],
"repeat": "",
"crontab": "",
"once": false,
"onceDelay": 0.1,
"topic": "",
"x": 190,
"y": 300,
"wires": [
[
"4f690ee43af6b79f"
]
]
},
{
"id": "4f690ee43af6b79f",
"type": "OpenAI API",
"z": "10ff5e12f01476a4",
"name": "Create Video Character",
"property": "ai",
"propertyType": "msg",
"service": "",
"method": "createVideoCharacter",
"x": 450,
"y": 300,
"wires": [
[
"d0dd9462465a1fb9"
]
]
},
{
"id": "f37548d372420f56",
"type": "inject",
"z": "10ff5e12f01476a4",
"name": "Get Video Character",
"props": [
{
"p": "ai.character_id",
"v": "char_replace_me",
"vt": "str"
}
],
"repeat": "",
"crontab": "",
"once": false,
"onceDelay": 0.1,
"topic": "",
"x": 180,
"y": 380,
"wires": [
[
"d8e480cae6cf1f3b"
]
]
},
{
"id": "d8e480cae6cf1f3b",
"type": "OpenAI API",
"z": "10ff5e12f01476a4",
"name": "Get Video Character",
"property": "ai",
"propertyType": "msg",
"service": "",
"method": "getVideoCharacter",
"x": 440,
"y": 380,
"wires": [
[
"d0dd9462465a1fb9"
]
]
},
{
"id": "005ecdd640c0aa56",
"type": "inject",
"z": "10ff5e12f01476a4",
"name": "Edit Video",
"props": [
{
"p": "ai.prompt",
"v": "Keep the shot steady and give it a neon dusk color treatment.",
"vt": "str"
},
{
"p": "ai.video.id",
"v": "video_replace_me",
"vt": "str"
}
],
"repeat": "",
"crontab": "",
"once": false,
"onceDelay": 0.1,
"topic": "",
"x": 150,
"y": 460,
"wires": [
[
"2331b602ef6f5277"
]
]
},
{
"id": "2331b602ef6f5277",
"type": "OpenAI API",
"z": "10ff5e12f01476a4",
"name": "Edit Video",
"property": "ai",
"propertyType": "msg",
"service": "",
"method": "editVideo",
"x": 410,
"y": 460,
"wires": [
[
"d0dd9462465a1fb9"
]
]
},
{
"id": "2cafe14afce4e744",
"type": "inject",
"z": "10ff5e12f01476a4",
"name": "Extend Video",
"props": [
{
"p": "ai.prompt",
"v": "Continue the shot and let the city lights gradually come alive.",
"vt": "str"
},
{
"p": "ai.seconds",
"v": "16",
"vt": "str"
},
{
"p": "ai.video.id",
"v": "video_replace_me",
"vt": "str"
}
],
"repeat": "",
"crontab": "",
"once": false,
"onceDelay": 0.1,
"topic": "",
"x": 160,
"y": 540,
"wires": [
[
"5737bba9d132fa7d"
]
]
},
{
"id": "5737bba9d132fa7d",
"type": "OpenAI API",
"z": "10ff5e12f01476a4",
"name": "Extend Video",
"property": "ai",
"propertyType": "msg",
"service": "",
"method": "extendVideo",
"x": 420,
"y": 540,
"wires": [
[
"d0dd9462465a1fb9"
]
]
},
{
"id": "e4766ca3fb430312",
"type": "inject",
"z": "10ff5e12f01476a4",
"name": "Remix Video",
"props": [
{
"p": "ai.video_id",
"v": "video_replace_me",
"vt": "str"
},
{
"p": "ai.prompt",
"v": "Keep the structure, but make it feel warmer and more cinematic.",
"vt": "str"
}
],
"repeat": "",
"crontab": "",
"once": false,
"onceDelay": 0.1,
"topic": "",
"x": 160,
"y": 620,
"wires": [
[
"af2929abf2cf0fd8"
]
]
},
{
"id": "af2929abf2cf0fd8",
"type": "OpenAI API",
"z": "10ff5e12f01476a4",
"name": "Remix Video",
"property": "ai",
"propertyType": "msg",
"service": "",
"method": "remixVideo",
"x": 420,
"y": 620,
"wires": [
[
"d0dd9462465a1fb9"
]
]
},
{
"id": "da3d4e3ceef46c52",
"type": "inject",
"z": "10ff5e12f01476a4",
"name": "Download Thumbnail",
"props": [
{
"p": "ai.video_id",
"v": "video_replace_me",
"vt": "str"
},
{
"p": "ai.variant",
"v": "thumbnail",
"vt": "str"
}
],
"repeat": "",
"crontab": "",
"once": false,
"onceDelay": 0.1,
"topic": "",
"x": 180,
"y": 700,
"wires": [
[
"0f6f375ec4fc2f20"
]
]
},
{
"id": "0f6f375ec4fc2f20",
"type": "OpenAI API",
"z": "10ff5e12f01476a4",
"name": "Download Video Content",
"property": "ai",
"propertyType": "msg",
"service": "",
"method": "downloadVideoContent",
"x": 450,
"y": 700,
"wires": [
[
"d0dd9462465a1fb9"
]
]
},
{
"id": "d0dd9462465a1fb9",
"type": "debug",
"z": "10ff5e12f01476a4",
"name": "Videos Output",
"active": true,
"tosidebar": true,
"console": false,
"tostatus": false,
"complete": "true",
"targetType": "full",
"statusVal": "",
"statusType": "auto",
"x": 730,
"y": 340,
"wires": []
}
]