@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.
Files changed (53) hide show
  1. package/.eslintrc.json +20 -20
  2. package/README.md +12 -12
  3. package/package.json +34 -31
  4. package/package.json.bak +34 -0
  5. package/src/animations/blur.tsx +60 -0
  6. package/src/animations/breathe.tsx +60 -0
  7. package/src/animations/fade.tsx +60 -0
  8. package/src/animations/photo-rise.tsx +66 -0
  9. package/src/animations/photo-zoom.tsx +73 -0
  10. package/src/animations/rise.tsx +118 -0
  11. package/src/animations/succession.tsx +77 -0
  12. package/src/components/frame-effects.tsx +188 -190
  13. package/src/components/track.tsx +237 -0
  14. package/src/controllers/animation.controller.ts +39 -0
  15. package/src/controllers/element.controller.ts +43 -0
  16. package/src/controllers/frame-effect.controller.tsx +30 -0
  17. package/src/controllers/text-effect.controller.ts +33 -0
  18. package/src/elements/audio.element.tsx +17 -0
  19. package/src/elements/caption.element.tsx +87 -0
  20. package/src/elements/circle.element.tsx +20 -0
  21. package/src/elements/icon.element.tsx +20 -0
  22. package/src/elements/image.element.tsx +53 -0
  23. package/src/elements/rect.element.tsx +22 -0
  24. package/src/elements/scene.element.tsx +29 -0
  25. package/src/elements/text.element.tsx +28 -0
  26. package/src/elements/video.element.tsx +55 -0
  27. package/src/frame-effects/circle.frame.tsx +103 -0
  28. package/src/frame-effects/rect.frame.tsx +103 -0
  29. package/src/global.css +11 -11
  30. package/src/helpers/caption.utils.ts +30 -40
  31. package/src/helpers/constants.ts +162 -158
  32. package/src/helpers/element.utils.ts +239 -85
  33. package/src/helpers/event.utils.ts +6 -0
  34. package/src/helpers/filters.ts +127 -127
  35. package/src/helpers/log.utils.ts +29 -32
  36. package/src/helpers/timing.utils.ts +110 -129
  37. package/src/helpers/types.ts +242 -146
  38. package/src/helpers/utils.ts +20 -0
  39. package/src/index.ts +6 -4
  40. package/src/live.tsx +16 -16
  41. package/src/project.ts +6 -6
  42. package/src/sample.ts +247 -449
  43. package/src/text-effects/elastic.tsx +39 -0
  44. package/src/text-effects/erase.tsx +58 -0
  45. package/src/text-effects/stream-word.tsx +60 -0
  46. package/src/text-effects/typewriter.tsx +59 -0
  47. package/src/visualizer.tsx +98 -78
  48. package/tsconfig.json +11 -10
  49. package/typedoc.json +14 -14
  50. package/vite.config.ts +15 -15
  51. package/src/components/animation.tsx +0 -7
  52. package/src/components/element.tsx +0 -344
  53. 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
- "timeline": [
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
- "frame": {
49
- "size": [
50
- 720,
51
- 1280
52
- ],
53
- "layout": false,
54
- "clip": "true"
55
- }
56
- },
57
- {
58
- "id": "e-ef2f208db319",
59
- "type": "video",
60
- "s": 4.74,
61
- "e": 6.774,
62
- "objectFit": "cover",
63
- "props": {
64
- "time": 0,
65
- "src": "https://static-assets.kifferai.com/developmen/a251d9971a55/63e0e7c3-5939-41a2-95c7-4e47e8be1ebf/video_1746786032120-6e4ab84c-d0dd-401e-b5e8-13d49fd8fe67-normalized-1747225095053.mp4",
66
- "play": true,
67
- "decoder": "web",
68
- "volume": 1,
69
- "playbackRate": 2
70
- },
71
- "frame": {
72
- "size": [
73
- 720,
74
- 1280
75
- ],
76
- "layout": false,
77
- "clip": "true"
78
- }
79
- },
80
- {
81
- "id": "e-477f620c0ec7",
82
- "type": "video",
83
- "s": 6.774,
84
- "e": 9.395,
85
- "objectFit": "cover",
86
- "props": {
87
- "time": 18.222499999999997,
88
- "src": "https://static-assets.kifferai.com/developmen/a251d9971a55/e66b4682-096d-46c5-b1b2-1e2e6a46fe8d/video_1746790653457-7e9e9a1d-9410-4bb3-bec1-7474fa88286c-normalized-1747225095442.mp4",
89
- "play": true,
90
- "decoder": "web",
91
- "volume": 1,
92
- "playbackRate": 2
93
- },
94
- "frame": {
95
- "size": [
96
- 2292.281711648068,
97
- 1286.2247382025269
98
- ],
99
- "layout": false,
100
- "clip": "true",
101
- "rotation": 0,
102
- "x": 269.48206359326264,
103
- "y": 6.293648227413769
104
- }
105
- },
106
- {
107
- "id": "e-8e7713322971",
108
- "type": "video",
109
- "s": 9.395,
110
- "e": 11.045625,
111
- "objectFit": "cover",
112
- "props": {
113
- "time": 0,
114
- "src": "https://static-assets.kifferai.com/developmen/a251d9971a55/785c23ac-46b9-412e-afa6-a2cb56359409/video_1746791788884-91cb1098-d5f0-4528-83ee-40396774362e-normalized-1747225092682.mp4",
115
- "play": true,
116
- "decoder": "web",
117
- "volume": 1,
118
- "playbackRate": 1.6
119
- },
120
- "frame": {
121
- "size": [
122
- 2308.2048543926235,
123
- 1295.1593905203056
124
- ],
125
- "layout": false,
126
- "clip": "true",
127
- "rotation": 0,
128
- "x": -13.276787982361498,
129
- "y": 7.751279402190107
130
- }
131
- },
132
- {
133
- "id": "e-7531e6fa1e0d",
134
- "type": "video",
135
- "s": 11.046,
136
- "e": 12.07,
137
- "objectFit": "cover",
138
- "props": {
139
- "time": 7.721,
140
- "src": "https://static-assets.kifferai.com/developmen/a251d9971a55/9e75d848-ee72-417c-a0ab-9b03cbe8a8e8/video_1746791788884-91cb1098-d5f0-4528-83ee-40396774362e-normalized-1747225094687.mp4",
141
- "play": true,
142
- "decoder": "web",
143
- "volume": 1,
144
- "playbackRate": 1.25
145
- },
146
- "frame": {
147
- "size": [
148
- 2311.1861840816873,
149
- 1296.8322477347244
150
- ],
151
- "layout": false,
152
- "clip": "true",
153
- "rotation": 0,
154
- "x": 449.37247349257666,
155
- "y": 9.38850926628038
156
- }
157
- },
158
- {
159
- "id": "e-3b7b7272a680",
160
- "type": "video",
161
- "s": 12.07,
162
- "e": 12.65,
163
- "objectFit": "cover",
164
- "props": {
165
- "time": 15.761000000000001,
166
- "src": "https://static-assets.kifferai.com/developmen/a251d9971a55/c8411732-b0c8-45a9-808d-e5adf6396cc0/video_1746791788884-91cb1098-d5f0-4528-83ee-40396774362e-normalized-1747225095328.mp4",
167
- "play": true,
168
- "decoder": "web"
169
- },
170
- "frame": {
171
- "size": [
172
- 2350.1907312156336,
173
- 1318.718132515439
174
- ],
175
- "layout": false,
176
- "clip": "true",
177
- "rotation": 0,
178
- "x": 172.4452216608522,
179
- "y": 15.93068052161425
180
- }
181
- },
182
- {
183
- "id": "e-6121e86e1529",
184
- "type": "video",
185
- "s": 12.65,
186
- "e": 12.97,
187
- "objectFit": "cover",
188
- "props": {
189
- "time": 16.467,
190
- "src": "https://static-assets.kifferai.com/developmen/a251d9971a55/ebdd6f60-5750-4228-a5cd-f321f60664c2/video_1746791788884-91cb1098-d5f0-4528-83ee-40396774362e-normalized-1747225093091.mp4",
191
- "play": true,
192
- "decoder": "web"
193
- },
194
- "frame": {
195
- "size": [
196
- 2250.6441550073,
197
- 1262.861442531874
198
- ],
199
- "layout": false,
200
- "clip": "true",
201
- "rotation": 0,
202
- "x": 349.31120819483976,
203
- "y": 10.893313528412591
204
- }
205
- },
206
- {
207
- "id": "e-1b1fe6998ebd",
208
- "type": "video",
209
- "s": 12.97,
210
- "e": 16.644000000000002,
211
- "objectFit": "cover",
212
- "props": {
213
- "time": 23.286,
214
- "src": "https://static-assets.kifferai.com/developmen/a251d9971a55/d0156321-eb31-4168-adc0-9c4ad1fd3963/video_1746791788884-91cb1098-d5f0-4528-83ee-40396774362e-normalized-1747225092630.mp4",
215
- "play": true,
216
- "decoder": "web"
217
- },
218
- "frame": {
219
- "size": [
220
- 2338.697802344495,
221
- 1312.2693224266334
222
- ],
223
- "layout": false,
224
- "clip": "true",
225
- "rotation": 0,
226
- "x": 105.53672564636827,
227
- "y": 12.299877537072007
228
- }
229
- }
230
- ],
231
- "name": "scene"
232
- },
233
- {
234
- "id": "t-83fa5f365f7f",
235
- "type": "audio",
236
- "name": "audio",
237
- "elements": [
238
- {
239
- "id": "e-50848c2d8271",
240
- "type": "audio",
241
- "s": 0,
242
- "e": 16.587755,
243
- "props": {
244
- "time": 0,
245
- "src": "https://static-assets.kifferai.com/developmen/a251d9971a55/brand-music/Unstoppable-Reprise-909549aa-6807-482b-ab92-bce7e6834fe7.mp3",
246
- "play": true
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
  }