@twick/visualizer 0.0.1 → 0.14.2
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/.eslintrc.json +20 -20
- package/README.md +12 -12
- package/package.json +34 -31
- package/package.json.bak +34 -0
- package/src/animations/blur.tsx +60 -0
- package/src/animations/breathe.tsx +60 -0
- package/src/animations/fade.tsx +60 -0
- package/src/animations/photo-rise.tsx +66 -0
- package/src/animations/photo-zoom.tsx +73 -0
- package/src/animations/rise.tsx +118 -0
- package/src/animations/succession.tsx +77 -0
- package/src/components/frame-effects.tsx +188 -190
- package/src/components/track.tsx +237 -0
- package/src/controllers/animation.controller.ts +39 -0
- package/src/controllers/element.controller.ts +43 -0
- package/src/controllers/frame-effect.controller.tsx +30 -0
- package/src/controllers/text-effect.controller.ts +33 -0
- package/src/elements/audio.element.tsx +17 -0
- package/src/elements/caption.element.tsx +87 -0
- package/src/elements/circle.element.tsx +20 -0
- package/src/elements/icon.element.tsx +20 -0
- package/src/elements/image.element.tsx +53 -0
- package/src/elements/rect.element.tsx +22 -0
- package/src/elements/scene.element.tsx +29 -0
- package/src/elements/text.element.tsx +28 -0
- package/src/elements/video.element.tsx +55 -0
- package/src/frame-effects/circle.frame.tsx +103 -0
- package/src/frame-effects/rect.frame.tsx +103 -0
- package/src/global.css +11 -11
- package/src/helpers/caption.utils.ts +30 -40
- package/src/helpers/constants.ts +162 -158
- package/src/helpers/element.utils.ts +239 -85
- package/src/helpers/event.utils.ts +6 -0
- package/src/helpers/filters.ts +127 -127
- package/src/helpers/log.utils.ts +29 -32
- package/src/helpers/timing.utils.ts +110 -129
- package/src/helpers/types.ts +242 -146
- package/src/helpers/utils.ts +20 -0
- package/src/index.ts +6 -4
- package/src/live.tsx +16 -16
- package/src/project.ts +6 -6
- package/src/sample.ts +247 -449
- package/src/text-effects/elastic.tsx +39 -0
- package/src/text-effects/erase.tsx +58 -0
- package/src/text-effects/stream-word.tsx +60 -0
- package/src/text-effects/typewriter.tsx +59 -0
- package/src/visualizer.tsx +98 -78
- package/tsconfig.json +11 -10
- package/typedoc.json +14 -14
- package/vite.config.ts +15 -15
- package/src/components/animation.tsx +0 -7
- package/src/components/element.tsx +0 -344
- package/src/components/timeline.tsx +0 -225
package/src/sample.ts
CHANGED
|
@@ -1,450 +1,248 @@
|
|
|
1
|
-
export const sample = {
|
|
2
|
-
"input": {
|
|
3
|
-
"properties": {
|
|
4
|
-
"width": 720,
|
|
5
|
-
"height": 1280,
|
|
6
|
-
"video_format": "mp4",
|
|
7
|
-
"video_codec": "libx264",
|
|
8
|
-
"audio_codec": "aac",
|
|
9
|
-
"video_bitrate": "2500k",
|
|
10
|
-
"audio_bitrate": "128k",
|
|
11
|
-
"fps": 30
|
|
12
|
-
},
|
|
13
|
-
"backgroundMusic": "",
|
|
14
|
-
"backgroundMusicLevel": 1,
|
|
15
|
-
"bucket_name": "kifferai-assets",
|
|
16
|
-
"context": {
|
|
17
|
-
"scriptInput": {
|
|
18
|
-
"scriptStyle": "PRODUCT_DEMONSTRATION"
|
|
19
|
-
},
|
|
20
|
-
"requestId": "f5d5db7a-8911-4b28-9c3c-71d91c83ddda",
|
|
21
|
-
"campaignId": "campaign",
|
|
22
|
-
"productUrl": "",
|
|
23
|
-
"pageId": "page",
|
|
24
|
-
"userId": "b1436dea-50e1-7049-cf34-6e49702da72a",
|
|
25
|
-
"productName": "product",
|
|
26
|
-
"orgId": "a251d9971a55"
|
|
27
|
-
},
|
|
28
|
-
"basePath": "carlyn",
|
|
29
|
-
"
|
|
30
|
-
{
|
|
31
|
-
"id": "t-scene",
|
|
32
|
-
"type": "scene",
|
|
33
|
-
"elements": [
|
|
34
|
-
{
|
|
35
|
-
"id": "e-244f8d5a3bbc",
|
|
36
|
-
"type": "video",
|
|
37
|
-
"s": 0,
|
|
38
|
-
"e": 4.74,
|
|
39
|
-
"objectFit": "cover",
|
|
40
|
-
"props": {
|
|
41
|
-
"time": 8.428,
|
|
42
|
-
"src": "https://static-assets.kifferai.com/developmen/a251d9971a55/c436f351-ee9c-49c2-a26f-e7a7733c77ff/video_1746786031627-96448ec8-6430-4d4b-bb89-ebdbfeade7fa-normalized-1747225095191.mp4",
|
|
43
|
-
"play": true,
|
|
44
|
-
"decoder": "web",
|
|
45
|
-
"volume": 1,
|
|
46
|
-
"playbackRate": 2.4
|
|
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
|
-
"frame": {
|
|
249
|
-
"size": [
|
|
250
|
-
720,
|
|
251
|
-
1280
|
|
252
|
-
],
|
|
253
|
-
"layout": false,
|
|
254
|
-
"clip": "true"
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
]
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
"id": "t-795891203a03",
|
|
261
|
-
"type": "element",
|
|
262
|
-
"name": "element",
|
|
263
|
-
"elements": [
|
|
264
|
-
{
|
|
265
|
-
"id": "e-6c32ca5f728e",
|
|
266
|
-
"type": "text",
|
|
267
|
-
"s": 0.009,
|
|
268
|
-
"e": 4.691000000000001,
|
|
269
|
-
"t": "GOD WILL BREAK YOU",
|
|
270
|
-
"props": {
|
|
271
|
-
"fill": "#ffd700",
|
|
272
|
-
"font": {
|
|
273
|
-
"size": 48,
|
|
274
|
-
"family": "Poppins"
|
|
275
|
-
},
|
|
276
|
-
"fontSize": 54,
|
|
277
|
-
"fontFamily": "Impact",
|
|
278
|
-
"stroke": "#000000",
|
|
279
|
-
"lineWidth": 0.25,
|
|
280
|
-
"fontWeight": "bold",
|
|
281
|
-
"fontStyle": "Italic",
|
|
282
|
-
"rotation": 0,
|
|
283
|
-
"x": -11.306514773940933,
|
|
284
|
-
"y": 103.95475034024639
|
|
285
|
-
}
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"id": "e-39e2112fa735",
|
|
289
|
-
"type": "text",
|
|
290
|
-
"s": 4.824,
|
|
291
|
-
"e": 6.709,
|
|
292
|
-
"t": "BREAK YOU AGAIN",
|
|
293
|
-
"props": {
|
|
294
|
-
"fill": "#FFFFFF",
|
|
295
|
-
"font": {
|
|
296
|
-
"size": 48,
|
|
297
|
-
"family": "Poppins"
|
|
298
|
-
},
|
|
299
|
-
"fontSize": 54,
|
|
300
|
-
"fontFamily": "Impact",
|
|
301
|
-
"stroke": "#000000",
|
|
302
|
-
"lineWidth": 0.25,
|
|
303
|
-
"fontWeight": "bold",
|
|
304
|
-
"fontStyle": "normal",
|
|
305
|
-
"rotation": 0,
|
|
306
|
-
"x": 2.261302954788164,
|
|
307
|
-
"y": 128.8134949868271
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"id": "e-384f59e94253",
|
|
312
|
-
"type": "text",
|
|
313
|
-
"s": 4.904,
|
|
314
|
-
"e": 6.7059999999999995,
|
|
315
|
-
"t": "AND THEN",
|
|
316
|
-
"props": {
|
|
317
|
-
"fill": "#fffd70",
|
|
318
|
-
"font": {
|
|
319
|
-
"size": 48,
|
|
320
|
-
"family": "Poppins"
|
|
321
|
-
},
|
|
322
|
-
"fontSize": 54,
|
|
323
|
-
"fontFamily": "Impact",
|
|
324
|
-
"stroke": "#000000",
|
|
325
|
-
"lineWidth": 0.25,
|
|
326
|
-
"fontWeight": "bold",
|
|
327
|
-
"fontStyle": "Italic",
|
|
328
|
-
"rotation": 0,
|
|
329
|
-
"x": 0,
|
|
330
|
-
"y": 201.12984304960742
|
|
331
|
-
}
|
|
332
|
-
},
|
|
333
|
-
{
|
|
334
|
-
"id": "e-180cab9f1871",
|
|
335
|
-
"type": "text",
|
|
336
|
-
"s": 6.891,
|
|
337
|
-
"e": 9.343,
|
|
338
|
-
"t": "BREAK YOU ONCE AGAIN",
|
|
339
|
-
"props": {
|
|
340
|
-
"fill": "#ffd700",
|
|
341
|
-
"font": {
|
|
342
|
-
"size": 48,
|
|
343
|
-
"family": "Poppins"
|
|
344
|
-
},
|
|
345
|
-
"fontSize": 54,
|
|
346
|
-
"fontFamily": "Impact",
|
|
347
|
-
"stroke": "#000000",
|
|
348
|
-
"lineWidth": 0.25,
|
|
349
|
-
"fontWeight": "bold",
|
|
350
|
-
"fontStyle": "Italic",
|
|
351
|
-
"rotation": 0,
|
|
352
|
-
"x": 4.522605909576328,
|
|
353
|
-
"y": 81.35589157062759
|
|
354
|
-
}
|
|
355
|
-
},
|
|
356
|
-
{
|
|
357
|
-
"id": "e-7eada9ab2394",
|
|
358
|
-
"type": "text",
|
|
359
|
-
"s": 9.521,
|
|
360
|
-
"e": 10.993,
|
|
361
|
-
"t": "BUT",
|
|
362
|
-
"props": {
|
|
363
|
-
"fill": "#ffd700",
|
|
364
|
-
"font": {
|
|
365
|
-
"size": 48,
|
|
366
|
-
"family": "Poppins"
|
|
367
|
-
},
|
|
368
|
-
"fontSize": 54,
|
|
369
|
-
"fontFamily": "Impact",
|
|
370
|
-
"stroke": "#000000",
|
|
371
|
-
"lineWidth": 0.25,
|
|
372
|
-
"fontWeight": "bold",
|
|
373
|
-
"fontStyle": "Italic"
|
|
374
|
-
}
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
"id": "e-03039d49039b",
|
|
378
|
-
"type": "text",
|
|
379
|
-
"s": 11.171,
|
|
380
|
-
"e": 12.831999999999999,
|
|
381
|
-
"t": "IN THE END",
|
|
382
|
-
"props": {
|
|
383
|
-
"fill": "#ffd700",
|
|
384
|
-
"font": {
|
|
385
|
-
"size": 48,
|
|
386
|
-
"family": "Poppins"
|
|
387
|
-
},
|
|
388
|
-
"fontSize": 54,
|
|
389
|
-
"fontFamily": "Impact",
|
|
390
|
-
"stroke": "#000000",
|
|
391
|
-
"lineWidth": 0.25,
|
|
392
|
-
"fontWeight": "bold",
|
|
393
|
-
"fontStyle": "Italic",
|
|
394
|
-
"rotation": 0,
|
|
395
|
-
"x": 2.2613029547882206,
|
|
396
|
-
"y": 108.4745220941702
|
|
397
|
-
}
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"id": "e-91d44d6180f9",
|
|
401
|
-
"type": "text",
|
|
402
|
-
"s": 13.077,
|
|
403
|
-
"e": 16.543,
|
|
404
|
-
"t": "HE WILL MAKE YOU",
|
|
405
|
-
"props": {
|
|
406
|
-
"fill": "#FFFFFF",
|
|
407
|
-
"font": {
|
|
408
|
-
"size": 48,
|
|
409
|
-
"family": "Poppins"
|
|
410
|
-
},
|
|
411
|
-
"fontSize": 54,
|
|
412
|
-
"fontFamily": "Impact",
|
|
413
|
-
"stroke": "#000000",
|
|
414
|
-
"lineWidth": 0.25,
|
|
415
|
-
"fontWeight": "bold",
|
|
416
|
-
"fontStyle": "normal",
|
|
417
|
-
"rotation": 0,
|
|
418
|
-
"x": 0,
|
|
419
|
-
"y": 27.118630523542492
|
|
420
|
-
}
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
"id": "e-ebf12eac0207",
|
|
424
|
-
"type": "text",
|
|
425
|
-
"s": 13.811,
|
|
426
|
-
"e": 16.534,
|
|
427
|
-
"t": "UNSTOPPABLE",
|
|
428
|
-
"props": {
|
|
429
|
-
"fill": "#ffd700",
|
|
430
|
-
"font": {
|
|
431
|
-
"size": 48,
|
|
432
|
-
"family": "Poppins"
|
|
433
|
-
},
|
|
434
|
-
"rotation": 0,
|
|
435
|
-
"x": -6.783908864364491,
|
|
436
|
-
"y": 99.43497858632281,
|
|
437
|
-
"fontSize": 58,
|
|
438
|
-
"fontFamily": "Impact",
|
|
439
|
-
"stroke": "#000000",
|
|
440
|
-
"lineWidth": 0.25,
|
|
441
|
-
"fontWeight": "bold",
|
|
442
|
-
"fontStyle": "Italic"
|
|
443
|
-
}
|
|
444
|
-
}
|
|
445
|
-
]
|
|
446
|
-
}
|
|
447
|
-
]
|
|
448
|
-
},
|
|
449
|
-
"version": 1
|
|
1
|
+
export const sample = {
|
|
2
|
+
"input": {
|
|
3
|
+
"properties": {
|
|
4
|
+
"width": 720,
|
|
5
|
+
"height": 1280,
|
|
6
|
+
"video_format": "mp4",
|
|
7
|
+
"video_codec": "libx264",
|
|
8
|
+
"audio_codec": "aac",
|
|
9
|
+
"video_bitrate": "2500k",
|
|
10
|
+
"audio_bitrate": "128k",
|
|
11
|
+
"fps": 30
|
|
12
|
+
},
|
|
13
|
+
"backgroundMusic": "",
|
|
14
|
+
"backgroundMusicLevel": 1,
|
|
15
|
+
"bucket_name": "kifferai-assets",
|
|
16
|
+
"context": {
|
|
17
|
+
"scriptInput": {
|
|
18
|
+
"scriptStyle": "PRODUCT_DEMONSTRATION"
|
|
19
|
+
},
|
|
20
|
+
"requestId": "f5d5db7a-8911-4b28-9c3c-71d91c83ddda",
|
|
21
|
+
"campaignId": "campaign",
|
|
22
|
+
"productUrl": "",
|
|
23
|
+
"pageId": "page",
|
|
24
|
+
"userId": "b1436dea-50e1-7049-cf34-6e49702da72a",
|
|
25
|
+
"productName": "product",
|
|
26
|
+
"orgId": "a251d9971a55"
|
|
27
|
+
},
|
|
28
|
+
"basePath": "carlyn",
|
|
29
|
+
"tracks": [
|
|
30
|
+
{
|
|
31
|
+
"id": "t-scene",
|
|
32
|
+
"type": "scene",
|
|
33
|
+
"elements": [
|
|
34
|
+
{
|
|
35
|
+
"id": "e-244f8d5a3bbc",
|
|
36
|
+
"type": "video",
|
|
37
|
+
"s": 0,
|
|
38
|
+
"e": 4.74,
|
|
39
|
+
"objectFit": "cover",
|
|
40
|
+
"props": {
|
|
41
|
+
"time": 8.428,
|
|
42
|
+
"src": "https://static-assets.kifferai.com/developmen/a251d9971a55/c436f351-ee9c-49c2-a26f-e7a7733c77ff/video_1746786031627-96448ec8-6430-4d4b-bb89-ebdbfeade7fa-normalized-1747225095191.mp4",
|
|
43
|
+
"play": true,
|
|
44
|
+
"decoder": "web",
|
|
45
|
+
"volume": 1,
|
|
46
|
+
"playbackRate": 2.4
|
|
47
|
+
},
|
|
48
|
+
"animation": {
|
|
49
|
+
"name": "photo-zoom",
|
|
50
|
+
"interval": 1,
|
|
51
|
+
"mode": "out",
|
|
52
|
+
"animate": "both",
|
|
53
|
+
"direction": "top"
|
|
54
|
+
},
|
|
55
|
+
"frame": {
|
|
56
|
+
"size": [
|
|
57
|
+
720,
|
|
58
|
+
1280
|
|
59
|
+
],
|
|
60
|
+
"layout": false,
|
|
61
|
+
"clip": "true"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "e-ef2f208db319",
|
|
66
|
+
"type": "video",
|
|
67
|
+
"s": 4.74,
|
|
68
|
+
"e": 6.774,
|
|
69
|
+
"objectFit": "cover",
|
|
70
|
+
"props": {
|
|
71
|
+
"time": 0,
|
|
72
|
+
"src": "https://static-assets.kifferai.com/developmen/a251d9971a55/63e0e7c3-5939-41a2-95c7-4e47e8be1ebf/video_1746786032120-6e4ab84c-d0dd-401e-b5e8-13d49fd8fe67-normalized-1747225095053.mp4",
|
|
73
|
+
"play": true,
|
|
74
|
+
"decoder": "web",
|
|
75
|
+
"volume": 1,
|
|
76
|
+
"playbackRate": 2
|
|
77
|
+
},
|
|
78
|
+
"frame": {
|
|
79
|
+
"size": [
|
|
80
|
+
720,
|
|
81
|
+
1280
|
|
82
|
+
],
|
|
83
|
+
"layout": false,
|
|
84
|
+
"clip": "true"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "e-477f620c0ec7",
|
|
89
|
+
"type": "video",
|
|
90
|
+
"s": 6.774,
|
|
91
|
+
"e": 9.395,
|
|
92
|
+
"objectFit": "cover",
|
|
93
|
+
"props": {
|
|
94
|
+
"time": 18.222499999999997,
|
|
95
|
+
"src": "https://static-assets.kifferai.com/developmen/a251d9971a55/e66b4682-096d-46c5-b1b2-1e2e6a46fe8d/video_1746790653457-7e9e9a1d-9410-4bb3-bec1-7474fa88286c-normalized-1747225095442.mp4",
|
|
96
|
+
"play": true,
|
|
97
|
+
"decoder": "web",
|
|
98
|
+
"volume": 1,
|
|
99
|
+
"playbackRate": 2
|
|
100
|
+
},
|
|
101
|
+
"frame": {
|
|
102
|
+
"size": [
|
|
103
|
+
2292.281711648068,
|
|
104
|
+
1286.2247382025269
|
|
105
|
+
],
|
|
106
|
+
"layout": false,
|
|
107
|
+
"clip": "true",
|
|
108
|
+
"rotation": 0,
|
|
109
|
+
"x": 269.48206359326264,
|
|
110
|
+
"y": 6.293648227413769
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"name": "scene"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"id": "t-83fa5f365f7f",
|
|
118
|
+
"type": "audio",
|
|
119
|
+
"name": "audio",
|
|
120
|
+
"elements": [
|
|
121
|
+
{
|
|
122
|
+
"id": "e-50848c2d8271",
|
|
123
|
+
"type": "audio",
|
|
124
|
+
"s": 0,
|
|
125
|
+
"e": 10,
|
|
126
|
+
"props": {
|
|
127
|
+
"time": 0,
|
|
128
|
+
"src": "https://static-assets.kifferai.com/developmen/a251d9971a55/brand-music/Unstoppable-Reprise-909549aa-6807-482b-ab92-bce7e6834fe7.mp3",
|
|
129
|
+
"play": true
|
|
130
|
+
},
|
|
131
|
+
"frame": {
|
|
132
|
+
"size": [
|
|
133
|
+
720,
|
|
134
|
+
1280
|
|
135
|
+
],
|
|
136
|
+
"layout": false,
|
|
137
|
+
"clip": "true"
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "t-795891203a03",
|
|
144
|
+
"type": "element",
|
|
145
|
+
"name": "element",
|
|
146
|
+
"elements": [
|
|
147
|
+
{
|
|
148
|
+
"id": "e-6c32ca5f728e",
|
|
149
|
+
"type": "text",
|
|
150
|
+
"s": 0.009,
|
|
151
|
+
"e": 4.691000000000001,
|
|
152
|
+
"t": "GOD WILL BREAK YOU",
|
|
153
|
+
"textEffect": {
|
|
154
|
+
"name": "elastic",
|
|
155
|
+
"duration": 1,
|
|
156
|
+
},
|
|
157
|
+
"props": {
|
|
158
|
+
"fill": "#ffd700",
|
|
159
|
+
"font": {
|
|
160
|
+
"size": 48,
|
|
161
|
+
"family": "Poppins"
|
|
162
|
+
},
|
|
163
|
+
"fontSize": 54,
|
|
164
|
+
"fontFamily": "Impact",
|
|
165
|
+
"stroke": "#000000",
|
|
166
|
+
"lineWidth": 0.25,
|
|
167
|
+
"fontWeight": "bold",
|
|
168
|
+
"fontStyle": "Italic",
|
|
169
|
+
"rotation": 0,
|
|
170
|
+
"x": -11.306514773940933,
|
|
171
|
+
"y": 103.95475034024639
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"id": "e-39e2112fa735",
|
|
176
|
+
"type": "text",
|
|
177
|
+
"s": 4.824,
|
|
178
|
+
"e": 6.709,
|
|
179
|
+
"t": "BREAK YOU AGAIN",
|
|
180
|
+
"props": {
|
|
181
|
+
"fill": "#FFFFFF",
|
|
182
|
+
"font": {
|
|
183
|
+
"size": 48,
|
|
184
|
+
"family": "Poppins"
|
|
185
|
+
},
|
|
186
|
+
"fontSize": 54,
|
|
187
|
+
"fontFamily": "Impact",
|
|
188
|
+
"stroke": "#000000",
|
|
189
|
+
"lineWidth": 0.25,
|
|
190
|
+
"fontWeight": "bold",
|
|
191
|
+
"fontStyle": "normal",
|
|
192
|
+
"rotation": 0,
|
|
193
|
+
"x": 2.261302954788164,
|
|
194
|
+
"y": 128.8134949868271
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": "e-384f59e94253",
|
|
199
|
+
"type": "text",
|
|
200
|
+
"s": 4.904,
|
|
201
|
+
"e": 6.7059999999999995,
|
|
202
|
+
"t": "AND THEN",
|
|
203
|
+
"props": {
|
|
204
|
+
"fill": "#fffd70",
|
|
205
|
+
"font": {
|
|
206
|
+
"size": 48,
|
|
207
|
+
"family": "Poppins"
|
|
208
|
+
},
|
|
209
|
+
"fontSize": 54,
|
|
210
|
+
"fontFamily": "Impact",
|
|
211
|
+
"stroke": "#000000",
|
|
212
|
+
"lineWidth": 0.25,
|
|
213
|
+
"fontWeight": "bold",
|
|
214
|
+
"fontStyle": "Italic",
|
|
215
|
+
"rotation": 0,
|
|
216
|
+
"x": 0,
|
|
217
|
+
"y": 201.12984304960742
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"id": "e-180cab9f1871",
|
|
222
|
+
"type": "text",
|
|
223
|
+
"s": 6.891,
|
|
224
|
+
"e": 9.343,
|
|
225
|
+
"t": "BREAK YOU ONCE AGAIN",
|
|
226
|
+
"props": {
|
|
227
|
+
"fill": "#ffd700",
|
|
228
|
+
"font": {
|
|
229
|
+
"size": 48,
|
|
230
|
+
"family": "Poppins"
|
|
231
|
+
},
|
|
232
|
+
"fontSize": 54,
|
|
233
|
+
"fontFamily": "Impact",
|
|
234
|
+
"stroke": "#000000",
|
|
235
|
+
"lineWidth": 0.25,
|
|
236
|
+
"fontWeight": "bold",
|
|
237
|
+
"fontStyle": "Italic",
|
|
238
|
+
"rotation": 0,
|
|
239
|
+
"x": 4.522605909576328,
|
|
240
|
+
"y": 81.35589157062759
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"version": 1
|
|
247
|
+
}
|
|
450
248
|
}
|