@zync/zync-screnplay-player 0.1.187

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 (133) hide show
  1. package/dist/ZyncScreenplayPlayer.js +35 -0
  2. package/dist/bundle.js +2 -0
  3. package/dist/bundle.js.LICENSE.txt +54 -0
  4. package/dist/index.js +4 -0
  5. package/dist/screenplay/RemotionRenderer/RemotionRenderer.js +281 -0
  6. package/dist/screenplay/RemotionRenderer/Root.js +22 -0
  7. package/dist/screenplay/RemotionRenderer/components/LottieAnimationGlobal.js +116 -0
  8. package/dist/screenplay/RemotionRenderer/components/backgrounds/VirtualBackground.js +26 -0
  9. package/dist/screenplay/RemotionRenderer/components/backgrounds/VirtualBackgroundUnderlay.js +41 -0
  10. package/dist/screenplay/RemotionRenderer/components/captions/CaptionSimple.js +12 -0
  11. package/dist/screenplay/RemotionRenderer/components/effects/BrollFullscreen.js +27 -0
  12. package/dist/screenplay/RemotionRenderer/components/effects/GlitchText.js +22 -0
  13. package/dist/screenplay/RemotionRenderer/components/effects/HandoffNametag.js +7 -0
  14. package/dist/screenplay/RemotionRenderer/components/effects/LottieAnimation.js +64 -0
  15. package/dist/screenplay/RemotionRenderer/components/effects/Nametag.js +9 -0
  16. package/dist/screenplay/RemotionRenderer/components/effects/PhraseRainbowEffect.js +34 -0
  17. package/dist/screenplay/RemotionRenderer/components/effects/Sentence.js +50 -0
  18. package/dist/screenplay/RemotionRenderer/components/effects/Title.js +12 -0
  19. package/dist/screenplay/RemotionRenderer/components/layouts/BrollGreenScreen.js +742 -0
  20. package/dist/screenplay/RemotionRenderer/components/layouts/BrollSplitScreen.js +714 -0
  21. package/dist/screenplay/RemotionRenderer/components/layouts/BrollStudioBackdrop.js +620 -0
  22. package/dist/screenplay/RemotionRenderer/components/layouts/DynamicTriangle.js +618 -0
  23. package/dist/screenplay/RemotionRenderer/components/layouts/Handoff.js +161 -0
  24. package/dist/screenplay/RemotionRenderer/components/layouts/IntroVideo.js +1330 -0
  25. package/dist/screenplay/RemotionRenderer/components/layouts/KeyPointOverlayDepth.js +397 -0
  26. package/dist/screenplay/RemotionRenderer/components/layouts/Keyword.js +539 -0
  27. package/dist/screenplay/RemotionRenderer/components/layouts/KeywordStudioBackdrop.js +714 -0
  28. package/dist/screenplay/RemotionRenderer/components/layouts/MotionStill.js +381 -0
  29. package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillFullScreen.js +178 -0
  30. package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillGreenScreen.js +568 -0
  31. package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillGreenScreenV2.js +731 -0
  32. package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillStudioBackdrop.js +588 -0
  33. package/dist/screenplay/RemotionRenderer/components/layouts/SimpleFrame.js +183 -0
  34. package/dist/screenplay/RemotionRenderer/components/layouts/SimpleFrameBroll.js +181 -0
  35. package/dist/screenplay/RemotionRenderer/components/layouts/SimpleFrameSentence.js +17 -0
  36. package/dist/screenplay/RemotionRenderer/components/layouts/SimpleFrameZoomCut.js +13 -0
  37. package/dist/screenplay/RemotionRenderer/components/layouts/TextWithVideo.js +373 -0
  38. package/dist/screenplay/RemotionRenderer/components/layouts/quote-bubble-animation.json +1 -0
  39. package/dist/screenplay/RemotionRenderer/components/utils/BlurOverlay.js +19 -0
  40. package/dist/screenplay/RemotionRenderer/components/utils/ChromaKeyedVideo.js +59 -0
  41. package/dist/screenplay/RemotionRenderer/components/utils/FaceCenteredVideo.js +562 -0
  42. package/dist/screenplay/RemotionRenderer/components/utils/PausableImg.js +124 -0
  43. package/dist/screenplay/RemotionRenderer/components/utils/README.md +80 -0
  44. package/dist/screenplay/RemotionRenderer/components/utils/SafeZones.js +69 -0
  45. package/dist/screenplay/RemotionRenderer/components/utils/StretchText.js +124 -0
  46. package/dist/screenplay/RemotionRenderer/components/utils/StretchTextDemo.js +66 -0
  47. package/dist/screenplay/RemotionRenderer/config.js +8 -0
  48. package/dist/screenplay/RemotionRenderer/development.js +1370 -0
  49. package/dist/screenplay/RemotionRenderer/helpers/cleanFacemetadata.js +29 -0
  50. package/dist/screenplay/RemotionRenderer/helpers/convertToSeconds.js +14 -0
  51. package/dist/screenplay/RemotionRenderer/helpers/faceBasedVideoStyles.js +212 -0
  52. package/dist/screenplay/RemotionRenderer/helpers/faceCenteredVideoTransforms.js +468 -0
  53. package/dist/screenplay/RemotionRenderer/helpers/getContrastColor.js +15 -0
  54. package/dist/screenplay/RemotionRenderer/helpers/getVideoOrientation.js +21 -0
  55. package/dist/screenplay/RemotionRenderer/helpers/hexToRgb.js +48 -0
  56. package/dist/screenplay/RemotionRenderer/hooks/useLottieReplaceColor.js +45 -0
  57. package/dist/screenplay/RemotionRenderer/hooks/useOrientationBased.js +29 -0
  58. package/dist/screenplay/RemotionRenderer/hooks/useTimeInterpolate.js +54 -0
  59. package/dist/screenplay/RemotionRenderer/hooks/useVirtualBackground.js +38 -0
  60. package/dist/screenplay/RemotionRenderer/index.js +3 -0
  61. package/dist/screenplay/RemotionRenderer/main/lib/Sequence.js +76 -0
  62. package/dist/screenplay/RemotionRenderer/main/lib/layouts/DefaultLayout.js +72 -0
  63. package/dist/screenplay/RemotionRenderer/main/lib/layouts/DynamicTriangleLayout.js +54 -0
  64. package/dist/screenplay/RemotionRenderer/main/lib/layouts/HandoffLayout.js +50 -0
  65. package/dist/screenplay/RemotionRenderer/main/lib/layouts/IntroVideoLayout.js +33 -0
  66. package/dist/screenplay/RemotionRenderer/main/lib/layouts/KeywordLayout.js +36 -0
  67. package/dist/screenplay/RemotionRenderer/main/lib/layouts/LayoutFactory.js +68 -0
  68. package/dist/screenplay/RemotionRenderer/main/lib/layouts/MotionStillLayout.js +36 -0
  69. package/dist/screenplay/RemotionRenderer/main/lib/layouts/SimpleFrameLayout.js +43 -0
  70. package/dist/screenplay/RemotionRenderer/main/lib/layouts/TextWithVideoLayout.js +52 -0
  71. package/dist/screenplay/RemotionRenderer/main/screenplaySchema.js +92 -0
  72. package/dist/screenplay/RemotionRenderer/registeredComponents.js +91 -0
  73. package/dist/screenplay/RemotionRenderer/theme/config.js +8 -0
  74. package/dist/screenplay/RemotionRenderer/theme/hooks/useTheme.js +24 -0
  75. package/dist/screenplay/RemotionRenderer/theme/hooks/useThemedComponents.js +101 -0
  76. package/dist/screenplay/RemotionRenderer/theme/themes/bigbold/BigBoldNameTag.js +147 -0
  77. package/dist/screenplay/RemotionRenderer/theme/themes/bigbold/BigBoldSentence.js +138 -0
  78. package/dist/screenplay/RemotionRenderer/theme/themes/bigbold/BigBoldTitle.js +136 -0
  79. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionColor.js +67 -0
  80. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionColorInverse.js +67 -0
  81. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionColorShadow.js +66 -0
  82. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionElegant.js +134 -0
  83. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionEmphasis.js +122 -0
  84. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionPunctuated.js +84 -0
  85. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionWordBoom.js +88 -0
  86. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionWordBubble.js +91 -0
  87. package/dist/screenplay/RemotionRenderer/theme/themes/default/CaptionWordPopup.js +118 -0
  88. package/dist/screenplay/RemotionRenderer/theme/themes/default/DefaultCaption.js +62 -0
  89. package/dist/screenplay/RemotionRenderer/theme/themes/default/HandoffNametag/handoffNametagConfig.js +59 -0
  90. package/dist/screenplay/RemotionRenderer/theme/themes/default/HandoffNametag.js +173 -0
  91. package/dist/screenplay/RemotionRenderer/theme/themes/default/Nametag.js +129 -0
  92. package/dist/screenplay/RemotionRenderer/theme/themes/default/Sentence/AnimatedSentence.js +20 -0
  93. package/dist/screenplay/RemotionRenderer/theme/themes/default/Sentence/AnimatedSentenceDefault.js +29 -0
  94. package/dist/screenplay/RemotionRenderer/theme/themes/default/Sentence/SentenceSimple.helpers.js +61 -0
  95. package/dist/screenplay/RemotionRenderer/theme/themes/default/Sentence.js +86 -0
  96. package/dist/screenplay/RemotionRenderer/theme/themes/default/Title.js +112 -0
  97. package/dist/screenplay/RemotionRenderer/theme/themes/default/constants.js +1 -0
  98. package/dist/screenplay/RemotionRenderer/theme/themes/glassmorphism/Nametag.js +134 -0
  99. package/dist/screenplay/RemotionRenderer/theme/themes/glassmorphism/Sentence.js +49 -0
  100. package/dist/screenplay/RemotionRenderer/theme/themes/glassmorphism/Title.js +108 -0
  101. package/dist/screenplay/RemotionRenderer/theme/themes/glassmorphism/animations.js +30 -0
  102. package/dist/screenplay/RemotionRenderer/theme/themes/glassmorphism/config.js +9 -0
  103. package/dist/screenplay/RemotionRenderer/theme/themes/glitch/GlitchNametag.js +252 -0
  104. package/dist/screenplay/RemotionRenderer/theme/themes/glitch/GlitchSentence.js +156 -0
  105. package/dist/screenplay/RemotionRenderer/theme/themes/glitch/GlitchTitle.js +142 -0
  106. package/dist/screenplay/RemotionRenderer/theme/themes/glitch/components/DisplacedText.js +66 -0
  107. package/dist/screenplay/RemotionRenderer/theme/themes/glitch/components/GlitchAnimatedLine.js +38 -0
  108. package/dist/screenplay/RemotionRenderer/theme/themes/glitch/components/SplitSentence.js +80 -0
  109. package/dist/screenplay/RemotionRenderer/theme/themes/glitch/helpers.js +32 -0
  110. package/dist/screenplay/RemotionRenderer/theme/themes/none/Nametag.js +3 -0
  111. package/dist/screenplay/RemotionRenderer/theme/themes/none/Title.js +3 -0
  112. package/dist/screenplay/RemotionRenderer/theme/themes/pushpull/PushPullNametag.js +165 -0
  113. package/dist/screenplay/RemotionRenderer/theme/themes/pushpull/PushPullSentence.js +94 -0
  114. package/dist/screenplay/RemotionRenderer/theme/themes/pushpull/PushPullTitle.js +98 -0
  115. package/dist/screenplay/RemotionRenderer/theme/themes/pushpull/designs/sentence.js +92 -0
  116. package/dist/screenplay/RemotionRenderer/theme/themes/pushpull/designs/title.js +119 -0
  117. package/dist/screenplay/RemotionRenderer/theme/themes/sports/Nametag.js +122 -0
  118. package/dist/screenplay/RemotionRenderer/theme/themes/sports/SportsCaption.js +93 -0
  119. package/dist/screenplay/RemotionRenderer/theme/themes/sports/SportsSentence.js +76 -0
  120. package/dist/screenplay/RemotionRenderer/theme/themes/sports/Title.js +90 -0
  121. package/dist/screenplay/RemotionRenderer/theme/themes/sports/shared.js +62 -0
  122. package/dist/screenplay/RemotionRenderer/theme/themes/sportsbounce/Nametag.js +145 -0
  123. package/dist/screenplay/RemotionRenderer/theme/themes/sportsbounce/SportsBounceSentence.js +148 -0
  124. package/dist/screenplay/RemotionRenderer/theme/themes/sportsbounce/Title.js +160 -0
  125. package/dist/screenplay/RemotionRenderer/tracks/AudioTrack.js +23 -0
  126. package/dist/screenplay/RemotionRenderer/tracks/CaptionsVideoTrack.js +23 -0
  127. package/dist/screenplay/RemotionRenderer/tracks/DynamicVideoComposition.js +31 -0
  128. package/dist/screenplay/RemotionRenderer/tracks/EffectsVideoTrack.js +23 -0
  129. package/dist/screenplay/RemotionRenderer/tracks/LayoutVideoTrack.js +141 -0
  130. package/dist/screenplay/RemotionRenderer/tracks/Soundtrack.js +16 -0
  131. package/dist/screenplay/RemotionRenderer/tracks/Watermark.js +23 -0
  132. package/dist/screenplay/RemotionRenderer/tracks/transitions/GlitchOne.js +92 -0
  133. package/package.json +45 -0
@@ -0,0 +1,1370 @@
1
+ import { RemotionRenderer } from "./RemotionRenderer";
2
+
3
+ // edit screenplay directly here during development to test all changes
4
+ var renderer = new RemotionRenderer({
5
+ input: {
6
+ primaryColor: "#2C2C2C",
7
+ primaryContrast: "#FFFFFF",
8
+ accentColor: "#8b33f7",
9
+ accentContrast: "#FFFFFF",
10
+ theme: "bigbold",
11
+ dynamicBackgroundPortrait: "",
12
+ dynamicBackgroundLandscape: "",
13
+ dynamicBackgroundSquare: "",
14
+ userBackgroundType: "natural"
15
+ },
16
+ tracks: [{
17
+ type: "segment",
18
+ segments: [{
19
+ recordingIndex: 0,
20
+ layout: {
21
+ type: "simple_frame",
22
+ data: {
23
+ noBackgroundVideoEffects: {
24
+ facePop: true,
25
+ backgroundDim: true,
26
+ backgroundBlur: true
27
+ },
28
+ sourceVideo: {
29
+ videoUrl: "https://stream.mux.com/Sr00t00O2KvW87e54Z6FOtt6aUugoutk401ovtpZKlCuCQ/highest.mp4",
30
+ start: 0.48,
31
+ aspectRatio: "16:9",
32
+ durationSeconds: 8.042667
33
+ },
34
+ duration: 6.43,
35
+ logoUrl: "https://cdn.zync.ai/media/brand-kit/LPDfBsKz/1733814548178-logorectangledarkbackground.png",
36
+ frameColor: "#2C2C2C",
37
+ disableTransitionSounds: false,
38
+ imageUrl: "https://images.pexels.com/photos/5257578/pexels-photo-5257578.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
39
+ imgBgUrlVariations: {
40
+ "default": "https://images.pexels.com/photos/5257578/pexels-photo-5257578.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
41
+ pexels: "https://images.pexels.com/photos/5257578/pexels-photo-5257578.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
42
+ },
43
+ paddingLeft: 0.48,
44
+ paddingRight: 1.1326669999999996
45
+ }
46
+ },
47
+ effects: [{
48
+ type: "caption_word_boom",
49
+ data: {
50
+ transcript_text: [{
51
+ offset: 0,
52
+ duration: 0.9599999000000001,
53
+ text: "We're always trying",
54
+ punctuations: [{
55
+ index: 0,
56
+ start: 0,
57
+ end: 0.31999995000000003
58
+ }, {
59
+ index: 1,
60
+ start: 0.31999995000000003,
61
+ end: 0.7199998999999999
62
+ }, {
63
+ index: 2,
64
+ start: 0.7199998999999999,
65
+ end: 0.9599999000000001
66
+ }]
67
+ }, {
68
+ offset: 0.9599999000000001,
69
+ duration: 0.8000001000000001,
70
+ text: "to find the balance",
71
+ punctuations: [{
72
+ index: 0,
73
+ start: 0.9599999000000001,
74
+ end: 1.04
75
+ }, {
76
+ index: 1,
77
+ start: 1.04,
78
+ end: 1.2
79
+ }, {
80
+ index: 2,
81
+ start: 1.2,
82
+ end: 1.28
83
+ }, {
84
+ index: 3,
85
+ start: 1.28,
86
+ end: 1.7600000000000002
87
+ }]
88
+ }, {
89
+ offset: 1.7600000000000002,
90
+ duration: 0.7999999999999998,
91
+ text: "between creating",
92
+ punctuations: [{
93
+ index: 0,
94
+ start: 1.7600000000000002,
95
+ end: 2.1599999
96
+ }, {
97
+ index: 1,
98
+ start: 2.1599999,
99
+ end: 2.56
100
+ }]
101
+ }, {
102
+ offset: 2.56,
103
+ duration: 0.96,
104
+ text: "more content and",
105
+ punctuations: [{
106
+ index: 0,
107
+ start: 2.56,
108
+ end: 2.8
109
+ }, {
110
+ index: 1,
111
+ start: 2.8,
112
+ end: 3.3
113
+ }, {
114
+ index: 2,
115
+ start: 3.36,
116
+ end: 3.52
117
+ }]
118
+ }, {
119
+ offset: 3.52,
120
+ duration: 0.8799999999999999,
121
+ text: "getting more out of",
122
+ punctuations: [{
123
+ index: 0,
124
+ start: 3.52,
125
+ end: 3.8399997000000003
126
+ }, {
127
+ index: 1,
128
+ start: 3.8399997000000003,
129
+ end: 4
130
+ }, {
131
+ index: 2,
132
+ start: 4,
133
+ end: 4.24
134
+ }, {
135
+ index: 3,
136
+ start: 4.24,
137
+ end: 4.4
138
+ }]
139
+ }, {
140
+ offset: 4.4,
141
+ duration: 0.8799998000000002,
142
+ text: "what content we've",
143
+ punctuations: [{
144
+ index: 0,
145
+ start: 4.4,
146
+ end: 4.640000000000001
147
+ }, {
148
+ index: 1,
149
+ start: 4.640000000000001,
150
+ end: 4.960000000000001
151
+ }, {
152
+ index: 2,
153
+ start: 4.960000000000001,
154
+ end: 5.279999800000001
155
+ }]
156
+ }, {
157
+ offset: 5.279999800000001,
158
+ duration: 0.9000002,
159
+ text: "already made.",
160
+ punctuations: [{
161
+ index: 0,
162
+ start: 5.279999800000001,
163
+ end: 5.68
164
+ }, {
165
+ index: 1,
166
+ start: 5.68,
167
+ end: 6.18
168
+ }]
169
+ }]
170
+ }
171
+ }]
172
+ }, {
173
+ recordingIndex: 1,
174
+ layout: {
175
+ type: "intro_video",
176
+ data: {
177
+ noBackgroundVideoEffects: {
178
+ facePop: true,
179
+ backgroundDim: true,
180
+ backgroundBlur: true
181
+ },
182
+ sourceVideo: {
183
+ videoUrl: "https://stream.mux.com/HsumWeR02wX133KISuUFe2xmCg4nqwFOLHpl02CkaWkKo/highest.mp4",
184
+ start: 0.48,
185
+ aspectRatio: "16:9",
186
+ durationSeconds: 8.684633,
187
+ zoom: 1.2
188
+ },
189
+ duration: 6.75,
190
+ logoUrl: "https://cdn.zync.ai/media/brand-kit/LPDfBsKz/1733814548178-logorectangledarkbackground.png",
191
+ frameColor: "#2C2C2C",
192
+ disableTransitionSounds: false,
193
+ imageUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/gen/387d0199-3177-4ab0-a09c-0a17f6287937.png",
194
+ imgBgUrlVariations: {
195
+ "default": "https://storage.googleapis.com/ai-recorder-media-assets/media/gen/387d0199-3177-4ab0-a09c-0a17f6287937.png",
196
+ pexels: "https://images.pexels.com/photos/4549411/pexels-photo-4549411.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
197
+ },
198
+ paddingLeft: 0.48,
199
+ paddingRight: 1.4546329999999994
200
+ }
201
+ },
202
+ effects: [{
203
+ type: "caption_word_boom",
204
+ data: {
205
+ transcript_text: [{
206
+ offset: 0,
207
+ duration: 0.8,
208
+ text: "Just in new build",
209
+ punctuations: [{
210
+ index: 0,
211
+ start: 0,
212
+ end: 0.23999997000000006
213
+ }, {
214
+ index: 1,
215
+ start: 0.23999997000000006,
216
+ end: 0.4
217
+ }, {
218
+ index: 2,
219
+ start: 0.4,
220
+ end: 0.56
221
+ }, {
222
+ index: 3,
223
+ start: 0.56,
224
+ end: 0.8
225
+ }]
226
+ }, {
227
+ offset: 0.8,
228
+ duration: 0.8,
229
+ text: "systems around",
230
+ punctuations: [{
231
+ index: 0,
232
+ start: 0.8,
233
+ end: 1.2
234
+ }, {
235
+ index: 1,
236
+ start: 1.2,
237
+ end: 1.6
238
+ }]
239
+ }, {
240
+ offset: 1.6,
241
+ duration: 0.8799999999999999,
242
+ text: "repurposing and",
243
+ punctuations: [{
244
+ index: 0,
245
+ start: 1.6,
246
+ end: 2.1
247
+ }, {
248
+ index: 1,
249
+ start: 2.24,
250
+ end: 2.48
251
+ }]
252
+ }, {
253
+ offset: 2.48,
254
+ duration: 0.5,
255
+ text: "distribution.",
256
+ punctuations: [{
257
+ index: 0,
258
+ start: 2.48,
259
+ end: 2.98
260
+ }]
261
+ }, {
262
+ offset: 3.1999998,
263
+ duration: 0.8000002000000004,
264
+ text: "So I wanna hear",
265
+ punctuations: [{
266
+ index: 0,
267
+ start: 3.1999998,
268
+ end: 3.4399998
269
+ }, {
270
+ index: 1,
271
+ start: 3.4399998,
272
+ end: 3.52
273
+ }, {
274
+ index: 2,
275
+ start: 3.52,
276
+ end: 3.8399997000000003
277
+ }, {
278
+ index: 3,
279
+ start: 3.8399997000000003,
280
+ end: 4
281
+ }]
282
+ }, {
283
+ offset: 4,
284
+ duration: 0.6399999999999997,
285
+ text: "your thoughts on",
286
+ punctuations: [{
287
+ index: 0,
288
+ start: 4,
289
+ end: 4.24
290
+ }, {
291
+ index: 1,
292
+ start: 4.24,
293
+ end: 4.48
294
+ }, {
295
+ index: 2,
296
+ start: 4.48,
297
+ end: 4.640000000000001
298
+ }]
299
+ }, {
300
+ offset: 4.640000000000001,
301
+ duration: 1.12,
302
+ text: "where the balance",
303
+ punctuations: [{
304
+ index: 0,
305
+ start: 4.640000000000001,
306
+ end: 5.039999999999999
307
+ }, {
308
+ index: 1,
309
+ start: 5.039999999999999,
310
+ end: 5.279999800000001
311
+ }, {
312
+ index: 2,
313
+ start: 5.279999800000001,
314
+ end: 5.76
315
+ }]
316
+ }, {
317
+ offset: 5.76,
318
+ duration: 0.7400000000000002,
319
+ text: "really lies.",
320
+ punctuations: [{
321
+ index: 0,
322
+ start: 5.76,
323
+ end: 6
324
+ }, {
325
+ index: 1,
326
+ start: 6,
327
+ end: 6.5
328
+ }]
329
+ }]
330
+ }
331
+ }]
332
+ }, {
333
+ layout: {
334
+ type: "handoff",
335
+ data: {
336
+ startFirstVideoFrom: 0.48,
337
+ firstVideoFile: "https://stream.mux.com/2bDSZrVu4OZPgm3GAP3r6x9EwceM29Pwr701ECM3ezlE/highest.mp4",
338
+ firstVideoDuration: 5.55,
339
+ firstNoBackgroundVideo: null,
340
+ startSecondVideoFrom: 1.92,
341
+ secondVideoFile: "https://stream.mux.com/UD02VZa2eyMy8AgVI9hbMNf1a6lbtyctVdeK989QrJZQ/highest.mp4",
342
+ secondVideoDuration: 3.439999700000001,
343
+ secondNoBackgroundVideo: {
344
+ videoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/video/video-nobg-1762216193383.webm",
345
+ faceMetadata: {
346
+ total_frames: 1134,
347
+ frames_with_face_detection: 38,
348
+ faces_detected: 38,
349
+ face_detection_rate: 1,
350
+ video_properties: {
351
+ width: 1920,
352
+ height: 1080,
353
+ fps: 29.995767792904,
354
+ duration_seconds: 37.80533333333333
355
+ },
356
+ face_metadata: [{
357
+ aggregation: "average",
358
+ face_data: {
359
+ face_center: [1002.2894736842105, 423.6842105263158],
360
+ frame_center: [960, 540],
361
+ offset: [42.28947368421053, -116.3157894736842],
362
+ face_bbox: [857.9473684210526, 222.92105263157896, 289.10526315789474, 402.07894736842104],
363
+ confidence: 0.9590692410343572,
364
+ distance_from_center: 126.12118253169092
365
+ },
366
+ sample_count: 38
367
+ }],
368
+ aggregation: "average"
369
+ }
370
+ },
371
+ duration: 8.9899997,
372
+ firstVideoDurationWithoutLastSegment: 0,
373
+ sourceVideo: {
374
+ videoUrl: "https://stream.mux.com/2bDSZrVu4OZPgm3GAP3r6x9EwceM29Pwr701ECM3ezlE/highest.mp4",
375
+ start: 0.48
376
+ },
377
+ paddingLeft: 0,
378
+ paddingRight: 0
379
+ }
380
+ },
381
+ effects: [{
382
+ type: "caption_word_boom",
383
+ data: {
384
+ transcript_text: [{
385
+ offset: 0,
386
+ duration: 0.8800000000000001,
387
+ text: "When should someone",
388
+ punctuations: [{
389
+ index: 0,
390
+ start: 0,
391
+ end: 0.23999997000000006
392
+ }, {
393
+ index: 1,
394
+ start: 0.23999997000000006,
395
+ end: 0.48
396
+ }, {
397
+ index: 2,
398
+ start: 0.48,
399
+ end: 0.8800000000000001
400
+ }]
401
+ }, {
402
+ offset: 0.8800000000000001,
403
+ duration: 0.9599999999999997,
404
+ text: "focus on creating",
405
+ punctuations: [{
406
+ index: 0,
407
+ start: 0.8800000000000001,
408
+ end: 1.1199999
409
+ }, {
410
+ index: 1,
411
+ start: 1.1199999,
412
+ end: 1.44
413
+ }, {
414
+ index: 2,
415
+ start: 1.44,
416
+ end: 1.8399999999999999
417
+ }]
418
+ }, {
419
+ offset: 1.8399999999999999,
420
+ duration: 0.96,
421
+ text: "more content, and",
422
+ punctuations: [{
423
+ index: 0,
424
+ start: 1.8399999999999999,
425
+ end: 2.08
426
+ }, {
427
+ index: 1,
428
+ start: 2.08,
429
+ end: 2.56
430
+ }, {
431
+ index: 2,
432
+ start: 2.56,
433
+ end: 2.8
434
+ }]
435
+ }, {
436
+ offset: 2.8,
437
+ duration: 0.7200000000000002,
438
+ text: "when should they",
439
+ punctuations: [{
440
+ index: 0,
441
+ start: 2.8,
442
+ end: 3.04
443
+ }, {
444
+ index: 1,
445
+ start: 3.04,
446
+ end: 3.28
447
+ }, {
448
+ index: 2,
449
+ start: 3.28,
450
+ end: 3.52
451
+ }]
452
+ }, {
453
+ offset: 3.52,
454
+ duration: 0.7199999999999998,
455
+ text: "focus on",
456
+ punctuations: [{
457
+ index: 0,
458
+ start: 3.52,
459
+ end: 4
460
+ }, {
461
+ index: 1,
462
+ start: 4,
463
+ end: 4.24
464
+ }]
465
+ }, {
466
+ offset: 4.24,
467
+ duration: 0.5,
468
+ text: "distributing",
469
+ punctuations: [{
470
+ index: 0,
471
+ start: 4.24,
472
+ end: 4.74
473
+ }]
474
+ }, {
475
+ offset: 4.799999700000001,
476
+ duration: 0.5,
477
+ text: "better?",
478
+ punctuations: [{
479
+ index: 0,
480
+ start: 4.799999700000001,
481
+ end: 5.299999700000001
482
+ }]
483
+ }, {
484
+ offset: 5.55,
485
+ duration: 0.8000000000000003,
486
+ text: "Well, I think the",
487
+ punctuations: [{
488
+ index: 0,
489
+ start: 5.55,
490
+ end: 5.87
491
+ }, {
492
+ index: 1,
493
+ start: 5.87,
494
+ end: 6.0299999
495
+ }, {
496
+ index: 2,
497
+ start: 6.0299999,
498
+ end: 6.1899999999999995
499
+ }, {
500
+ index: 3,
501
+ start: 6.1899999999999995,
502
+ end: 6.35
503
+ }]
504
+ }, {
505
+ offset: 6.35,
506
+ duration: 1.1199999999999997,
507
+ text: "answer is that you",
508
+ punctuations: [{
509
+ index: 0,
510
+ start: 6.35,
511
+ end: 6.75
512
+ }, {
513
+ index: 1,
514
+ start: 6.75,
515
+ end: 6.8299997999999995
516
+ }, {
517
+ index: 2,
518
+ start: 6.8299997999999995,
519
+ end: 7.15
520
+ }, {
521
+ index: 3,
522
+ start: 7.15,
523
+ end: 7.47
524
+ }]
525
+ }, {
526
+ offset: 7.47,
527
+ duration: 0.5600000000000005,
528
+ text: "have to find the",
529
+ punctuations: [{
530
+ index: 0,
531
+ start: 7.47,
532
+ end: 7.63
533
+ }, {
534
+ index: 1,
535
+ start: 7.63,
536
+ end: 7.71
537
+ }, {
538
+ index: 2,
539
+ start: 7.71,
540
+ end: 7.87
541
+ }, {
542
+ index: 3,
543
+ start: 7.87,
544
+ end: 8.030000000000001
545
+ }]
546
+ }, {
547
+ offset: 8.030000000000001,
548
+ duration: 0.7199999999999998,
549
+ text: "right cadence for",
550
+ punctuations: [{
551
+ index: 0,
552
+ start: 8.030000000000001,
553
+ end: 8.19
554
+ }, {
555
+ index: 1,
556
+ start: 8.19,
557
+ end: 8.51
558
+ }, {
559
+ index: 2,
560
+ start: 8.51,
561
+ end: 8.75
562
+ }]
563
+ }, {
564
+ offset: 8.75,
565
+ duration: 0.23999970000000026,
566
+ text: "both.",
567
+ punctuations: [{
568
+ index: 0,
569
+ start: 8.75,
570
+ end: 8.9899997
571
+ }]
572
+ }]
573
+ }
574
+ }, {
575
+ type: "handoff_nametag",
576
+ data: {
577
+ fullName: "Arjun Sundararajan",
578
+ title: "Founder at Zync.ai | Simplifying Brand Building",
579
+ pictureUrl: "https://cdn.solorecording.studio/media/event-presenters/LPDfBsKz/presenter/1739483653893-arjunsundararajanprofile.jpg",
580
+ offset: 0.5499999999999998,
581
+ alignment: "first-left",
582
+ duration: 5
583
+ }
584
+ }, {
585
+ type: "handoff_nametag",
586
+ data: {
587
+ fullName: "Justin Vajko",
588
+ title: null,
589
+ pictureUrl: "",
590
+ offset: 4.55,
591
+ alignment: "second-right",
592
+ duration: 5
593
+ }
594
+ }]
595
+ }, {
596
+ recordingIndex: 0,
597
+ layout: {
598
+ type: "simple_frame_zoom_cut",
599
+ data: {
600
+ noBackgroundVideoEffects: {
601
+ facePop: true,
602
+ backgroundDim: true,
603
+ backgroundBlur: true
604
+ },
605
+ sourceVideo: {
606
+ videoUrl: "https://stream.mux.com/UD02VZa2eyMy8AgVI9hbMNf1a6lbtyctVdeK989QrJZQ/highest.mp4",
607
+ start: 5.3599997,
608
+ aspectRatio: "16:9",
609
+ durationSeconds: 37.872,
610
+ zoom: 1.2
611
+ },
612
+ duration: 4.109999999999999,
613
+ logoUrl: "https://cdn.zync.ai/media/brand-kit/LPDfBsKz/1733814548178-logorectangledarkbackground.png",
614
+ frameColor: "#2C2C2C",
615
+ disableTransitionSounds: false,
616
+ brollUrl: "https://videos.pexels.com/video-files/3192362/3192362-hd_1920_1080_25fps.mp4",
617
+ sentenceText: null,
618
+ text: null,
619
+ imageUrl: "https://images.pexels.com/photos/1181538/pexels-photo-1181538.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
620
+ imgBgUrlVariations: {
621
+ "default": "https://images.pexels.com/photos/1181538/pexels-photo-1181538.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
622
+ pexels: "https://images.pexels.com/photos/1181538/pexels-photo-1181538.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
623
+ },
624
+ words: ["Distribution", "plan"],
625
+ noBackgroundVideo: {
626
+ videoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/video/video-nobg-1762216193383.webm",
627
+ faceMetadata: {
628
+ total_frames: 1134,
629
+ frames_with_face_detection: 38,
630
+ faces_detected: 38,
631
+ face_detection_rate: 1,
632
+ video_properties: {
633
+ width: 1920,
634
+ height: 1080,
635
+ fps: 29.995767792904,
636
+ duration_seconds: 37.80533333333333
637
+ },
638
+ face_metadata: [{
639
+ aggregation: "average",
640
+ face_data: {
641
+ face_center: [1002.2894736842105, 423.6842105263158],
642
+ frame_center: [960, 540],
643
+ offset: [42.28947368421053, -116.3157894736842],
644
+ face_bbox: [857.9473684210526, 222.92105263157896, 289.10526315789474, 402.07894736842104],
645
+ confidence: 0.9590692410343572,
646
+ distance_from_center: 126.12118253169092
647
+ },
648
+ sample_count: 38
649
+ }],
650
+ aggregation: "average"
651
+ }
652
+ },
653
+ paddingLeft: 0,
654
+ paddingRight: 0
655
+ }
656
+ },
657
+ effects: [{
658
+ type: "caption_word_boom",
659
+ data: {
660
+ transcript_text: [{
661
+ offset: 0,
662
+ duration: 0.40000009999999975,
663
+ text: "I don't think",
664
+ punctuations: [{
665
+ index: 0,
666
+ start: 0,
667
+ end: 0.1600002999999992
668
+ }, {
669
+ index: 1,
670
+ start: 0.1600002999999992,
671
+ end: 0.24000029999999928
672
+ }, {
673
+ index: 2,
674
+ start: 0.24000029999999928,
675
+ end: 0.40000009999999975
676
+ }]
677
+ }, {
678
+ offset: 0.40000009999999975,
679
+ duration: 0.9000002,
680
+ text: "there's a perfect",
681
+ punctuations: [{
682
+ index: 0,
683
+ start: 0.40000009999999975,
684
+ end: 0.6400002999999996
685
+ }, {
686
+ index: 1,
687
+ start: 0.6400002999999996,
688
+ end: 0.8000002999999998
689
+ }, {
690
+ index: 2,
691
+ start: 0.8000002999999998,
692
+ end: 1.3000002999999998
693
+ }]
694
+ }, {
695
+ offset: 1.3600002999999994,
696
+ duration: 1.1999996,
697
+ text: "formula for content",
698
+ punctuations: [{
699
+ index: 0,
700
+ start: 1.3600002999999994,
701
+ end: 1.8600002999999994
702
+ }, {
703
+ index: 1,
704
+ start: 2,
705
+ end: 2.160000299999999
706
+ }, {
707
+ index: 2,
708
+ start: 2.160000299999999,
709
+ end: 2.5599998999999993
710
+ }]
711
+ }, {
712
+ offset: 2.5599998999999993,
713
+ duration: 0.8000004000000009,
714
+ text: "creation versus",
715
+ punctuations: [{
716
+ index: 0,
717
+ start: 2.5599998999999993,
718
+ end: 2.9600003
719
+ }, {
720
+ index: 1,
721
+ start: 2.9600003,
722
+ end: 3.3600003000000003
723
+ }]
724
+ }, {
725
+ offset: 3.3600003000000003,
726
+ duration: 0.5,
727
+ text: "distribution.",
728
+ punctuations: [{
729
+ index: 0,
730
+ start: 3.3600003000000003,
731
+ end: 3.8600003000000003
732
+ }]
733
+ }]
734
+ }
735
+ }]
736
+ }, {
737
+ recordingIndex: 0,
738
+ layout: {
739
+ type: "simple_frame",
740
+ data: {
741
+ noBackgroundVideoEffects: {
742
+ facePop: true,
743
+ backgroundDim: true,
744
+ backgroundBlur: true
745
+ },
746
+ sourceVideo: {
747
+ videoUrl: "https://stream.mux.com/UD02VZa2eyMy8AgVI9hbMNf1a6lbtyctVdeK989QrJZQ/highest.mp4",
748
+ start: 9.599999,
749
+ aspectRatio: "16:9",
750
+ durationSeconds: 37.872
751
+ },
752
+ duration: 8.855000999999998,
753
+ logoUrl: "https://cdn.zync.ai/media/brand-kit/LPDfBsKz/1733814548178-logorectangledarkbackground.png",
754
+ frameColor: "#2C2C2C",
755
+ disableTransitionSounds: false,
756
+ brollUrl: "https://videos.pexels.com/video-files/8189002/8189002-uhd_2560_1440_25fps.mp4",
757
+ sentenceText: null,
758
+ text: null,
759
+ imageUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/gen/786d6eab-bf0b-4314-adcf-1186a799662b.png",
760
+ imgBgUrlVariations: {
761
+ "default": "https://storage.googleapis.com/ai-recorder-media-assets/media/gen/786d6eab-bf0b-4314-adcf-1186a799662b.png",
762
+ pexels: "https://images.pexels.com/photos/8938285/pexels-photo-8938285.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
763
+ },
764
+ words: ["Plan", "for", "visibility"],
765
+ noBackgroundVideo: {
766
+ videoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/video/video-nobg-1762216193383.webm",
767
+ faceMetadata: {
768
+ total_frames: 1134,
769
+ frames_with_face_detection: 38,
770
+ faces_detected: 38,
771
+ face_detection_rate: 1,
772
+ video_properties: {
773
+ width: 1920,
774
+ height: 1080,
775
+ fps: 29.995767792904,
776
+ duration_seconds: 37.80533333333333
777
+ },
778
+ face_metadata: [{
779
+ aggregation: "average",
780
+ face_data: {
781
+ face_center: [1002.2894736842105, 423.6842105263158],
782
+ frame_center: [960, 540],
783
+ offset: [42.28947368421053, -116.3157894736842],
784
+ face_bbox: [857.9473684210526, 222.92105263157896, 289.10526315789474, 402.07894736842104],
785
+ confidence: 0.9590692410343572,
786
+ distance_from_center: 126.12118253169092
787
+ },
788
+ sample_count: 38
789
+ }],
790
+ aggregation: "average"
791
+ }
792
+ },
793
+ paddingLeft: 0,
794
+ paddingRight: 0
795
+ }
796
+ },
797
+ effects: [{
798
+ type: "caption_word_boom",
799
+ data: {
800
+ transcript_text: [{
801
+ offset: 0,
802
+ duration: 0.6400009999999998,
803
+ text: "But I will say",
804
+ punctuations: [{
805
+ index: 0,
806
+ start: 0,
807
+ end: 0.1600009999999994
808
+ }, {
809
+ index: 1,
810
+ start: 0.1600009999999994,
811
+ end: 0.24000099999999946
812
+ }, {
813
+ index: 2,
814
+ start: 0.24000099999999946,
815
+ end: 0.4800009999999997
816
+ }, {
817
+ index: 3,
818
+ start: 0.4800009999999997,
819
+ end: 0.6400009999999998
820
+ }]
821
+ }, {
822
+ offset: 0.6400009999999998,
823
+ duration: 1.1999999999999993,
824
+ text: "this, if you don't",
825
+ punctuations: [{
826
+ index: 0,
827
+ start: 0.6400009999999998,
828
+ end: 0.9599999999999991
829
+ }, {
830
+ index: 1,
831
+ start: 0.9599999999999991,
832
+ end: 1.1199999999999992
833
+ }, {
834
+ index: 2,
835
+ start: 1.1199999999999992,
836
+ end: 1.3600010000000005
837
+ }, {
838
+ index: 3,
839
+ start: 1.3600010000000005,
840
+ end: 1.840000999999999
841
+ }]
842
+ }, {
843
+ offset: 1.840000999999999,
844
+ duration: 0.9000000000000004,
845
+ text: "have a distribution",
846
+ punctuations: [{
847
+ index: 0,
848
+ start: 1.840000999999999,
849
+ end: 2.08
850
+ }, {
851
+ index: 1,
852
+ start: 2.08,
853
+ end: 2.2400009999999995
854
+ }, {
855
+ index: 2,
856
+ start: 2.2400009999999995,
857
+ end: 2.7400009999999995
858
+ }]
859
+ }, {
860
+ offset: 2.959999999999999,
861
+ duration: 0.4800009999999997,
862
+ text: "plan for your",
863
+ punctuations: [{
864
+ index: 0,
865
+ start: 2.959999999999999,
866
+ end: 3.119999999999999
867
+ }, {
868
+ index: 1,
869
+ start: 3.119999999999999,
870
+ end: 3.2800010000000004
871
+ }, {
872
+ index: 2,
873
+ start: 3.2800010000000004,
874
+ end: 3.4400009999999988
875
+ }]
876
+ }, {
877
+ offset: 3.4400009999999988,
878
+ duration: 0.7199990000000014,
879
+ text: "content that's not",
880
+ punctuations: [{
881
+ index: 0,
882
+ start: 3.4400009999999988,
883
+ end: 3.760000999999999
884
+ }, {
885
+ index: 1,
886
+ start: 3.760000999999999,
887
+ end: 4
888
+ }, {
889
+ index: 2,
890
+ start: 4,
891
+ end: 4.16
892
+ }]
893
+ }, {
894
+ offset: 4.16,
895
+ duration: 0.7750009999999996,
896
+ text: "actually getting in",
897
+ punctuations: [{
898
+ index: 0,
899
+ start: 4.16,
900
+ end: 4.480001
901
+ }, {
902
+ index: 1,
903
+ start: 4.480001,
904
+ end: 4.720001
905
+ }, {
906
+ index: 2,
907
+ start: 4.720001,
908
+ end: 4.935001
909
+ }]
910
+ }, {
911
+ offset: 4.935001,
912
+ duration: 0.3999989999999993,
913
+ text: "front of your",
914
+ punctuations: [{
915
+ index: 0,
916
+ start: 4.935001,
917
+ end: 5.095001
918
+ }, {
919
+ index: 1,
920
+ start: 5.095001,
921
+ end: 5.175001
922
+ }, {
923
+ index: 2,
924
+ start: 5.175001,
925
+ end: 5.334999999999999
926
+ }]
927
+ }, {
928
+ offset: 5.334999999999999,
929
+ duration: 0.9800009999999997,
930
+ text: "buyers regularly,",
931
+ punctuations: [{
932
+ index: 0,
933
+ start: 5.334999999999999,
934
+ end: 5.815000999999999
935
+ }, {
936
+ index: 1,
937
+ start: 5.815000999999999,
938
+ end: 6.315000999999999
939
+ }]
940
+ }, {
941
+ offset: 6.695001000000001,
942
+ duration: 0.639999999999997,
943
+ text: "then you don't have",
944
+ punctuations: [{
945
+ index: 0,
946
+ start: 6.695001000000001,
947
+ end: 6.855000999999998
948
+ }, {
949
+ index: 1,
950
+ start: 6.855000999999998,
951
+ end: 7.015000999999998
952
+ }, {
953
+ index: 2,
954
+ start: 7.015000999999998,
955
+ end: 7.175000999999998
956
+ }, {
957
+ index: 3,
958
+ start: 7.175000999999998,
959
+ end: 7.335000999999998
960
+ }]
961
+ }, {
962
+ offset: 7.335000999999998,
963
+ duration: 0.5599990000000012,
964
+ text: "an effective",
965
+ punctuations: [{
966
+ index: 0,
967
+ start: 7.335000999999998,
968
+ end: 7.4950009999999985
969
+ }, {
970
+ index: 1,
971
+ start: 7.4950009999999985,
972
+ end: 7.895
973
+ }]
974
+ }, {
975
+ offset: 7.895,
976
+ duration: 0.9000009999999996,
977
+ text: "content plan.",
978
+ punctuations: [{
979
+ index: 0,
980
+ start: 7.895,
981
+ end: 8.295001
982
+ }, {
983
+ index: 1,
984
+ start: 8.295001,
985
+ end: 8.795001
986
+ }]
987
+ }]
988
+ }
989
+ }]
990
+ }, {
991
+ recordingIndex: 0,
992
+ layout: {
993
+ type: "simple_frame_zoom_cut",
994
+ data: {
995
+ noBackgroundVideoEffects: {
996
+ facePop: true,
997
+ backgroundDim: true,
998
+ backgroundBlur: true
999
+ },
1000
+ sourceVideo: {
1001
+ videoUrl: "https://stream.mux.com/UD02VZa2eyMy8AgVI9hbMNf1a6lbtyctVdeK989QrJZQ/highest.mp4",
1002
+ start: 18.455,
1003
+ aspectRatio: "16:9",
1004
+ durationSeconds: 37.872,
1005
+ zoom: 1.2
1006
+ },
1007
+ duration: 13.717375,
1008
+ logoUrl: "https://cdn.zync.ai/media/brand-kit/LPDfBsKz/1733814548178-logorectangledarkbackground.png",
1009
+ frameColor: "#2C2C2C",
1010
+ disableTransitionSounds: false,
1011
+ sentenceText: null,
1012
+ text: null,
1013
+ noBackgroundVideo: {
1014
+ videoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/video/video-nobg-1762216193383.webm",
1015
+ faceMetadata: {
1016
+ total_frames: 1134,
1017
+ frames_with_face_detection: 38,
1018
+ faces_detected: 38,
1019
+ face_detection_rate: 1,
1020
+ video_properties: {
1021
+ width: 1920,
1022
+ height: 1080,
1023
+ fps: 29.995767792904,
1024
+ duration_seconds: 37.80533333333333
1025
+ },
1026
+ face_metadata: [{
1027
+ aggregation: "average",
1028
+ face_data: {
1029
+ face_center: [1002.2894736842105, 423.6842105263158],
1030
+ frame_center: [960, 540],
1031
+ offset: [42.28947368421053, -116.3157894736842],
1032
+ face_bbox: [857.9473684210526, 222.92105263157896, 289.10526315789474, 402.07894736842104],
1033
+ confidence: 0.9590692410343572,
1034
+ distance_from_center: 126.12118253169092
1035
+ },
1036
+ sample_count: 38
1037
+ }],
1038
+ aggregation: "average"
1039
+ }
1040
+ },
1041
+ paddingLeft: 0,
1042
+ paddingRight: 5.699625000000001
1043
+ }
1044
+ },
1045
+ effects: [{
1046
+ type: "caption_word_boom",
1047
+ data: {
1048
+ transcript_text: [{
1049
+ offset: 0,
1050
+ duration: 0.9600000000000009,
1051
+ text: "So if you're not",
1052
+ punctuations: [{
1053
+ index: 0,
1054
+ start: 0,
1055
+ end: 0.16000000000000014
1056
+ }, {
1057
+ index: 1,
1058
+ start: 0.16000000000000014,
1059
+ end: 0.3200000000000003
1060
+ }, {
1061
+ index: 2,
1062
+ start: 0.3200000000000003,
1063
+ end: 0.6400000000000006
1064
+ }, {
1065
+ index: 3,
1066
+ start: 0.6400000000000006,
1067
+ end: 0.9600000000000009
1068
+ }]
1069
+ }, {
1070
+ offset: 0.9600000000000009,
1071
+ duration: 1.2800000000000011,
1072
+ text: "planning for your",
1073
+ punctuations: [{
1074
+ index: 0,
1075
+ start: 0.9600000000000009,
1076
+ end: 1.4600000000000009
1077
+ }, {
1078
+ index: 1,
1079
+ start: 1.9200000000000017,
1080
+ end: 2.080000000000002
1081
+ }, {
1082
+ index: 2,
1083
+ start: 2.080000000000002,
1084
+ end: 2.240000000000002
1085
+ }]
1086
+ }, {
1087
+ offset: 2.240000000000002,
1088
+ duration: 1.6799999999999997,
1089
+ text: "distribution while",
1090
+ punctuations: [{
1091
+ index: 0,
1092
+ start: 2.240000000000002,
1093
+ end: 2.740000000000002
1094
+ }, {
1095
+ index: 1,
1096
+ start: 3.6000000000000014,
1097
+ end: 3.9200000000000017
1098
+ }]
1099
+ }, {
1100
+ offset: 3.9200000000000017,
1101
+ duration: 0.880001,
1102
+ text: "planning for your",
1103
+ punctuations: [{
1104
+ index: 0,
1105
+ start: 3.9200000000000017,
1106
+ end: 4.16
1107
+ }, {
1108
+ index: 1,
1109
+ start: 4.16,
1110
+ end: 4.32
1111
+ }, {
1112
+ index: 2,
1113
+ start: 4.32,
1114
+ end: 4.800001000000002
1115
+ }]
1116
+ }, {
1117
+ offset: 4.800001000000002,
1118
+ duration: 0.8799969999999995,
1119
+ text: "cornerstone pieces",
1120
+ punctuations: [{
1121
+ index: 0,
1122
+ start: 4.800001000000002,
1123
+ end: 5.300001000000002
1124
+ }, {
1125
+ index: 1,
1126
+ start: 5.359999000000002,
1127
+ end: 5.679998000000001
1128
+ }]
1129
+ }, {
1130
+ offset: 5.679998000000001,
1131
+ duration: 0.5600020000000008,
1132
+ text: "of content, you",
1133
+ punctuations: [{
1134
+ index: 0,
1135
+ start: 5.679998000000001,
1136
+ end: 5.760000000000002
1137
+ }, {
1138
+ index: 1,
1139
+ start: 5.760000000000002,
1140
+ end: 6.080000000000002
1141
+ }, {
1142
+ index: 2,
1143
+ start: 6.080000000000002,
1144
+ end: 6.240000000000002
1145
+ }]
1146
+ }, {
1147
+ offset: 6.240000000000002,
1148
+ duration: 0.4800000000000004,
1149
+ text: "know, those big",
1150
+ punctuations: [{
1151
+ index: 0,
1152
+ start: 6.240000000000002,
1153
+ end: 6.400000000000002
1154
+ }, {
1155
+ index: 1,
1156
+ start: 6.400000000000002,
1157
+ end: 6.560000000000002
1158
+ }, {
1159
+ index: 2,
1160
+ start: 6.560000000000002,
1161
+ end: 6.720000000000002
1162
+ }]
1163
+ }, {
1164
+ offset: 6.720000000000002,
1165
+ duration: 0.6399989999999995,
1166
+ text: "blog posts, those",
1167
+ punctuations: [{
1168
+ index: 0,
1169
+ start: 6.720000000000002,
1170
+ end: 6.960000000000001
1171
+ }, {
1172
+ index: 1,
1173
+ start: 6.960000000000001,
1174
+ end: 7.199999000000002
1175
+ }, {
1176
+ index: 2,
1177
+ start: 7.199999000000002,
1178
+ end: 7.359999000000002
1179
+ }]
1180
+ }, {
1181
+ offset: 7.359999000000002,
1182
+ duration: 1.4473759999999984,
1183
+ text: "webinars, then you",
1184
+ punctuations: [{
1185
+ index: 0,
1186
+ start: 7.359999000000002,
1187
+ end: 7.847376000000001
1188
+ }, {
1189
+ index: 1,
1190
+ start: 8.087376000000003,
1191
+ end: 8.487375
1192
+ }, {
1193
+ index: 2,
1194
+ start: 8.487375,
1195
+ end: 8.807375
1196
+ }]
1197
+ }, {
1198
+ offset: 8.807375,
1199
+ duration: 0.9600010000000019,
1200
+ text: "are missing out on",
1201
+ punctuations: [{
1202
+ index: 0,
1203
+ start: 8.807375,
1204
+ end: 9.127376000000002
1205
+ }, {
1206
+ index: 1,
1207
+ start: 9.127376000000002,
1208
+ end: 9.527376
1209
+ }, {
1210
+ index: 2,
1211
+ start: 9.527376,
1212
+ end: 9.687376
1213
+ }, {
1214
+ index: 3,
1215
+ start: 9.687376,
1216
+ end: 9.767376000000002
1217
+ }]
1218
+ }, {
1219
+ offset: 9.767376000000002,
1220
+ duration: 0.6399989999999995,
1221
+ text: "the visibility you",
1222
+ punctuations: [{
1223
+ index: 0,
1224
+ start: 9.767376000000002,
1225
+ end: 9.927376000000002
1226
+ }, {
1227
+ index: 1,
1228
+ start: 9.927376000000002,
1229
+ end: 10.327375
1230
+ }, {
1231
+ index: 2,
1232
+ start: 10.327375,
1233
+ end: 10.407375000000002
1234
+ }]
1235
+ }, {
1236
+ offset: 10.407375000000002,
1237
+ duration: 0.48000199999999893,
1238
+ text: "could be going",
1239
+ punctuations: [{
1240
+ index: 0,
1241
+ start: 10.407375000000002,
1242
+ end: 10.567375000000002
1243
+ }, {
1244
+ index: 1,
1245
+ start: 10.567375000000002,
1246
+ end: 10.647375
1247
+ }, {
1248
+ index: 2,
1249
+ start: 10.647375,
1250
+ end: 10.887377
1251
+ }]
1252
+ }, {
1253
+ offset: 10.967375,
1254
+ duration: 0.6400010000000016,
1255
+ text: "getting and that's",
1256
+ punctuations: [{
1257
+ index: 0,
1258
+ start: 10.967375,
1259
+ end: 11.127376000000002
1260
+ }, {
1261
+ index: 1,
1262
+ start: 11.127376000000002,
1263
+ end: 11.367376
1264
+ }, {
1265
+ index: 2,
1266
+ start: 11.367376,
1267
+ end: 11.607376000000002
1268
+ }]
1269
+ }, {
1270
+ offset: 11.607376000000002,
1271
+ duration: 0.7199989999999978,
1272
+ text: "what we're talking",
1273
+ punctuations: [{
1274
+ index: 0,
1275
+ start: 11.607376000000002,
1276
+ end: 11.847376
1277
+ }, {
1278
+ index: 1,
1279
+ start: 11.847376,
1280
+ end: 12.007376
1281
+ }, {
1282
+ index: 2,
1283
+ start: 12.007376,
1284
+ end: 12.327375
1285
+ }]
1286
+ }, {
1287
+ offset: 12.327375,
1288
+ duration: 1.1400000000000006,
1289
+ text: "about on Wednesday.",
1290
+ punctuations: [{
1291
+ index: 0,
1292
+ start: 12.327375,
1293
+ end: 12.727377
1294
+ }, {
1295
+ index: 1,
1296
+ start: 12.727377,
1297
+ end: 12.967375
1298
+ }, {
1299
+ index: 2,
1300
+ start: 12.967375,
1301
+ end: 13.467375
1302
+ }]
1303
+ }]
1304
+ }
1305
+ }]
1306
+ }]
1307
+ }, {
1308
+ type: "effect",
1309
+ segments: [{
1310
+ type: "title",
1311
+ theme: null,
1312
+ data: {
1313
+ text: "Justin Vajko: Create More or Distribute Better - with Justin Vajko ",
1314
+ offset: 1,
1315
+ duration: 5
1316
+ }
1317
+ }, {
1318
+ type: "nametag",
1319
+ theme: null,
1320
+ data: {
1321
+ name: "Arjun Sundararajan",
1322
+ title: "Founder at Zync.ai | Simplifying Brand Building",
1323
+ offset: 6,
1324
+ duration: 5
1325
+ }
1326
+ }]
1327
+ }, {
1328
+ type: "caption",
1329
+ segments: []
1330
+ }, {
1331
+ type: "audio",
1332
+ segments: [{
1333
+ type: "soundtrack",
1334
+ data: {
1335
+ musicConfig: "no_music",
1336
+ randomMusicUrl: "https://storage.googleapis.com/zync-media/media/music/2.mp3",
1337
+ customMusicUrl: "https://storage.googleapis.com/zync-media/media/music/2.mp3",
1338
+ sourceAudio: {
1339
+ url: "https://storage.googleapis.com/zync-media/media/music/2.mp3",
1340
+ volume: 0,
1341
+ start: 0,
1342
+ loop: true
1343
+ },
1344
+ offset: 0
1345
+ }
1346
+ }]
1347
+ }],
1348
+ output: {
1349
+ orientation: "portrait",
1350
+ fps: 60,
1351
+ callbackUrl: "undefined/api/processor/callback",
1352
+ callbackMetadata: {
1353
+ taskDetails: {
1354
+ processorId: "VIDEO_SCREENPLAY",
1355
+ groupId: "8i36AC",
1356
+ workspaceId: "LPDfBsKz",
1357
+ meetingSeriesId: "aHkoDhjc"
1358
+ }
1359
+ }
1360
+ }
1361
+ });
1362
+ //renderer.validate();
1363
+ renderer.generateMainVideoTrack();
1364
+ renderer.generateLayoutTrack();
1365
+ renderer.generateEffectsTrack();
1366
+ renderer.generateCaptionsTrack();
1367
+ renderer.generateAudioTrack();
1368
+ var defaultProps = renderer.buildRemotionTimeline();
1369
+ console.log(defaultProps);
1370
+ export { defaultProps };