-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathautomatedVideo.ts
More file actions
442 lines (441 loc) · 13.9 KB
/
automatedVideo.ts
File metadata and controls
442 lines (441 loc) · 13.9 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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
import {defineField, defineType} from 'sanity'
import {HiOutlineVideoCamera} from 'react-icons/hi'
export default defineType({
name: 'automatedVideo',
title: 'Automated Video',
type: 'document',
icon: HiOutlineVideoCamera,
fields: [
defineField({
name: 'title',
title: 'Title',
type: 'string',
validation: (Rule) => Rule.required(),
}),
defineField({
name: 'slug',
title: 'Slug',
type: 'slug',
options: {
source: 'title',
},
validation: (Rule) => Rule.required(),
}),
defineField({
name: 'contentIdea',
title: 'Content Idea',
type: 'reference',
to: [{type: 'contentIdea'}],
}),
defineField({
name: 'script',
title: 'Script',
type: 'object',
fields: [
defineField({
name: 'hook',
title: 'Hook',
type: 'text',
validation: (Rule) => Rule.required(),
}),
defineField({
name: 'scenes',
title: 'Scenes',
type: 'array',
of: [
{
type: 'object',
fields: [
defineField({
name: 'sceneNumber',
title: 'Scene Number',
type: 'number',
}),
defineField({
name: 'narration',
title: 'Narration',
type: 'text',
validation: (Rule) => Rule.required(),
}),
defineField({
name: 'visualDescription',
title: 'Visual Description',
type: 'text',
}),
defineField({
name: 'bRollKeywords',
title: 'B-Roll Keywords',
type: 'array',
of: [{type: 'string'}],
}),
defineField({
name: 'durationEstimate',
title: 'Duration Estimate',
type: 'number',
}),
defineField({
name: 'sceneType',
title: 'Scene Type',
type: 'string',
options: {
list: [
{title: 'Narration', value: 'narration'},
{title: 'Code', value: 'code'},
{title: 'List', value: 'list'},
{title: 'Comparison', value: 'comparison'},
{title: 'Mockup', value: 'mockup'},
],
},
initialValue: 'narration',
}),
defineField({
name: 'code',
title: 'Code',
type: 'object',
hidden: ({parent}) => parent?.sceneType !== 'code',
fields: [
defineField({
name: 'snippet',
title: 'Code Snippet',
type: 'text',
}),
defineField({
name: 'language',
title: 'Language',
type: 'string',
options: {
list: [
{title: 'TypeScript', value: 'typescript'},
{title: 'JavaScript', value: 'javascript'},
{title: 'JSX', value: 'jsx'},
{title: 'TSX', value: 'tsx'},
{title: 'CSS', value: 'css'},
{title: 'HTML', value: 'html'},
{title: 'JSON', value: 'json'},
{title: 'Bash', value: 'bash'},
],
},
}),
defineField({
name: 'highlightLines',
title: 'Highlight Lines',
type: 'array',
of: [{type: 'number'}],
}),
],
}),
defineField({
name: 'list',
title: 'List',
type: 'object',
hidden: ({parent}) => parent?.sceneType !== 'list',
fields: [
defineField({
name: 'items',
title: 'Items',
type: 'array',
of: [{type: 'string'}],
validation: (Rule) => Rule.min(1),
}),
defineField({
name: 'icon',
title: 'Icon',
type: 'string',
description: 'Optional emoji icon, e.g. 🚀',
}),
],
}),
defineField({
name: 'comparison',
title: 'Comparison',
type: 'object',
hidden: ({parent}) => parent?.sceneType !== 'comparison',
fields: [
defineField({
name: 'leftLabel',
title: 'Left Label',
type: 'string',
}),
defineField({
name: 'rightLabel',
title: 'Right Label',
type: 'string',
}),
defineField({
name: 'rows',
title: 'Rows',
type: 'array',
of: [{
type: 'object',
fields: [
defineField({name: 'left', title: 'Left', type: 'string'}),
defineField({name: 'right', title: 'Right', type: 'string'}),
],
}],
}),
],
}),
defineField({
name: 'mockup',
title: 'Mockup',
type: 'object',
hidden: ({parent}) => parent?.sceneType !== 'mockup',
fields: [
defineField({
name: 'deviceType',
title: 'Device Type',
type: 'string',
options: {
list: [
{title: 'Browser', value: 'browser'},
{title: 'Phone', value: 'phone'},
{title: 'Terminal', value: 'terminal'},
],
},
}),
defineField({
name: 'screenContent',
title: 'Screen Content',
type: 'text',
description: 'Description of what appears on screen',
}),
],
}),
],
},
],
}),
defineField({
name: 'cta',
title: 'Call to Action',
type: 'text',
validation: (Rule) => Rule.required(),
}),
],
}),
defineField({
name: 'scriptQualityScore',
title: 'Script Quality Score',
type: 'number',
}),
defineField({
name: 'status',
title: 'Pipeline Status',
type: 'string',
description: 'Current stage in the automated video production pipeline',
options: {
list: [
{title: '1 - Draft', value: 'draft'},
{title: '1.5 - Researching', value: 'researching'},
{title: '1.6 - Research Complete', value: 'research_complete'},
{title: '1.7 - Infographics Generating', value: 'infographics_generating'},
{title: '1.8 - Enriching', value: 'enriching'},
{title: '2 - Script Ready', value: 'script_ready'},
{title: '3 - Audio Generation', value: 'audio_gen'},
{title: '4 - Rendering', value: 'rendering'},
{title: '5 - Video Generation', value: 'video_gen'},
{title: '6 - Uploading', value: 'uploading'},
{title: '7 - Published', value: 'published'},
{title: 'Flagged', value: 'flagged'},
],
},
initialValue: 'draft',
validation: (Rule) => Rule.required(),
}),
defineField({
name: 'audioFile',
title: 'Audio File',
type: 'file',
description: 'ElevenLabs TTS audio (MP3) — generated in step 3',
options: {
accept: 'audio/*',
},
}),
defineField({
name: 'audioUrl',
title: 'Audio URL',
type: 'url',
description: 'Direct URL to the audio file (auto-populated from audio asset)',
}),
defineField({
name: 'videoFile',
title: 'Video File (16:9)',
type: 'file',
description: 'Rendered main video (MP4) — generated in step 4',
options: {
accept: 'video/*',
},
}),
defineField({
name: 'videoUrl',
title: 'Video URL',
type: 'url',
description: 'Direct URL to the main video (auto-populated from video asset)',
}),
defineField({
name: 'shortFile',
title: 'Short Video File (9:16)',
type: 'file',
description: 'Rendered short video (MP4) — generated in step 4',
options: {
accept: 'video/*',
},
}),
defineField({
name: 'shortUrl',
title: 'Short URL',
type: 'url',
description: 'Direct URL to the short video (auto-populated from video asset)',
}),
defineField({
name: 'infographics',
title: 'Infographics',
type: 'array',
description: 'Research infographics from NotebookLM — reusable for blog posts and video b-roll',
of: [
{
type: 'image',
options: { hotspot: true },
fields: [
defineField({
name: 'alt',
title: 'Alt Text',
type: 'string',
description: 'Describe the infographic for accessibility',
}),
defineField({
name: 'caption',
title: 'Caption',
type: 'string',
description: 'Optional caption for display',
}),
],
},
],
}),
defineField({
name: 'renderData',
title: 'Render Data',
type: 'object',
description: 'Remotion Lambda render tracking data (auto-populated)',
fields: [
defineField({ name: 'mainRenderId', title: 'Main Render ID', type: 'string' }),
defineField({ name: 'shortRenderId', title: 'Short Render ID', type: 'string' }),
defineField({ name: 'bucketName', title: 'Bucket Name', type: 'string' }),
defineField({ name: 'startedAt', title: 'Started At', type: 'datetime' }),
],
hidden: true, // internal tracking, not for manual editing
}),
defineField({
name: 'youtubeId',
title: 'YouTube ID',
type: 'string',
}),
defineField({
name: 'youtubeShortId',
title: 'YouTube Short ID',
type: 'string',
}),
defineField({
name: 'scheduledPublishAt',
title: 'Scheduled Publish At',
type: 'datetime',
}),
defineField({
name: 'sponsorSlot',
title: 'Sponsor Slot',
type: 'reference',
to: [{type: 'sponsorLead'}],
}),
defineField({
name: 'researchNotebookId',
title: 'NotebookLM Notebook ID',
type: 'string',
description: 'UUID of the NotebookLM notebook used for research',
hidden: true,
}),
defineField({
name: 'researchTaskId',
title: 'Research Task ID',
type: 'string',
description: 'UUID of the NotebookLM deep research task',
hidden: true,
}),
defineField({
name: 'researchInteractionId',
title: 'Research Interaction ID',
type: 'string',
description: 'Gemini Deep Research interaction ID for polling via the Interactions API',
hidden: true,
}),
defineField({
name: 'researchData',
title: 'Research Data',
type: 'text',
description: 'JSON-serialized research payload from NotebookLM',
hidden: true,
}),
defineField({
name: 'infographicArtifactIds',
title: 'Infographic Artifact IDs',
type: 'array',
of: [{type: 'string'}],
description: 'NotebookLM artifact IDs for generated infographics',
hidden: true,
}),
defineField({
name: 'trendScore',
title: 'Trend Score',
type: 'number',
description: 'Score from trend discovery (0-100)',
}),
defineField({
name: 'trendSources',
title: 'Trend Sources',
type: 'string',
description: 'Comma-separated list of trend signal sources',
}),
defineField({
name: 'flaggedReason',
title: 'Flagged Reason',
type: 'text',
}),
defineField({
name: 'distributionLog',
title: 'Distribution Log',
type: 'array',
description: 'Tracks distribution step results for retry and debugging',
of: [
{
type: 'object',
fields: [
defineField({ name: 'step', title: 'Step', type: 'string' }),
defineField({ name: 'status', title: 'Status', type: 'string', options: { list: ['success', 'failed', 'skipped'] } }),
defineField({ name: 'error', title: 'Error', type: 'text' }),
defineField({ name: 'timestamp', title: 'Timestamp', type: 'datetime' }),
defineField({ name: 'result', title: 'Result', type: 'string', description: 'e.g. YouTube video ID, tweet ID' }),
],
},
],
hidden: true,
}),
],
orderings: [
{
title: 'Status',
name: 'statusAsc',
by: [{field: 'status', direction: 'asc'}],
},
{
title: 'Scheduled Publish Date',
name: 'scheduledPublishAtDesc',
by: [{field: 'scheduledPublishAt', direction: 'desc'}],
},
],
preview: {
select: {
title: 'title',
subtitle: 'status',
},
},
})