@zync/zync-screnplay-player 0.1.221 → 0.1.222
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/dist/bundle.js +1 -1
- package/dist/screenplay/RemotionRenderer/components/LottieAnimationGlobal.js +21 -21
- package/dist/screenplay/RemotionRenderer/components/layouts/MultiHandoff.js +264 -0
- package/dist/screenplay/RemotionRenderer/components/utils/FaceCenteredVideo.js +50 -50
- package/dist/screenplay/RemotionRenderer/components/utils/PausableImg.js +4 -4
- package/dist/screenplay/RemotionRenderer/components/utils/README.md +80 -80
- package/dist/screenplay/RemotionRenderer/components/utils/StretchTextDemo.js +3 -3
- package/dist/screenplay/RemotionRenderer/development.js +1165 -3064
- package/dist/screenplay/RemotionRenderer/helpers/convertToSeconds.js +8 -8
- package/dist/screenplay/RemotionRenderer/helpers/faceBasedVideoStyles.js +4 -4
- package/dist/screenplay/RemotionRenderer/helpers/faceCenteredVideoTransforms.js +46 -46
- package/dist/screenplay/RemotionRenderer/main/lib/layouts/LayoutFactory.js +5 -0
- package/dist/screenplay/RemotionRenderer/main/lib/layouts/MultiHandoffLayout.js +53 -0
- package/dist/screenplay/RemotionRenderer/main/screenplaySchema.js +51 -51
- package/dist/screenplay/RemotionRenderer/registeredComponents.js +4 -2
- package/dist/screenplay/RemotionRenderer/tracks/LayoutVideoTrack.js +20 -20
- package/package.json +47 -47
|
@@ -3,2293 +3,65 @@ import { RemotionRenderer } from "./RemotionRenderer";
|
|
|
3
3
|
// edit screenplay directly here during development to test all changes
|
|
4
4
|
var renderer = new RemotionRenderer({
|
|
5
5
|
input: {
|
|
6
|
-
primaryColor: "#
|
|
7
|
-
primaryContrast: "#
|
|
8
|
-
accentColor: "#
|
|
6
|
+
primaryColor: "#303030",
|
|
7
|
+
primaryContrast: "#FFFFFF",
|
|
8
|
+
accentColor: "#d9ef4e",
|
|
9
9
|
accentContrast: "#000000",
|
|
10
|
-
theme: "
|
|
11
|
-
dynamicBackgroundPortrait: "",
|
|
12
|
-
dynamicBackgroundLandscape: "",
|
|
13
|
-
dynamicBackgroundSquare: "",
|
|
10
|
+
theme: "bigbold",
|
|
11
|
+
dynamicBackgroundPortrait: "https://cdn.solorecording.studio/media/images/1758721271080-photostudio.jpg",
|
|
12
|
+
dynamicBackgroundLandscape: "https://cdn.solorecording.studio/media/images/1758721266179-photostudio.jpg",
|
|
13
|
+
dynamicBackgroundSquare: "https://cdn.solorecording.studio/media/images/1758721276155-photostudio.jpg",
|
|
14
14
|
userBackgroundType: "natural"
|
|
15
15
|
},
|
|
16
16
|
tracks: [{
|
|
17
17
|
type: "segment",
|
|
18
18
|
segments: [{
|
|
19
|
-
recordingIndex: 0,
|
|
20
|
-
layout: {
|
|
21
|
-
type: "hook_video",
|
|
22
|
-
data: {
|
|
23
|
-
noBackgroundVideoEffects: {
|
|
24
|
-
facePop: false,
|
|
25
|
-
backgroundDim: false,
|
|
26
|
-
backgroundBlur: false
|
|
27
|
-
},
|
|
28
|
-
sourceVideo: {
|
|
29
|
-
videoUrl: "https://stream.mux.com/dZr502xuGHtVR012Do8tGgx00yJBuDGyh2OLwKECTTn7OI/highest.mp4",
|
|
30
|
-
proxyVideoUrl: "https://stream.mux.com/dZr502xuGHtVR012Do8tGgx00yJBuDGyh2OLwKECTTn7OI/highest.mp4",
|
|
31
|
-
start: 1.1999999,
|
|
32
|
-
aspectRatio: "16:9",
|
|
33
|
-
durationSeconds: 10.666633
|
|
34
|
-
},
|
|
35
|
-
duration: 6.75,
|
|
36
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
37
|
-
frameColor: "#C5B4E3",
|
|
38
|
-
hookText: "When systems stop working, attention spikes.",
|
|
39
|
-
hookAccentText: "attention spikes",
|
|
40
|
-
hookStyle: "mono_shock",
|
|
41
|
-
hookDurationSeconds: 2.6,
|
|
42
|
-
disableTransitionSounds: true,
|
|
43
|
-
paddingLeft: 1.1999999,
|
|
44
|
-
paddingRight: 2.7166330999999992
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
effects: [{
|
|
48
|
-
type: "caption_word_boom",
|
|
49
|
-
data: {
|
|
50
|
-
transcript_text: [{
|
|
51
|
-
offset: 0,
|
|
52
|
-
duration: 0.8800001000000002,
|
|
53
|
-
text: "I'm Michael Joel",
|
|
54
|
-
punctuations: [{
|
|
55
|
-
index: 0,
|
|
56
|
-
start: 0,
|
|
57
|
-
end: 0.3200001000000001
|
|
58
|
-
}, {
|
|
59
|
-
index: 1,
|
|
60
|
-
start: 0.3200001000000001,
|
|
61
|
-
end: 0.6400000000000001
|
|
62
|
-
}, {
|
|
63
|
-
index: 2,
|
|
64
|
-
start: 0.6400000000000001,
|
|
65
|
-
end: 0.8800001000000002
|
|
66
|
-
}]
|
|
67
|
-
}, {
|
|
68
|
-
offset: 0.9379887,
|
|
69
|
-
duration: 1.1420114,
|
|
70
|
-
text: "Shala, and this",
|
|
71
|
-
punctuations: [{
|
|
72
|
-
index: 0,
|
|
73
|
-
start: 0.9379887,
|
|
74
|
-
end: 1.2000000000000002
|
|
75
|
-
}, {
|
|
76
|
-
index: 1,
|
|
77
|
-
start: 1.2000000000000002,
|
|
78
|
-
end: 1.7000000000000002
|
|
79
|
-
}, {
|
|
80
|
-
index: 2,
|
|
81
|
-
start: 1.8400001000000001,
|
|
82
|
-
end: 2.0800001
|
|
83
|
-
}]
|
|
84
|
-
}, {
|
|
85
|
-
offset: 2.0800001,
|
|
86
|
-
duration: 1.3599999999999999,
|
|
87
|
-
text: "week shala, we",
|
|
88
|
-
punctuations: [{
|
|
89
|
-
index: 0,
|
|
90
|
-
start: 2.0800001,
|
|
91
|
-
end: 2.4000001
|
|
92
|
-
}, {
|
|
93
|
-
index: 1,
|
|
94
|
-
start: 2.7362968000000003,
|
|
95
|
-
end: 3.2000001000000005
|
|
96
|
-
}, {
|
|
97
|
-
index: 2,
|
|
98
|
-
start: 3.2000001000000005,
|
|
99
|
-
end: 3.4400001
|
|
100
|
-
}]
|
|
101
|
-
}, {
|
|
102
|
-
offset: 3.4400001,
|
|
103
|
-
duration: 0.8799999999999999,
|
|
104
|
-
text: "looked at when",
|
|
105
|
-
punctuations: [{
|
|
106
|
-
index: 0,
|
|
107
|
-
start: 3.4400001,
|
|
108
|
-
end: 3.7600001
|
|
109
|
-
}, {
|
|
110
|
-
index: 1,
|
|
111
|
-
start: 3.7600001,
|
|
112
|
-
end: 4.0000001
|
|
113
|
-
}, {
|
|
114
|
-
index: 2,
|
|
115
|
-
start: 4.0000001,
|
|
116
|
-
end: 4.3200001
|
|
117
|
-
}]
|
|
118
|
-
}, {
|
|
119
|
-
offset: 4.3200001,
|
|
120
|
-
duration: 1.12,
|
|
121
|
-
text: "systems stop",
|
|
122
|
-
punctuations: [{
|
|
123
|
-
index: 0,
|
|
124
|
-
start: 4.3200001,
|
|
125
|
-
end: 4.8200001
|
|
126
|
-
}, {
|
|
127
|
-
index: 1,
|
|
128
|
-
start: 4.9600001,
|
|
129
|
-
end: 5.4400001
|
|
130
|
-
}]
|
|
131
|
-
}, {
|
|
132
|
-
offset: 5.4400001,
|
|
133
|
-
duration: 0.5600000000000005,
|
|
134
|
-
text: "working as",
|
|
135
|
-
punctuations: [{
|
|
136
|
-
index: 0,
|
|
137
|
-
start: 5.4400001,
|
|
138
|
-
end: 5.8400001
|
|
139
|
-
}, {
|
|
140
|
-
index: 1,
|
|
141
|
-
start: 5.8400001,
|
|
142
|
-
end: 6.0000001
|
|
143
|
-
}]
|
|
144
|
-
}, {
|
|
145
|
-
offset: 6.0000001,
|
|
146
|
-
duration: 0.5,
|
|
147
|
-
text: "promised.",
|
|
148
|
-
punctuations: [{
|
|
149
|
-
index: 0,
|
|
150
|
-
start: 6.0000001,
|
|
151
|
-
end: 6.5000001
|
|
152
|
-
}]
|
|
153
|
-
}]
|
|
154
|
-
}
|
|
155
|
-
}]
|
|
156
|
-
}, {
|
|
157
|
-
recordingIndex: 1,
|
|
158
|
-
layout: {
|
|
159
|
-
type: "simple_frame_zoom_cut",
|
|
160
|
-
data: {
|
|
161
|
-
noBackgroundVideoEffects: {
|
|
162
|
-
facePop: false,
|
|
163
|
-
backgroundDim: false,
|
|
164
|
-
backgroundBlur: false
|
|
165
|
-
},
|
|
166
|
-
sourceVideo: {
|
|
167
|
-
videoUrl: "https://stream.mux.com/HoByUv2aclbtJ3lw9c7MIt1JiV8pGQhrMw66SX7rQ9E/highest.mp4",
|
|
168
|
-
proxyVideoUrl: "https://stream.mux.com/HoByUv2aclbtJ3lw9c7MIt1JiV8pGQhrMw66SX7rQ9E/highest.mp4",
|
|
169
|
-
start: 0.88,
|
|
170
|
-
aspectRatio: "16:9",
|
|
171
|
-
durationSeconds: 12.430067
|
|
172
|
-
},
|
|
173
|
-
duration: 9.79,
|
|
174
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
175
|
-
frameColor: "#C5B4E3",
|
|
176
|
-
disableTransitionSounds: true,
|
|
177
|
-
brollUrl: "https://videos.pexels.com/video-files/5428794/5428794-hd_1920_1080_30fps.mp4",
|
|
178
|
-
sentenceText: "When systems break, we face what’s really happening.",
|
|
179
|
-
text: "When systems break, we face what’s really happening.",
|
|
180
|
-
imageUrl: "https://images.pexels.com/photos/6564823/pexels-photo-6564823.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
181
|
-
imgBgUrlVariations: {
|
|
182
|
-
"default": "https://images.pexels.com/photos/6564823/pexels-photo-6564823.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
183
|
-
pexels: "https://images.pexels.com/photos/6564823/pexels-photo-6564823.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
184
|
-
},
|
|
185
|
-
words: ["Broken", "Systems"],
|
|
186
|
-
paddingLeft: 0.88,
|
|
187
|
-
paddingRight: 1.7600669999999994
|
|
188
|
-
}
|
|
189
|
-
},
|
|
190
|
-
effects: [{
|
|
191
|
-
type: "caption_word_boom",
|
|
192
|
-
data: {
|
|
193
|
-
transcript_text: [{
|
|
194
|
-
offset: 0,
|
|
195
|
-
duration: 0.5599999000000001,
|
|
196
|
-
text: "Everywhere we",
|
|
197
|
-
punctuations: [{
|
|
198
|
-
index: 0,
|
|
199
|
-
start: 0,
|
|
200
|
-
end: 0.4
|
|
201
|
-
}, {
|
|
202
|
-
index: 1,
|
|
203
|
-
start: 0.4,
|
|
204
|
-
end: 0.5599999000000001
|
|
205
|
-
}]
|
|
206
|
-
}, {
|
|
207
|
-
offset: 0.5599999000000001,
|
|
208
|
-
duration: 0.7199998999999999,
|
|
209
|
-
text: "looked, we found",
|
|
210
|
-
punctuations: [{
|
|
211
|
-
index: 0,
|
|
212
|
-
start: 0.5599999000000001,
|
|
213
|
-
end: 0.7999999999999999
|
|
214
|
-
}, {
|
|
215
|
-
index: 1,
|
|
216
|
-
start: 0.7999999999999999,
|
|
217
|
-
end: 0.9599999
|
|
218
|
-
}, {
|
|
219
|
-
index: 2,
|
|
220
|
-
start: 0.9599999,
|
|
221
|
-
end: 1.2799998000000001
|
|
222
|
-
}]
|
|
223
|
-
}, {
|
|
224
|
-
offset: 1.2799998000000001,
|
|
225
|
-
duration: 0.9800000999999998,
|
|
226
|
-
text: "broken pathways,",
|
|
227
|
-
punctuations: [{
|
|
228
|
-
index: 0,
|
|
229
|
-
start: 1.2799998000000001,
|
|
230
|
-
end: 1.7599999
|
|
231
|
-
}, {
|
|
232
|
-
index: 1,
|
|
233
|
-
start: 1.7599999,
|
|
234
|
-
end: 2.2599999
|
|
235
|
-
}]
|
|
236
|
-
}, {
|
|
237
|
-
offset: 3.0399998,
|
|
238
|
-
duration: 1.1400001999999998,
|
|
239
|
-
text: "predatory systems,",
|
|
240
|
-
punctuations: [{
|
|
241
|
-
index: 0,
|
|
242
|
-
start: 3.0399998,
|
|
243
|
-
end: 3.54
|
|
244
|
-
}, {
|
|
245
|
-
index: 1,
|
|
246
|
-
start: 3.6799999999999997,
|
|
247
|
-
end: 4.18
|
|
248
|
-
}]
|
|
249
|
-
}, {
|
|
250
|
-
offset: 4.64,
|
|
251
|
-
duration: 0.9600000000000009,
|
|
252
|
-
text: "and we couldn't",
|
|
253
|
-
punctuations: [{
|
|
254
|
-
index: 0,
|
|
255
|
-
start: 4.64,
|
|
256
|
-
end: 5.04
|
|
257
|
-
}, {
|
|
258
|
-
index: 1,
|
|
259
|
-
start: 5.04,
|
|
260
|
-
end: 5.2
|
|
261
|
-
}, {
|
|
262
|
-
index: 2,
|
|
263
|
-
start: 5.2,
|
|
264
|
-
end: 5.6000000000000005
|
|
265
|
-
}]
|
|
266
|
-
}, {
|
|
267
|
-
offset: 5.6000000000000005,
|
|
268
|
-
duration: 0.7199999999999998,
|
|
269
|
-
text: "help but wonder",
|
|
270
|
-
punctuations: [{
|
|
271
|
-
index: 0,
|
|
272
|
-
start: 5.6000000000000005,
|
|
273
|
-
end: 5.76
|
|
274
|
-
}, {
|
|
275
|
-
index: 1,
|
|
276
|
-
start: 5.76,
|
|
277
|
-
end: 5.9199997
|
|
278
|
-
}, {
|
|
279
|
-
index: 2,
|
|
280
|
-
start: 5.9199997,
|
|
281
|
-
end: 6.32
|
|
282
|
-
}]
|
|
283
|
-
}, {
|
|
284
|
-
offset: 6.32,
|
|
285
|
-
duration: 1.04,
|
|
286
|
-
text: "what happens when",
|
|
287
|
-
punctuations: [{
|
|
288
|
-
index: 0,
|
|
289
|
-
start: 6.32,
|
|
290
|
-
end: 6.5600000000000005
|
|
291
|
-
}, {
|
|
292
|
-
index: 1,
|
|
293
|
-
start: 6.5600000000000005,
|
|
294
|
-
end: 7.0600000000000005
|
|
295
|
-
}, {
|
|
296
|
-
index: 2,
|
|
297
|
-
start: 7.12,
|
|
298
|
-
end: 7.36
|
|
299
|
-
}]
|
|
300
|
-
}, {
|
|
301
|
-
offset: 7.36,
|
|
302
|
-
duration: 0.9599999999999991,
|
|
303
|
-
text: "the map starts",
|
|
304
|
-
punctuations: [{
|
|
305
|
-
index: 0,
|
|
306
|
-
start: 7.36,
|
|
307
|
-
end: 7.5200000000000005
|
|
308
|
-
}, {
|
|
309
|
-
index: 1,
|
|
310
|
-
start: 7.5200000000000005,
|
|
311
|
-
end: 7.840000000000001
|
|
312
|
-
}, {
|
|
313
|
-
index: 2,
|
|
314
|
-
start: 7.840000000000001,
|
|
315
|
-
end: 8.319999999999999
|
|
316
|
-
}]
|
|
317
|
-
}, {
|
|
318
|
-
offset: 8.319999999999999,
|
|
319
|
-
duration: 0.7200000000000006,
|
|
320
|
-
text: "matching the",
|
|
321
|
-
punctuations: [{
|
|
322
|
-
index: 0,
|
|
323
|
-
start: 8.319999999999999,
|
|
324
|
-
end: 8.819999999999999
|
|
325
|
-
}, {
|
|
326
|
-
index: 1,
|
|
327
|
-
start: 8.879999999999999,
|
|
328
|
-
end: 9.04
|
|
329
|
-
}]
|
|
330
|
-
}, {
|
|
331
|
-
offset: 9.04,
|
|
332
|
-
duration: 0.5,
|
|
333
|
-
text: "territory.",
|
|
334
|
-
punctuations: [{
|
|
335
|
-
index: 0,
|
|
336
|
-
start: 9.04,
|
|
337
|
-
end: 9.54
|
|
338
|
-
}]
|
|
339
|
-
}]
|
|
340
|
-
}
|
|
341
|
-
}]
|
|
342
|
-
}, {
|
|
343
|
-
recordingIndex: 2,
|
|
344
|
-
layout: {
|
|
345
|
-
type: "broll_split_screen",
|
|
346
|
-
data: {
|
|
347
|
-
noBackgroundVideoEffects: {
|
|
348
|
-
facePop: false,
|
|
349
|
-
backgroundDim: false,
|
|
350
|
-
backgroundBlur: false
|
|
351
|
-
},
|
|
352
|
-
sourceVideo: {
|
|
353
|
-
videoUrl: "https://stream.mux.com/raDWkqhm32oK02isVojFusmSxA1htm2dUoUVNjBt1Rhg/highest.mp4",
|
|
354
|
-
proxyVideoUrl: "https://stream.mux.com/raDWkqhm32oK02isVojFusmSxA1htm2dUoUVNjBt1Rhg/highest.mp4",
|
|
355
|
-
start: 0.56,
|
|
356
|
-
aspectRatio: "16:9",
|
|
357
|
-
durationSeconds: 28.8161
|
|
358
|
-
},
|
|
359
|
-
duration: 5.87,
|
|
360
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
361
|
-
frameColor: "#C5B4E3",
|
|
362
|
-
disableTransitionSounds: true,
|
|
363
|
-
brollUrl: "https://videos.pexels.com/video-files/6390310/6390310-hd_1920_1080_25fps.mp4",
|
|
364
|
-
sentenceText: "Even solid careers can suddenly lose their footing.",
|
|
365
|
-
text: "Even solid careers can suddenly lose their footing.",
|
|
366
|
-
imageUrl: "https://images.pexels.com/photos/7513165/pexels-photo-7513165.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
367
|
-
imgBgUrlVariations: {
|
|
368
|
-
"default": "https://images.pexels.com/photos/7513165/pexels-photo-7513165.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
369
|
-
pexels: "https://images.pexels.com/photos/7513165/pexels-photo-7513165.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
370
|
-
},
|
|
371
|
-
words: ["Career", "Collapse"],
|
|
372
|
-
paddingLeft: 0.56,
|
|
373
|
-
paddingRight: 0.2650000000000001
|
|
374
|
-
}
|
|
375
|
-
},
|
|
376
|
-
effects: [{
|
|
377
|
-
type: "caption_word_boom",
|
|
378
|
-
data: {
|
|
379
|
-
transcript_text: [{
|
|
380
|
-
offset: 0,
|
|
381
|
-
duration: 0.56,
|
|
382
|
-
text: "Everywhere you",
|
|
383
|
-
punctuations: [{
|
|
384
|
-
index: 0,
|
|
385
|
-
start: 0,
|
|
386
|
-
end: 0.3999999999999999
|
|
387
|
-
}, {
|
|
388
|
-
index: 1,
|
|
389
|
-
start: 0.3999999999999999,
|
|
390
|
-
end: 0.56
|
|
391
|
-
}]
|
|
392
|
-
}, {
|
|
393
|
-
offset: 0.56,
|
|
394
|
-
duration: 0.7199998999999999,
|
|
395
|
-
text: "looked in the news",
|
|
396
|
-
punctuations: [{
|
|
397
|
-
index: 0,
|
|
398
|
-
start: 0.56,
|
|
399
|
-
end: 0.8
|
|
400
|
-
}, {
|
|
401
|
-
index: 1,
|
|
402
|
-
start: 0.8,
|
|
403
|
-
end: 0.96
|
|
404
|
-
}, {
|
|
405
|
-
index: 2,
|
|
406
|
-
start: 0.96,
|
|
407
|
-
end: 1.0399999
|
|
408
|
-
}, {
|
|
409
|
-
index: 3,
|
|
410
|
-
start: 1.0399999,
|
|
411
|
-
end: 1.2799999
|
|
412
|
-
}]
|
|
413
|
-
}, {
|
|
414
|
-
offset: 1.2799999,
|
|
415
|
-
duration: 0.8800001000000002,
|
|
416
|
-
text: "this week, we read",
|
|
417
|
-
punctuations: [{
|
|
418
|
-
index: 0,
|
|
419
|
-
start: 1.2799999,
|
|
420
|
-
end: 1.44
|
|
421
|
-
}, {
|
|
422
|
-
index: 1,
|
|
423
|
-
start: 1.44,
|
|
424
|
-
end: 1.7599999999999998
|
|
425
|
-
}, {
|
|
426
|
-
index: 2,
|
|
427
|
-
start: 1.7599999999999998,
|
|
428
|
-
end: 2
|
|
429
|
-
}, {
|
|
430
|
-
index: 3,
|
|
431
|
-
start: 2,
|
|
432
|
-
end: 2.16
|
|
433
|
-
}]
|
|
434
|
-
}, {
|
|
435
|
-
offset: 2.16,
|
|
436
|
-
duration: 0.3999999999999999,
|
|
437
|
-
text: "about it.",
|
|
438
|
-
punctuations: [{
|
|
439
|
-
index: 0,
|
|
440
|
-
start: 2.16,
|
|
441
|
-
end: 2.4
|
|
442
|
-
}, {
|
|
443
|
-
index: 1,
|
|
444
|
-
start: 2.4,
|
|
445
|
-
end: 2.56
|
|
446
|
-
}]
|
|
447
|
-
}, {
|
|
448
|
-
offset: 2.56,
|
|
449
|
-
duration: 0.8999999999999995,
|
|
450
|
-
text: "There are engineers",
|
|
451
|
-
punctuations: [{
|
|
452
|
-
index: 0,
|
|
453
|
-
start: 2.56,
|
|
454
|
-
end: 2.8
|
|
455
|
-
}, {
|
|
456
|
-
index: 1,
|
|
457
|
-
start: 2.8,
|
|
458
|
-
end: 2.96
|
|
459
|
-
}, {
|
|
460
|
-
index: 2,
|
|
461
|
-
start: 2.96,
|
|
462
|
-
end: 3.4599999999999995
|
|
463
|
-
}]
|
|
464
|
-
}, {
|
|
465
|
-
offset: 3.6,
|
|
466
|
-
duration: 0.8799999999999999,
|
|
467
|
-
text: "losing their jobs",
|
|
468
|
-
punctuations: [{
|
|
469
|
-
index: 0,
|
|
470
|
-
start: 3.6,
|
|
471
|
-
end: 3.9200000000000004
|
|
472
|
-
}, {
|
|
473
|
-
index: 1,
|
|
474
|
-
start: 3.9200000000000004,
|
|
475
|
-
end: 4.16
|
|
476
|
-
}, {
|
|
477
|
-
index: 2,
|
|
478
|
-
start: 4.16,
|
|
479
|
-
end: 4.48
|
|
480
|
-
}]
|
|
481
|
-
}, {
|
|
482
|
-
offset: 4.48,
|
|
483
|
-
duration: 0.6399999999999997,
|
|
484
|
-
text: "and sweeping",
|
|
485
|
-
punctuations: [{
|
|
486
|
-
index: 0,
|
|
487
|
-
start: 4.48,
|
|
488
|
-
end: 4.640000000000001
|
|
489
|
-
}, {
|
|
490
|
-
index: 1,
|
|
491
|
-
start: 4.640000000000001,
|
|
492
|
-
end: 5.119999999999999
|
|
493
|
-
}]
|
|
494
|
-
}, {
|
|
495
|
-
offset: 5.119999999999999,
|
|
496
|
-
duration: 0.5,
|
|
497
|
-
text: "floors.",
|
|
498
|
-
punctuations: [{
|
|
499
|
-
index: 0,
|
|
500
|
-
start: 5.119999999999999,
|
|
501
|
-
end: 5.619999999999999
|
|
502
|
-
}]
|
|
503
|
-
}]
|
|
504
|
-
}
|
|
505
|
-
}]
|
|
506
|
-
}, {
|
|
507
|
-
recordingIndex: 2,
|
|
508
|
-
layout: {
|
|
509
|
-
type: "motion_still",
|
|
510
|
-
data: {
|
|
511
|
-
noBackgroundVideoEffects: {
|
|
512
|
-
facePop: false,
|
|
513
|
-
backgroundDim: false,
|
|
514
|
-
backgroundBlur: false
|
|
515
|
-
},
|
|
516
|
-
sourceVideo: {
|
|
517
|
-
videoUrl: "https://stream.mux.com/raDWkqhm32oK02isVojFusmSxA1htm2dUoUVNjBt1Rhg/highest.mp4",
|
|
518
|
-
proxyVideoUrl: "https://stream.mux.com/raDWkqhm32oK02isVojFusmSxA1htm2dUoUVNjBt1Rhg/highest.mp4",
|
|
519
|
-
start: 6.96,
|
|
520
|
-
aspectRatio: "16:9",
|
|
521
|
-
durationSeconds: 28.8161
|
|
522
|
-
},
|
|
523
|
-
duration: 4.67,
|
|
524
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
525
|
-
frameColor: "#C5B4E3",
|
|
526
|
-
disableTransitionSounds: true,
|
|
527
|
-
brollUrl: "https://videos.pexels.com/video-files/9883083/9883083-hd_1920_1080_30fps.mp4",
|
|
528
|
-
imageUrl: "https://images.pexels.com/photos/1888026/pexels-photo-1888026.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
529
|
-
imgBgUrlVariations: {
|
|
530
|
-
"default": "https://images.pexels.com/photos/1888026/pexels-photo-1888026.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
531
|
-
pexels: "https://images.pexels.com/photos/1888026/pexels-photo-1888026.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
532
|
-
},
|
|
533
|
-
words: ["dynamic", "pricing", "comparison", "two", "smartphones", "same", "product", "different", "price"],
|
|
534
|
-
paddingLeft: 0.2650000000000001,
|
|
535
|
-
paddingRight: 0.3125000000000009
|
|
536
|
-
}
|
|
537
|
-
},
|
|
538
|
-
effects: [{
|
|
539
|
-
type: "caption_word_boom",
|
|
540
|
-
data: {
|
|
541
|
-
transcript_text: [{
|
|
542
|
-
offset: 0,
|
|
543
|
-
duration: 0.7400000000000002,
|
|
544
|
-
text: "There are",
|
|
545
|
-
punctuations: [{
|
|
546
|
-
index: 0,
|
|
547
|
-
start: 0,
|
|
548
|
-
end: 0.2400000000000002
|
|
549
|
-
}, {
|
|
550
|
-
index: 1,
|
|
551
|
-
start: 0.2400000000000002,
|
|
552
|
-
end: 0.7400000000000002
|
|
553
|
-
}]
|
|
554
|
-
}, {
|
|
555
|
-
offset: 0.7999998000000001,
|
|
556
|
-
duration: 0.9600002000000005,
|
|
557
|
-
text: "logarithms that are",
|
|
558
|
-
punctuations: [{
|
|
559
|
-
index: 0,
|
|
560
|
-
start: 0.7999998000000001,
|
|
561
|
-
end: 1.2999999999999998
|
|
562
|
-
}, {
|
|
563
|
-
index: 1,
|
|
564
|
-
start: 1.4400000000000004,
|
|
565
|
-
end: 1.5999989999999995
|
|
566
|
-
}, {
|
|
567
|
-
index: 2,
|
|
568
|
-
start: 1.5999989999999995,
|
|
569
|
-
end: 1.7600000000000007
|
|
570
|
-
}]
|
|
571
|
-
}, {
|
|
572
|
-
offset: 1.7600000000000007,
|
|
573
|
-
duration: 0.7999995000000002,
|
|
574
|
-
text: "charging you more",
|
|
575
|
-
punctuations: [{
|
|
576
|
-
index: 0,
|
|
577
|
-
start: 1.7600000000000007,
|
|
578
|
-
end: 2.1599999999999993
|
|
579
|
-
}, {
|
|
580
|
-
index: 1,
|
|
581
|
-
start: 2.1599999999999993,
|
|
582
|
-
end: 2.3999999999999995
|
|
583
|
-
}, {
|
|
584
|
-
index: 2,
|
|
585
|
-
start: 2.3999999999999995,
|
|
586
|
-
end: 2.559999500000001
|
|
587
|
-
}]
|
|
588
|
-
}, {
|
|
589
|
-
offset: 2.559999500000001,
|
|
590
|
-
duration: 0.8000004999999994,
|
|
591
|
-
text: "than your neighbor",
|
|
592
|
-
punctuations: [{
|
|
593
|
-
index: 0,
|
|
594
|
-
start: 2.559999500000001,
|
|
595
|
-
end: 2.7199990000000005
|
|
596
|
-
}, {
|
|
597
|
-
index: 1,
|
|
598
|
-
start: 2.7199990000000005,
|
|
599
|
-
end: 2.96
|
|
600
|
-
}, {
|
|
601
|
-
index: 2,
|
|
602
|
-
start: 2.96,
|
|
603
|
-
end: 3.3600000000000003
|
|
604
|
-
}]
|
|
605
|
-
}, {
|
|
606
|
-
offset: 3.3600000000000003,
|
|
607
|
-
duration: 0.5600000000000005,
|
|
608
|
-
text: "for the same",
|
|
609
|
-
punctuations: [{
|
|
610
|
-
index: 0,
|
|
611
|
-
start: 3.3600000000000003,
|
|
612
|
-
end: 3.5200000000000005
|
|
613
|
-
}, {
|
|
614
|
-
index: 1,
|
|
615
|
-
start: 3.5200000000000005,
|
|
616
|
-
end: 3.6799989999999996
|
|
617
|
-
}, {
|
|
618
|
-
index: 2,
|
|
619
|
-
start: 3.6799989999999996,
|
|
620
|
-
end: 3.920000000000001
|
|
621
|
-
}]
|
|
622
|
-
}, {
|
|
623
|
-
offset: 3.920000000000001,
|
|
624
|
-
duration: 0.5,
|
|
625
|
-
text: "product.",
|
|
626
|
-
punctuations: [{
|
|
627
|
-
index: 0,
|
|
628
|
-
start: 3.920000000000001,
|
|
629
|
-
end: 4.420000000000001
|
|
630
|
-
}]
|
|
631
|
-
}]
|
|
632
|
-
}
|
|
633
|
-
}]
|
|
634
|
-
}, {
|
|
635
|
-
recordingIndex: 2,
|
|
636
|
-
layout: {
|
|
637
|
-
type: "simple_frame",
|
|
638
|
-
data: {
|
|
639
|
-
noBackgroundVideoEffects: {
|
|
640
|
-
facePop: false,
|
|
641
|
-
backgroundDim: false,
|
|
642
|
-
backgroundBlur: false
|
|
643
|
-
},
|
|
644
|
-
sourceVideo: {
|
|
645
|
-
videoUrl: "https://stream.mux.com/raDWkqhm32oK02isVojFusmSxA1htm2dUoUVNjBt1Rhg/highest.mp4",
|
|
646
|
-
proxyVideoUrl: "https://stream.mux.com/raDWkqhm32oK02isVojFusmSxA1htm2dUoUVNjBt1Rhg/highest.mp4",
|
|
647
|
-
start: 12.255,
|
|
648
|
-
aspectRatio: "16:9",
|
|
649
|
-
durationSeconds: 28.8161
|
|
650
|
-
},
|
|
651
|
-
duration: 10.08,
|
|
652
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
653
|
-
frameColor: "#C5B4E3",
|
|
654
|
-
disableTransitionSounds: true,
|
|
655
|
-
imageUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/gen/441c748a-303d-48d1-a9b8-4acb9c17a288.png",
|
|
656
|
-
imgBgUrlVariations: {
|
|
657
|
-
"default": "https://storage.googleapis.com/ai-recorder-media-assets/media/gen/441c748a-303d-48d1-a9b8-4acb9c17a288.png",
|
|
658
|
-
pexels: "https://images.pexels.com/photos/7688556/pexels-photo-7688556.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
659
|
-
},
|
|
660
|
-
paddingLeft: 0.31250000000000044,
|
|
661
|
-
paddingRight: 0
|
|
662
|
-
}
|
|
663
|
-
},
|
|
664
|
-
effects: [{
|
|
665
|
-
type: "caption_word_boom",
|
|
666
|
-
data: {
|
|
667
|
-
transcript_text: [{
|
|
668
|
-
offset: 0,
|
|
669
|
-
duration: 1.2199999999999989,
|
|
670
|
-
text: "And, apparently,",
|
|
671
|
-
punctuations: [{
|
|
672
|
-
index: 0,
|
|
673
|
-
start: 0,
|
|
674
|
-
end: 0.5
|
|
675
|
-
}, {
|
|
676
|
-
index: 1,
|
|
677
|
-
start: 0.7199999999999989,
|
|
678
|
-
end: 1.2199999999999989
|
|
679
|
-
}]
|
|
680
|
-
}, {
|
|
681
|
-
offset: 1.3599999999999994,
|
|
682
|
-
duration: 0.7200000000000006,
|
|
683
|
-
text: "we're living in a",
|
|
684
|
-
punctuations: [{
|
|
685
|
-
index: 0,
|
|
686
|
-
start: 1.3599999999999994,
|
|
687
|
-
end: 1.5200009999999988
|
|
688
|
-
}, {
|
|
689
|
-
index: 1,
|
|
690
|
-
start: 1.5200009999999988,
|
|
691
|
-
end: 1.7599999999999998
|
|
692
|
-
}, {
|
|
693
|
-
index: 2,
|
|
694
|
-
start: 1.7599999999999998,
|
|
695
|
-
end: 1.92
|
|
696
|
-
}, {
|
|
697
|
-
index: 3,
|
|
698
|
-
start: 1.92,
|
|
699
|
-
end: 2.08
|
|
700
|
-
}]
|
|
701
|
-
}, {
|
|
702
|
-
offset: 2.08,
|
|
703
|
-
duration: 1.2799999999999994,
|
|
704
|
-
text: "world where a fly",
|
|
705
|
-
punctuations: [{
|
|
706
|
-
index: 0,
|
|
707
|
-
start: 2.08,
|
|
708
|
-
end: 2.4000009999999996
|
|
709
|
-
}, {
|
|
710
|
-
index: 1,
|
|
711
|
-
start: 2.4000009999999996,
|
|
712
|
-
end: 2.799999999999999
|
|
713
|
-
}, {
|
|
714
|
-
index: 2,
|
|
715
|
-
start: 2.799999999999999,
|
|
716
|
-
end: 2.959999999999999
|
|
717
|
-
}, {
|
|
718
|
-
index: 3,
|
|
719
|
-
start: 2.959999999999999,
|
|
720
|
-
end: 3.3599999999999994
|
|
721
|
-
}]
|
|
722
|
-
}, {
|
|
723
|
-
offset: 3.3599999999999994,
|
|
724
|
-
duration: 1.2200000000000006,
|
|
725
|
-
text: "brain can run-in",
|
|
726
|
-
punctuations: [{
|
|
727
|
-
index: 0,
|
|
728
|
-
start: 3.3599999999999994,
|
|
729
|
-
end: 3.76
|
|
730
|
-
}, {
|
|
731
|
-
index: 1,
|
|
732
|
-
start: 3.76,
|
|
733
|
-
end: 4.08
|
|
734
|
-
}, {
|
|
735
|
-
index: 2,
|
|
736
|
-
start: 4.08,
|
|
737
|
-
end: 4.58
|
|
738
|
-
}]
|
|
739
|
-
}, {
|
|
740
|
-
offset: 4.880000000000001,
|
|
741
|
-
duration: 2.3199999999999967,
|
|
742
|
-
text: "silicone and get a",
|
|
743
|
-
punctuations: [{
|
|
744
|
-
index: 0,
|
|
745
|
-
start: 4.880000000000001,
|
|
746
|
-
end: 5.380000000000001
|
|
747
|
-
}, {
|
|
748
|
-
index: 1,
|
|
749
|
-
start: 6.000000999999999,
|
|
750
|
-
end: 6.500000999999999
|
|
751
|
-
}, {
|
|
752
|
-
index: 2,
|
|
753
|
-
start: 6.799999999999999,
|
|
754
|
-
end: 7.040000000000001
|
|
755
|
-
}, {
|
|
756
|
-
index: 3,
|
|
757
|
-
start: 7.040000000000001,
|
|
758
|
-
end: 7.1999999999999975
|
|
759
|
-
}]
|
|
760
|
-
}, {
|
|
761
|
-
offset: 7.1999999999999975,
|
|
762
|
-
duration: 2.1800000000000033,
|
|
763
|
-
text: "little mecca avatar",
|
|
764
|
-
punctuations: [{
|
|
765
|
-
index: 0,
|
|
766
|
-
start: 7.1999999999999975,
|
|
767
|
-
end: 7.6999999999999975
|
|
768
|
-
}, {
|
|
769
|
-
index: 1,
|
|
770
|
-
start: 8.159999999999998,
|
|
771
|
-
end: 8.659999999999998
|
|
772
|
-
}, {
|
|
773
|
-
index: 2,
|
|
774
|
-
start: 8.88,
|
|
775
|
-
end: 9.38
|
|
776
|
-
}]
|
|
777
|
-
}, {
|
|
778
|
-
offset: 9.44,
|
|
779
|
-
duration: 0.5,
|
|
780
|
-
text: "body.",
|
|
781
|
-
punctuations: [{
|
|
782
|
-
index: 0,
|
|
783
|
-
start: 9.44,
|
|
784
|
-
end: 9.94
|
|
785
|
-
}]
|
|
786
|
-
}]
|
|
787
|
-
}
|
|
788
|
-
}]
|
|
789
|
-
}, {
|
|
790
|
-
recordingIndex: 2,
|
|
791
|
-
layout: {
|
|
792
|
-
type: "simple_frame_zoom_cut",
|
|
793
|
-
data: {
|
|
794
|
-
noBackgroundVideoEffects: {
|
|
795
|
-
facePop: false,
|
|
796
|
-
backgroundDim: false,
|
|
797
|
-
backgroundBlur: false
|
|
798
|
-
},
|
|
799
|
-
sourceVideo: {
|
|
800
|
-
videoUrl: "https://stream.mux.com/raDWkqhm32oK02isVojFusmSxA1htm2dUoUVNjBt1Rhg/highest.mp4",
|
|
801
|
-
proxyVideoUrl: "https://stream.mux.com/raDWkqhm32oK02isVojFusmSxA1htm2dUoUVNjBt1Rhg/highest.mp4",
|
|
802
|
-
start: 22.335,
|
|
803
|
-
aspectRatio: "16:9",
|
|
804
|
-
durationSeconds: 28.8161
|
|
805
|
-
},
|
|
806
|
-
duration: 4.670001,
|
|
807
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
808
|
-
frameColor: "#C5B4E3",
|
|
809
|
-
disableTransitionSounds: true,
|
|
810
|
-
paddingLeft: 0,
|
|
811
|
-
paddingRight: 1.8110989999999978
|
|
812
|
-
}
|
|
813
|
-
},
|
|
814
|
-
effects: [{
|
|
815
|
-
type: "caption_word_boom",
|
|
816
|
-
data: {
|
|
817
|
-
transcript_text: [{
|
|
818
|
-
offset: 0,
|
|
819
|
-
duration: 0.7199999999999989,
|
|
820
|
-
text: "Doesn't this bring",
|
|
821
|
-
punctuations: [{
|
|
822
|
-
index: 0,
|
|
823
|
-
start: 0,
|
|
824
|
-
end: 0.31999899999999926
|
|
825
|
-
}, {
|
|
826
|
-
index: 1,
|
|
827
|
-
start: 0.31999899999999926,
|
|
828
|
-
end: 0.4800000000000004
|
|
829
|
-
}, {
|
|
830
|
-
index: 2,
|
|
831
|
-
start: 0.4800000000000004,
|
|
832
|
-
end: 0.7199999999999989
|
|
833
|
-
}]
|
|
834
|
-
}, {
|
|
835
|
-
offset: 0.7199999999999989,
|
|
836
|
-
duration: 0.6400000000000006,
|
|
837
|
-
text: "up fabulous",
|
|
838
|
-
punctuations: [{
|
|
839
|
-
index: 0,
|
|
840
|
-
start: 0.7199999999999989,
|
|
841
|
-
end: 0.879999999999999
|
|
842
|
-
}, {
|
|
843
|
-
index: 1,
|
|
844
|
-
start: 0.879999999999999,
|
|
845
|
-
end: 1.3599999999999994
|
|
846
|
-
}]
|
|
847
|
-
}, {
|
|
848
|
-
offset: 1.3599999999999994,
|
|
849
|
-
duration: 0.5600009999999997,
|
|
850
|
-
text: "questions about",
|
|
851
|
-
punctuations: [{
|
|
852
|
-
index: 0,
|
|
853
|
-
start: 1.3599999999999994,
|
|
854
|
-
end: 1.760000999999999
|
|
855
|
-
}, {
|
|
856
|
-
index: 1,
|
|
857
|
-
start: 1.760000999999999,
|
|
858
|
-
end: 1.9200009999999992
|
|
859
|
-
}]
|
|
860
|
-
}, {
|
|
861
|
-
offset: 1.9200009999999992,
|
|
862
|
-
duration: 0.5,
|
|
863
|
-
text: "consciousness?",
|
|
864
|
-
punctuations: [{
|
|
865
|
-
index: 0,
|
|
866
|
-
start: 1.9200009999999992,
|
|
867
|
-
end: 2.420000999999999
|
|
868
|
-
}]
|
|
869
|
-
}, {
|
|
870
|
-
offset: 2.879999999999999,
|
|
871
|
-
duration: 1.0400010000000002,
|
|
872
|
-
text: "Doesn't it feel",
|
|
873
|
-
punctuations: [{
|
|
874
|
-
index: 0,
|
|
875
|
-
start: 2.879999999999999,
|
|
876
|
-
end: 3.1999999999999993
|
|
877
|
-
}, {
|
|
878
|
-
index: 1,
|
|
879
|
-
start: 3.1999999999999993,
|
|
880
|
-
end: 3.4399999999999977
|
|
881
|
-
}, {
|
|
882
|
-
index: 2,
|
|
883
|
-
start: 3.4399999999999977,
|
|
884
|
-
end: 3.920000999999999
|
|
885
|
-
}]
|
|
886
|
-
}, {
|
|
887
|
-
offset: 3.920000999999999,
|
|
888
|
-
duration: 0.5,
|
|
889
|
-
text: "urgent?",
|
|
890
|
-
punctuations: [{
|
|
891
|
-
index: 0,
|
|
892
|
-
start: 3.920000999999999,
|
|
893
|
-
end: 4.420000999999999
|
|
894
|
-
}]
|
|
895
|
-
}]
|
|
896
|
-
}
|
|
897
|
-
}]
|
|
898
|
-
}, {
|
|
899
|
-
recordingIndex: 3,
|
|
900
|
-
layout: {
|
|
901
|
-
type: "keyword",
|
|
902
|
-
data: {
|
|
903
|
-
noBackgroundVideoEffects: {
|
|
904
|
-
facePop: false,
|
|
905
|
-
backgroundDim: false,
|
|
906
|
-
backgroundBlur: false
|
|
907
|
-
},
|
|
908
|
-
sourceVideo: {
|
|
909
|
-
videoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
910
|
-
proxyVideoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
911
|
-
start: 0.71999997,
|
|
912
|
-
aspectRatio: "16:9",
|
|
913
|
-
durationSeconds: 41.083033
|
|
914
|
-
},
|
|
915
|
-
duration: 7.15,
|
|
916
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
917
|
-
frameColor: "#C5B4E3",
|
|
918
|
-
disableTransitionSounds: true,
|
|
919
|
-
brollUrl: "https://videos.pexels.com/video-files/8852582/8852582-hd_1920_1080_30fps.mp4",
|
|
920
|
-
words: ["research", "lab", "scientists", "watching", "computer", "simulation", "monitors"],
|
|
921
|
-
paddingLeft: 0.71999997,
|
|
922
|
-
paddingRight: 0.3849995149999996
|
|
923
|
-
}
|
|
924
|
-
},
|
|
925
|
-
effects: [{
|
|
926
|
-
type: "caption_word_boom",
|
|
927
|
-
data: {
|
|
928
|
-
transcript_text: [{
|
|
929
|
-
offset: 0,
|
|
930
|
-
duration: 0.9000000300000001,
|
|
931
|
-
text: "So interesting.",
|
|
932
|
-
punctuations: [{
|
|
933
|
-
index: 0,
|
|
934
|
-
start: 0,
|
|
935
|
-
end: 0.40000003000000006
|
|
936
|
-
}, {
|
|
937
|
-
index: 1,
|
|
938
|
-
start: 0.40000003000000006,
|
|
939
|
-
end: 0.9000000300000001
|
|
940
|
-
}]
|
|
941
|
-
}, {
|
|
942
|
-
offset: 1.28000003,
|
|
943
|
-
duration: 1.3799999,
|
|
944
|
-
text: "This week traced",
|
|
945
|
-
punctuations: [{
|
|
946
|
-
index: 0,
|
|
947
|
-
start: 1.28000003,
|
|
948
|
-
end: 1.60000003
|
|
949
|
-
}, {
|
|
950
|
-
index: 1,
|
|
951
|
-
start: 1.60000003,
|
|
952
|
-
end: 2.10000003
|
|
953
|
-
}, {
|
|
954
|
-
index: 2,
|
|
955
|
-
start: 2.15999993,
|
|
956
|
-
end: 2.65999993
|
|
957
|
-
}]
|
|
958
|
-
}, {
|
|
959
|
-
offset: 2.71999983,
|
|
960
|
-
duration: 1.0400002000000006,
|
|
961
|
-
text: "the contours of",
|
|
962
|
-
punctuations: [{
|
|
963
|
-
index: 0,
|
|
964
|
-
start: 2.71999983,
|
|
965
|
-
end: 2.95999983
|
|
966
|
-
}, {
|
|
967
|
-
index: 1,
|
|
968
|
-
start: 2.95999983,
|
|
969
|
-
end: 3.46000003
|
|
970
|
-
}, {
|
|
971
|
-
index: 2,
|
|
972
|
-
start: 3.5200000300000003,
|
|
973
|
-
end: 3.7600000300000005
|
|
974
|
-
}]
|
|
975
|
-
}, {
|
|
976
|
-
offset: 3.7600000300000005,
|
|
977
|
-
duration: 0.7999996999999999,
|
|
978
|
-
text: "systems that are",
|
|
979
|
-
punctuations: [{
|
|
980
|
-
index: 0,
|
|
981
|
-
start: 3.7600000300000005,
|
|
982
|
-
end: 4.24000003
|
|
983
|
-
}, {
|
|
984
|
-
index: 1,
|
|
985
|
-
start: 4.24000003,
|
|
986
|
-
end: 4.40000003
|
|
987
|
-
}, {
|
|
988
|
-
index: 2,
|
|
989
|
-
start: 4.40000003,
|
|
990
|
-
end: 4.55999973
|
|
991
|
-
}]
|
|
992
|
-
}, {
|
|
993
|
-
offset: 4.55999973,
|
|
994
|
-
duration: 1.0599999999999996,
|
|
995
|
-
text: "both in collapse",
|
|
996
|
-
punctuations: [{
|
|
997
|
-
index: 0,
|
|
998
|
-
start: 4.55999973,
|
|
999
|
-
end: 4.88000003
|
|
1000
|
-
}, {
|
|
1001
|
-
index: 1,
|
|
1002
|
-
start: 4.88000003,
|
|
1003
|
-
end: 5.11999973
|
|
1004
|
-
}, {
|
|
1005
|
-
index: 2,
|
|
1006
|
-
start: 5.11999973,
|
|
1007
|
-
end: 5.61999973
|
|
1008
|
-
}]
|
|
1009
|
-
}, {
|
|
1010
|
-
offset: 6.07999973,
|
|
1011
|
-
duration: 0.8200003000000002,
|
|
1012
|
-
text: "and transformation.",
|
|
1013
|
-
punctuations: [{
|
|
1014
|
-
index: 0,
|
|
1015
|
-
start: 6.07999973,
|
|
1016
|
-
end: 6.40000003
|
|
1017
|
-
}, {
|
|
1018
|
-
index: 1,
|
|
1019
|
-
start: 6.40000003,
|
|
1020
|
-
end: 6.90000003
|
|
1021
|
-
}]
|
|
1022
|
-
}]
|
|
1023
|
-
}
|
|
1024
|
-
}]
|
|
1025
|
-
}, {
|
|
1026
|
-
recordingIndex: 3,
|
|
1027
|
-
layout: {
|
|
1028
|
-
type: "simple_frame_zoom_cut",
|
|
1029
|
-
data: {
|
|
1030
|
-
noBackgroundVideoEffects: {
|
|
1031
|
-
facePop: false,
|
|
1032
|
-
backgroundDim: false,
|
|
1033
|
-
backgroundBlur: false
|
|
1034
|
-
},
|
|
1035
|
-
sourceVideo: {
|
|
1036
|
-
videoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
1037
|
-
proxyVideoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
1038
|
-
start: 8.639999,
|
|
1039
|
-
aspectRatio: "16:9",
|
|
1040
|
-
durationSeconds: 41.083033
|
|
1041
|
-
},
|
|
1042
|
-
duration: 8.725001,
|
|
1043
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
1044
|
-
frameColor: "#C5B4E3",
|
|
1045
|
-
disableTransitionSounds: true,
|
|
1046
|
-
brollUrl: "https://videos.pexels.com/video-files/8060865/8060865-hd_1920_1080_25fps.mp4",
|
|
1047
|
-
words: ["college", "graduates", "diploma", "job", "search", "rejection", "email"],
|
|
1048
|
-
paddingLeft: 0.3849995149999996,
|
|
1049
|
-
paddingRight: 0
|
|
1050
|
-
}
|
|
1051
|
-
},
|
|
1052
|
-
effects: [{
|
|
1053
|
-
type: "caption_word_boom",
|
|
1054
|
-
data: {
|
|
1055
|
-
transcript_text: [{
|
|
1056
|
-
offset: 0,
|
|
1057
|
-
duration: 0.7400010000000012,
|
|
1058
|
-
text: "The professional",
|
|
1059
|
-
punctuations: [{
|
|
1060
|
-
index: 0,
|
|
1061
|
-
start: 0,
|
|
1062
|
-
end: 0.24000100000000124
|
|
1063
|
-
}, {
|
|
1064
|
-
index: 1,
|
|
1065
|
-
start: 0.24000100000000124,
|
|
1066
|
-
end: 0.7400010000000012
|
|
1067
|
-
}]
|
|
1068
|
-
}, {
|
|
1069
|
-
offset: 0.9600000000000009,
|
|
1070
|
-
duration: 1.680000999999999,
|
|
1071
|
-
text: "pathways that stop",
|
|
1072
|
-
punctuations: [{
|
|
1073
|
-
index: 0,
|
|
1074
|
-
start: 0.9600000000000009,
|
|
1075
|
-
end: 1.4600000000000009
|
|
1076
|
-
}, {
|
|
1077
|
-
index: 1,
|
|
1078
|
-
start: 1.8400010000000009,
|
|
1079
|
-
end: 2.2400010000000012
|
|
1080
|
-
}, {
|
|
1081
|
-
index: 2,
|
|
1082
|
-
start: 2.2400010000000012,
|
|
1083
|
-
end: 2.640001
|
|
1084
|
-
}]
|
|
1085
|
-
}, {
|
|
1086
|
-
offset: 2.640001,
|
|
1087
|
-
duration: 0.8999990000000011,
|
|
1088
|
-
text: "leading anywhere",
|
|
1089
|
-
punctuations: [{
|
|
1090
|
-
index: 0,
|
|
1091
|
-
start: 2.640001,
|
|
1092
|
-
end: 3.040000000000001
|
|
1093
|
-
}, {
|
|
1094
|
-
index: 1,
|
|
1095
|
-
start: 3.040000000000001,
|
|
1096
|
-
end: 3.540000000000001
|
|
1097
|
-
}]
|
|
1098
|
-
}, {
|
|
1099
|
-
offset: 4.08,
|
|
1100
|
-
duration: 0.9600000000000009,
|
|
1101
|
-
text: "showed what happens",
|
|
1102
|
-
punctuations: [{
|
|
1103
|
-
index: 0,
|
|
1104
|
-
start: 4.08,
|
|
1105
|
-
end: 4.400001
|
|
1106
|
-
}, {
|
|
1107
|
-
index: 1,
|
|
1108
|
-
start: 4.400001,
|
|
1109
|
-
end: 4.640001
|
|
1110
|
-
}, {
|
|
1111
|
-
index: 2,
|
|
1112
|
-
start: 4.640001,
|
|
1113
|
-
end: 5.040000000000001
|
|
1114
|
-
}]
|
|
1115
|
-
}, {
|
|
1116
|
-
offset: 5.040000000000001,
|
|
1117
|
-
duration: 1.2000010000000003,
|
|
1118
|
-
text: "when when",
|
|
1119
|
-
punctuations: [{
|
|
1120
|
-
index: 0,
|
|
1121
|
-
start: 5.040000000000001,
|
|
1122
|
-
end: 5.540000000000001
|
|
1123
|
-
}, {
|
|
1124
|
-
index: 1,
|
|
1125
|
-
start: 5.840001000000001,
|
|
1126
|
-
end: 6.240001000000001
|
|
1127
|
-
}]
|
|
1128
|
-
}, {
|
|
1129
|
-
offset: 6.240001000000001,
|
|
1130
|
-
duration: 1.334999999999999,
|
|
1131
|
-
text: "credentials lose",
|
|
1132
|
-
punctuations: [{
|
|
1133
|
-
index: 0,
|
|
1134
|
-
start: 6.240001000000001,
|
|
1135
|
-
end: 6.740001000000001
|
|
1136
|
-
}, {
|
|
1137
|
-
index: 1,
|
|
1138
|
-
start: 7.335000000000001,
|
|
1139
|
-
end: 7.575001
|
|
1140
|
-
}]
|
|
1141
|
-
}, {
|
|
1142
|
-
offset: 7.575001,
|
|
1143
|
-
duration: 0.8999999999999986,
|
|
1144
|
-
text: "their promise.",
|
|
1145
|
-
punctuations: [{
|
|
1146
|
-
index: 0,
|
|
1147
|
-
start: 7.575001,
|
|
1148
|
-
end: 7.975000999999999
|
|
1149
|
-
}, {
|
|
1150
|
-
index: 1,
|
|
1151
|
-
start: 7.975000999999999,
|
|
1152
|
-
end: 8.475000999999999
|
|
1153
|
-
}]
|
|
1154
|
-
}]
|
|
1155
|
-
}
|
|
1156
|
-
}]
|
|
1157
|
-
}, {
|
|
1158
|
-
recordingIndex: 3,
|
|
1159
|
-
layout: {
|
|
1160
|
-
type: "simple_frame",
|
|
1161
|
-
data: {
|
|
1162
|
-
noBackgroundVideoEffects: {
|
|
1163
|
-
facePop: false,
|
|
1164
|
-
backgroundDim: false,
|
|
1165
|
-
backgroundBlur: false
|
|
1166
|
-
},
|
|
1167
|
-
sourceVideo: {
|
|
1168
|
-
videoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
1169
|
-
proxyVideoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
1170
|
-
start: 17.494999,
|
|
1171
|
-
aspectRatio: "16:9",
|
|
1172
|
-
durationSeconds: 41.083033
|
|
1173
|
-
},
|
|
1174
|
-
duration: 6.110001,
|
|
1175
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
1176
|
-
frameColor: "#C5B4E3",
|
|
1177
|
-
disableTransitionSounds: true,
|
|
1178
|
-
paddingLeft: 0,
|
|
1179
|
-
paddingRight: 0.3049999999999997
|
|
1180
|
-
}
|
|
1181
|
-
},
|
|
1182
|
-
effects: [{
|
|
1183
|
-
type: "caption_word_boom",
|
|
1184
|
-
data: {
|
|
1185
|
-
transcript_text: [{
|
|
1186
|
-
offset: 0,
|
|
1187
|
-
duration: 1.2000010000000003,
|
|
1188
|
-
text: "And when that",
|
|
1189
|
-
punctuations: [{
|
|
1190
|
-
index: 0,
|
|
1191
|
-
start: 0,
|
|
1192
|
-
end: 0.5
|
|
1193
|
-
}, {
|
|
1194
|
-
index: 1,
|
|
1195
|
-
start: 0.6400010000000016,
|
|
1196
|
-
end: 0.880001
|
|
1197
|
-
}, {
|
|
1198
|
-
index: 2,
|
|
1199
|
-
start: 0.880001,
|
|
1200
|
-
end: 1.2000010000000003
|
|
1201
|
-
}]
|
|
1202
|
-
}, {
|
|
1203
|
-
offset: 1.2000010000000003,
|
|
1204
|
-
duration: 0.879998999999998,
|
|
1205
|
-
text: "starts to happen,",
|
|
1206
|
-
punctuations: [{
|
|
1207
|
-
index: 0,
|
|
1208
|
-
start: 1.2000010000000003,
|
|
1209
|
-
end: 1.5200010000000006
|
|
1210
|
-
}, {
|
|
1211
|
-
index: 1,
|
|
1212
|
-
start: 1.5200010000000006,
|
|
1213
|
-
end: 1.6800010000000007
|
|
1214
|
-
}, {
|
|
1215
|
-
index: 2,
|
|
1216
|
-
start: 1.6800010000000007,
|
|
1217
|
-
end: 2.0799999999999983
|
|
1218
|
-
}]
|
|
1219
|
-
}, {
|
|
1220
|
-
offset: 2.0799999999999983,
|
|
1221
|
-
duration: 1.2200010000000034,
|
|
1222
|
-
text: "when there is a big",
|
|
1223
|
-
punctuations: [{
|
|
1224
|
-
index: 0,
|
|
1225
|
-
start: 2.0799999999999983,
|
|
1226
|
-
end: 2.2400009999999995
|
|
1227
|
-
}, {
|
|
1228
|
-
index: 1,
|
|
1229
|
-
start: 2.2400009999999995,
|
|
1230
|
-
end: 2.4000009999999996
|
|
1231
|
-
}, {
|
|
1232
|
-
index: 2,
|
|
1233
|
-
start: 2.4000009999999996,
|
|
1234
|
-
end: 2.6400010000000016
|
|
1235
|
-
}, {
|
|
1236
|
-
index: 3,
|
|
1237
|
-
start: 2.6400010000000016,
|
|
1238
|
-
end: 2.8000010000000017
|
|
1239
|
-
}, {
|
|
1240
|
-
index: 4,
|
|
1241
|
-
start: 2.8000010000000017,
|
|
1242
|
-
end: 3.3000010000000017
|
|
1243
|
-
}]
|
|
1244
|
-
}, {
|
|
1245
|
-
offset: 3.68853,
|
|
1246
|
-
duration: 1.2714709999999982,
|
|
1247
|
-
text: "shala, it gets a",
|
|
1248
|
-
punctuations: [{
|
|
1249
|
-
index: 0,
|
|
1250
|
-
start: 3.68853,
|
|
1251
|
-
end: 3.9679409999999997
|
|
1252
|
-
}, {
|
|
1253
|
-
index: 1,
|
|
1254
|
-
start: 4.400001,
|
|
1255
|
-
end: 4.6399989999999995
|
|
1256
|
-
}, {
|
|
1257
|
-
index: 2,
|
|
1258
|
-
start: 4.6399989999999995,
|
|
1259
|
-
end: 4.880001
|
|
1260
|
-
}, {
|
|
1261
|
-
index: 3,
|
|
1262
|
-
start: 4.880001,
|
|
1263
|
-
end: 4.960000999999998
|
|
1264
|
-
}]
|
|
1265
|
-
}, {
|
|
1266
|
-
offset: 4.960000999999998,
|
|
1267
|
-
duration: 0.9000000000000021,
|
|
1268
|
-
text: "little scary.",
|
|
1269
|
-
punctuations: [{
|
|
1270
|
-
index: 0,
|
|
1271
|
-
start: 4.960000999999998,
|
|
1272
|
-
end: 5.3600010000000005
|
|
1273
|
-
}, {
|
|
1274
|
-
index: 1,
|
|
1275
|
-
start: 5.3600010000000005,
|
|
1276
|
-
end: 5.8600010000000005
|
|
1277
|
-
}]
|
|
1278
|
-
}]
|
|
1279
|
-
}
|
|
1280
|
-
}]
|
|
1281
|
-
}, {
|
|
1282
|
-
recordingIndex: 3,
|
|
1283
|
-
layout: {
|
|
1284
|
-
type: "text_with_video",
|
|
1285
|
-
data: {
|
|
1286
|
-
noBackgroundVideoEffects: {
|
|
1287
|
-
facePop: false,
|
|
1288
|
-
backgroundDim: false,
|
|
1289
|
-
backgroundBlur: false
|
|
1290
|
-
},
|
|
1291
|
-
sourceVideo: {
|
|
1292
|
-
videoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
1293
|
-
proxyVideoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
1294
|
-
start: 24.215,
|
|
1295
|
-
aspectRatio: "16:9",
|
|
1296
|
-
durationSeconds: 41.083033
|
|
1297
|
-
},
|
|
1298
|
-
duration: 9.495000000000001,
|
|
1299
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
1300
|
-
frameColor: "#C5B4E3",
|
|
1301
|
-
disableTransitionSounds: true,
|
|
1302
|
-
brollUrl: "https://videos.pexels.com/video-files/8085540/8085540-uhd_2560_1440_24fps.mp4",
|
|
1303
|
-
sentenceText: "Dynamic pricing bakes inequality into everyday purchases.",
|
|
1304
|
-
text: "Dynamic pricing bakes inequality into everyday purchases.",
|
|
1305
|
-
imageUrl: "https://images.pexels.com/photos/430208/pexels-photo-430208.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
1306
|
-
imgBgUrlVariations: {
|
|
1307
|
-
"default": "https://images.pexels.com/photos/430208/pexels-photo-430208.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
1308
|
-
pexels: "https://images.pexels.com/photos/430208/pexels-photo-430208.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
1309
|
-
},
|
|
1310
|
-
words: ["Algorithmic", "Inequality"],
|
|
1311
|
-
paddingLeft: 0.30500000000000016,
|
|
1312
|
-
paddingRight: 0
|
|
1313
|
-
}
|
|
1314
|
-
},
|
|
1315
|
-
effects: [{
|
|
1316
|
-
type: "caption_word_boom",
|
|
1317
|
-
data: {
|
|
1318
|
-
transcript_text: [{
|
|
1319
|
-
offset: 0,
|
|
1320
|
-
duration: 0.9600000000000009,
|
|
1321
|
-
text: "Who says how much",
|
|
1322
|
-
punctuations: [{
|
|
1323
|
-
index: 0,
|
|
1324
|
-
start: 0,
|
|
1325
|
-
end: 0.23999999999999844
|
|
1326
|
-
}, {
|
|
1327
|
-
index: 1,
|
|
1328
|
-
start: 0.23999999999999844,
|
|
1329
|
-
end: 0.5599999999999987
|
|
1330
|
-
}, {
|
|
1331
|
-
index: 2,
|
|
1332
|
-
start: 0.5599999999999987,
|
|
1333
|
-
end: 0.8000000000000007
|
|
1334
|
-
}, {
|
|
1335
|
-
index: 3,
|
|
1336
|
-
start: 0.8000000000000007,
|
|
1337
|
-
end: 0.9600000000000009
|
|
1338
|
-
}]
|
|
1339
|
-
}, {
|
|
1340
|
-
offset: 0.9600000000000009,
|
|
1341
|
-
duration: 1.0599999999999987,
|
|
1342
|
-
text: "you get to make?",
|
|
1343
|
-
punctuations: [{
|
|
1344
|
-
index: 0,
|
|
1345
|
-
start: 0.9600000000000009,
|
|
1346
|
-
end: 1.120000000000001
|
|
1347
|
-
}, {
|
|
1348
|
-
index: 1,
|
|
1349
|
-
start: 1.120000000000001,
|
|
1350
|
-
end: 1.3599999999999994
|
|
1351
|
-
}, {
|
|
1352
|
-
index: 2,
|
|
1353
|
-
start: 1.3599999999999994,
|
|
1354
|
-
end: 1.5199999999999996
|
|
1355
|
-
}, {
|
|
1356
|
-
index: 3,
|
|
1357
|
-
start: 1.5199999999999996,
|
|
1358
|
-
end: 2.0199999999999996
|
|
1359
|
-
}]
|
|
1360
|
-
}, {
|
|
1361
|
-
offset: 2.239998,
|
|
1362
|
-
duration: 1.0600020000000008,
|
|
1363
|
-
text: "Well, dynamic",
|
|
1364
|
-
punctuations: [{
|
|
1365
|
-
index: 0,
|
|
1366
|
-
start: 2.239998,
|
|
1367
|
-
end: 2.739998
|
|
1368
|
-
}, {
|
|
1369
|
-
index: 1,
|
|
1370
|
-
start: 2.8000000000000007,
|
|
1371
|
-
end: 3.3000000000000007
|
|
1372
|
-
}]
|
|
1373
|
-
}, {
|
|
1374
|
-
offset: 3.4399990000000003,
|
|
1375
|
-
duration: 0.9799989999999994,
|
|
1376
|
-
text: "pricing algorithms",
|
|
1377
|
-
punctuations: [{
|
|
1378
|
-
index: 0,
|
|
1379
|
-
start: 3.4399990000000003,
|
|
1380
|
-
end: 3.9199979999999996
|
|
1381
|
-
}, {
|
|
1382
|
-
index: 1,
|
|
1383
|
-
start: 3.9199979999999996,
|
|
1384
|
-
end: 4.419998
|
|
1385
|
-
}]
|
|
1386
|
-
}, {
|
|
1387
|
-
offset: 4.640000000000001,
|
|
1388
|
-
duration: 0.6399989999999995,
|
|
1389
|
-
text: "reveal how",
|
|
1390
|
-
punctuations: [{
|
|
1391
|
-
index: 0,
|
|
1392
|
-
start: 4.640000000000001,
|
|
1393
|
-
end: 5.120000000000001
|
|
1394
|
-
}, {
|
|
1395
|
-
index: 1,
|
|
1396
|
-
start: 5.120000000000001,
|
|
1397
|
-
end: 5.279999
|
|
1398
|
-
}]
|
|
1399
|
-
}, {
|
|
1400
|
-
offset: 5.279999,
|
|
1401
|
-
duration: 0.5,
|
|
1402
|
-
text: "surveillance",
|
|
1403
|
-
punctuations: [{
|
|
1404
|
-
index: 0,
|
|
1405
|
-
start: 5.279999,
|
|
1406
|
-
end: 5.779999
|
|
1407
|
-
}]
|
|
1408
|
-
}, {
|
|
1409
|
-
offset: 6.024999999999999,
|
|
1410
|
-
duration: 1.2200000000000024,
|
|
1411
|
-
text: "capitalism builds",
|
|
1412
|
-
punctuations: [{
|
|
1413
|
-
index: 0,
|
|
1414
|
-
start: 6.024999999999999,
|
|
1415
|
-
end: 6.524999999999999
|
|
1416
|
-
}, {
|
|
1417
|
-
index: 1,
|
|
1418
|
-
start: 6.745000000000001,
|
|
1419
|
-
end: 7.245000000000001
|
|
1420
|
-
}]
|
|
1421
|
-
}, {
|
|
1422
|
-
offset: 7.385000000000002,
|
|
1423
|
-
duration: 0.9600000000000009,
|
|
1424
|
-
text: "inequality into",
|
|
1425
|
-
punctuations: [{
|
|
1426
|
-
index: 0,
|
|
1427
|
-
start: 7.385000000000002,
|
|
1428
|
-
end: 7.885000000000002
|
|
1429
|
-
}, {
|
|
1430
|
-
index: 1,
|
|
1431
|
-
start: 8.105,
|
|
1432
|
-
end: 8.345000000000002
|
|
1433
|
-
}]
|
|
1434
|
-
}, {
|
|
1435
|
-
offset: 8.345000000000002,
|
|
1436
|
-
duration: 0.8999999999999986,
|
|
1437
|
-
text: "every transaction.",
|
|
1438
|
-
punctuations: [{
|
|
1439
|
-
index: 0,
|
|
1440
|
-
start: 8.345000000000002,
|
|
1441
|
-
end: 8.745000000000001
|
|
1442
|
-
}, {
|
|
1443
|
-
index: 1,
|
|
1444
|
-
start: 8.745000000000001,
|
|
1445
|
-
end: 9.245000000000001
|
|
1446
|
-
}]
|
|
1447
|
-
}]
|
|
1448
|
-
}
|
|
1449
|
-
}]
|
|
1450
|
-
}, {
|
|
1451
|
-
recordingIndex: 3,
|
|
1452
|
-
layout: {
|
|
1453
|
-
type: "simple_frame",
|
|
1454
|
-
data: {
|
|
1455
|
-
noBackgroundVideoEffects: {
|
|
1456
|
-
facePop: false,
|
|
1457
|
-
backgroundDim: false,
|
|
1458
|
-
backgroundBlur: false
|
|
1459
|
-
},
|
|
1460
|
-
sourceVideo: {
|
|
1461
|
-
videoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
1462
|
-
proxyVideoUrl: "https://stream.mux.com/1h8pafhpZulFS3AebRYYuAkhAScR9y6AugsOHlCh1Kg/highest.mp4",
|
|
1463
|
-
start: 33.84,
|
|
1464
|
-
aspectRatio: "16:9",
|
|
1465
|
-
durationSeconds: 41.083033
|
|
1466
|
-
},
|
|
1467
|
-
duration: 5.550000000000001,
|
|
1468
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
1469
|
-
frameColor: "#C5B4E3",
|
|
1470
|
-
disableTransitionSounds: true,
|
|
1471
|
-
brollUrl: "https://videos.pexels.com/video-files/34506445/14620293_1920_1080_30fps.mp4",
|
|
1472
|
-
words: ["price", "increase", "grocery", "store", "shelf", "tags", "inflation", "receipt"],
|
|
1473
|
-
paddingLeft: 0,
|
|
1474
|
-
paddingRight: 1.6930329999999962
|
|
1475
|
-
}
|
|
1476
|
-
},
|
|
1477
|
-
effects: [{
|
|
1478
|
-
type: "caption_word_boom",
|
|
1479
|
-
data: {
|
|
1480
|
-
transcript_text: [{
|
|
1481
|
-
offset: 0,
|
|
1482
|
-
duration: 0.6399999999999935,
|
|
1483
|
-
text: "And it's say not",
|
|
1484
|
-
punctuations: [{
|
|
1485
|
-
index: 0,
|
|
1486
|
-
start: 0,
|
|
1487
|
-
end: 0.1599999999999966
|
|
1488
|
-
}, {
|
|
1489
|
-
index: 1,
|
|
1490
|
-
start: 0.1599999999999966,
|
|
1491
|
-
end: 0.3999979999999965
|
|
1492
|
-
}, {
|
|
1493
|
-
index: 2,
|
|
1494
|
-
start: 0.3999979999999965,
|
|
1495
|
-
end: 0.5599999999999952
|
|
1496
|
-
}, {
|
|
1497
|
-
index: 3,
|
|
1498
|
-
start: 0.5599999999999952,
|
|
1499
|
-
end: 0.6399999999999935
|
|
1500
|
-
}]
|
|
1501
|
-
}, {
|
|
1502
|
-
offset: 0.7999999999999972,
|
|
1503
|
-
duration: 0.7999999999999972,
|
|
1504
|
-
text: "it's not just about",
|
|
1505
|
-
punctuations: [{
|
|
1506
|
-
index: 0,
|
|
1507
|
-
start: 0.7999999999999972,
|
|
1508
|
-
end: 0.9599999999999937
|
|
1509
|
-
}, {
|
|
1510
|
-
index: 1,
|
|
1511
|
-
start: 0.9599999999999937,
|
|
1512
|
-
end: 1.1199999999999974
|
|
1513
|
-
}, {
|
|
1514
|
-
index: 2,
|
|
1515
|
-
start: 1.1199999999999974,
|
|
1516
|
-
end: 1.3599999999999994
|
|
1517
|
-
}, {
|
|
1518
|
-
index: 3,
|
|
1519
|
-
start: 1.3599999999999994,
|
|
1520
|
-
end: 1.5999999999999943
|
|
1521
|
-
}]
|
|
1522
|
-
}, {
|
|
1523
|
-
offset: 1.5999999999999943,
|
|
1524
|
-
duration: 1.1400000000000006,
|
|
1525
|
-
text: "how much you make.",
|
|
1526
|
-
punctuations: [{
|
|
1527
|
-
index: 0,
|
|
1528
|
-
start: 1.5999999999999943,
|
|
1529
|
-
end: 1.759999999999998
|
|
1530
|
-
}, {
|
|
1531
|
-
index: 1,
|
|
1532
|
-
start: 1.759999999999998,
|
|
1533
|
-
end: 2
|
|
1534
|
-
}, {
|
|
1535
|
-
index: 2,
|
|
1536
|
-
start: 2,
|
|
1537
|
-
end: 2.239999999999995
|
|
1538
|
-
}, {
|
|
1539
|
-
index: 3,
|
|
1540
|
-
start: 2.239999999999995,
|
|
1541
|
-
end: 2.739999999999995
|
|
1542
|
-
}]
|
|
1543
|
-
}, {
|
|
1544
|
-
offset: 2.9599999999999937,
|
|
1545
|
-
duration: 1.3599999999999994,
|
|
1546
|
-
text: "Now it's about how",
|
|
1547
|
-
punctuations: [{
|
|
1548
|
-
index: 0,
|
|
1549
|
-
start: 2.9599999999999937,
|
|
1550
|
-
end: 3.4599999999999937
|
|
1551
|
-
}, {
|
|
1552
|
-
index: 1,
|
|
1553
|
-
start: 3.519999999999996,
|
|
1554
|
-
end: 3.759999999999998
|
|
1555
|
-
}, {
|
|
1556
|
-
index: 2,
|
|
1557
|
-
start: 3.759999999999998,
|
|
1558
|
-
end: 4.159999999999997
|
|
1559
|
-
}, {
|
|
1560
|
-
index: 3,
|
|
1561
|
-
start: 4.159999999999997,
|
|
1562
|
-
end: 4.319999999999993
|
|
1563
|
-
}]
|
|
1564
|
-
}, {
|
|
1565
|
-
offset: 4.319999999999993,
|
|
1566
|
-
duration: 0.980000000000004,
|
|
1567
|
-
text: "much you'll pay.",
|
|
1568
|
-
punctuations: [{
|
|
1569
|
-
index: 0,
|
|
1570
|
-
start: 4.319999999999993,
|
|
1571
|
-
end: 4.559999999999995
|
|
1572
|
-
}, {
|
|
1573
|
-
index: 1,
|
|
1574
|
-
start: 4.559999999999995,
|
|
1575
|
-
end: 4.799999999999997
|
|
1576
|
-
}, {
|
|
1577
|
-
index: 2,
|
|
1578
|
-
start: 4.799999999999997,
|
|
1579
|
-
end: 5.299999999999997
|
|
1580
|
-
}]
|
|
1581
|
-
}]
|
|
1582
|
-
}
|
|
1583
|
-
}]
|
|
1584
|
-
}, {
|
|
1585
|
-
recordingIndex: 4,
|
|
1586
|
-
layout: {
|
|
1587
|
-
type: "simple_frame_zoom_cut",
|
|
1588
|
-
data: {
|
|
1589
|
-
noBackgroundVideoEffects: {
|
|
1590
|
-
facePop: false,
|
|
1591
|
-
backgroundDim: false,
|
|
1592
|
-
backgroundBlur: false
|
|
1593
|
-
},
|
|
1594
|
-
sourceVideo: {
|
|
1595
|
-
videoUrl: "https://stream.mux.com/l9ljqWq74QCYyw1JG01MHnFbEmTOQwCGrNI024VXcIPRE/highest.mp4",
|
|
1596
|
-
proxyVideoUrl: "https://stream.mux.com/l9ljqWq74QCYyw1JG01MHnFbEmTOQwCGrNI024VXcIPRE/highest.mp4",
|
|
1597
|
-
start: 0.56,
|
|
1598
|
-
aspectRatio: "16:9",
|
|
1599
|
-
durationSeconds: 23.341967
|
|
1600
|
-
},
|
|
1601
|
-
duration: 9.119999,
|
|
1602
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
1603
|
-
frameColor: "#C5B4E3",
|
|
1604
|
-
disableTransitionSounds: true,
|
|
1605
|
-
brollUrl: "https://videos.pexels.com/video-files/3125396/3125396-hd_1920_1080_25fps.mp4",
|
|
1606
|
-
imageUrl: "https://images.pexels.com/photos/6564828/pexels-photo-6564828.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
1607
|
-
imgBgUrlVariations: {
|
|
1608
|
-
"default": "https://images.pexels.com/photos/6564828/pexels-photo-6564828.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
1609
|
-
pexels: "https://images.pexels.com/photos/6564828/pexels-photo-6564828.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
1610
|
-
},
|
|
1611
|
-
words: ["geopolitics", "world", "map", "animation", "conflict", "zones", "lines"],
|
|
1612
|
-
paddingLeft: 0.56,
|
|
1613
|
-
paddingRight: 0
|
|
1614
|
-
}
|
|
1615
|
-
},
|
|
1616
|
-
effects: [{
|
|
1617
|
-
type: "caption_word_boom",
|
|
1618
|
-
data: {
|
|
1619
|
-
transcript_text: [{
|
|
1620
|
-
offset: 0,
|
|
1621
|
-
duration: 1.1199999999999999,
|
|
1622
|
-
text: "We can zoom out",
|
|
1623
|
-
punctuations: [{
|
|
1624
|
-
index: 0,
|
|
1625
|
-
start: 0,
|
|
1626
|
-
end: 0.23999994999999996
|
|
1627
|
-
}, {
|
|
1628
|
-
index: 1,
|
|
1629
|
-
start: 0.23999994999999996,
|
|
1630
|
-
end: 0.48
|
|
1631
|
-
}, {
|
|
1632
|
-
index: 2,
|
|
1633
|
-
start: 0.48,
|
|
1634
|
-
end: 0.8
|
|
1635
|
-
}, {
|
|
1636
|
-
index: 3,
|
|
1637
|
-
start: 0.8,
|
|
1638
|
-
end: 1.1199999999999999
|
|
1639
|
-
}]
|
|
1640
|
-
}, {
|
|
1641
|
-
offset: 1.1199999999999999,
|
|
1642
|
-
duration: 0.9599998999999999,
|
|
1643
|
-
text: "even further to a",
|
|
1644
|
-
punctuations: [{
|
|
1645
|
-
index: 0,
|
|
1646
|
-
start: 1.1199999999999999,
|
|
1647
|
-
end: 1.3599999999999999
|
|
1648
|
-
}, {
|
|
1649
|
-
index: 1,
|
|
1650
|
-
start: 1.3599999999999999,
|
|
1651
|
-
end: 1.7599999999999998
|
|
1652
|
-
}, {
|
|
1653
|
-
index: 2,
|
|
1654
|
-
start: 1.7599999999999998,
|
|
1655
|
-
end: 1.92
|
|
1656
|
-
}, {
|
|
1657
|
-
index: 3,
|
|
1658
|
-
start: 1.92,
|
|
1659
|
-
end: 2.0799999
|
|
1660
|
-
}]
|
|
1661
|
-
}, {
|
|
1662
|
-
offset: 2.0799999,
|
|
1663
|
-
duration: 1.1200001,
|
|
1664
|
-
text: "geopolitical level",
|
|
1665
|
-
punctuations: [{
|
|
1666
|
-
index: 0,
|
|
1667
|
-
start: 2.0799999,
|
|
1668
|
-
end: 2.5799999
|
|
1669
|
-
}, {
|
|
1670
|
-
index: 1,
|
|
1671
|
-
start: 2.8799997999999998,
|
|
1672
|
-
end: 3.1999999999999997
|
|
1673
|
-
}]
|
|
1674
|
-
}, {
|
|
1675
|
-
offset: 3.1999999999999997,
|
|
1676
|
-
duration: 0.7999999999999998,
|
|
1677
|
-
text: "where we look at",
|
|
1678
|
-
punctuations: [{
|
|
1679
|
-
index: 0,
|
|
1680
|
-
start: 3.1999999999999997,
|
|
1681
|
-
end: 3.44
|
|
1682
|
-
}, {
|
|
1683
|
-
index: 1,
|
|
1684
|
-
start: 3.44,
|
|
1685
|
-
end: 3.52
|
|
1686
|
-
}, {
|
|
1687
|
-
index: 2,
|
|
1688
|
-
start: 3.52,
|
|
1689
|
-
end: 3.7599997000000003
|
|
1690
|
-
}, {
|
|
1691
|
-
index: 3,
|
|
1692
|
-
start: 3.7599997000000003,
|
|
1693
|
-
end: 3.9999999999999996
|
|
1694
|
-
}]
|
|
1695
|
-
}, {
|
|
1696
|
-
offset: 3.9999999999999996,
|
|
1697
|
-
duration: 1.1400000000000006,
|
|
1698
|
-
text: "predatory hegemony",
|
|
1699
|
-
punctuations: [{
|
|
1700
|
-
index: 0,
|
|
1701
|
-
start: 3.9999999999999996,
|
|
1702
|
-
end: 4.5
|
|
1703
|
-
}, {
|
|
1704
|
-
index: 1,
|
|
1705
|
-
start: 4.640000000000001,
|
|
1706
|
-
end: 5.140000000000001
|
|
1707
|
-
}]
|
|
1708
|
-
}, {
|
|
1709
|
-
offset: 5.1999998000000005,
|
|
1710
|
-
duration: 0.5599999000000002,
|
|
1711
|
-
text: "as they talked",
|
|
1712
|
-
punctuations: [{
|
|
1713
|
-
index: 0,
|
|
1714
|
-
start: 5.1999998000000005,
|
|
1715
|
-
end: 5.4399999999999995
|
|
1716
|
-
}, {
|
|
1717
|
-
index: 1,
|
|
1718
|
-
start: 5.4399999999999995,
|
|
1719
|
-
end: 5.52
|
|
1720
|
-
}, {
|
|
1721
|
-
index: 2,
|
|
1722
|
-
start: 5.52,
|
|
1723
|
-
end: 5.7599997
|
|
1724
|
-
}]
|
|
1725
|
-
}, {
|
|
1726
|
-
offset: 5.7599997,
|
|
1727
|
-
duration: 1.9200002999999999,
|
|
1728
|
-
text: "about in, foreign",
|
|
1729
|
-
punctuations: [{
|
|
1730
|
-
index: 0,
|
|
1731
|
-
start: 5.7599997,
|
|
1732
|
-
end: 6.2399997
|
|
1733
|
-
}, {
|
|
1734
|
-
index: 1,
|
|
1735
|
-
start: 6.2399997,
|
|
1736
|
-
end: 6.7399997
|
|
1737
|
-
}, {
|
|
1738
|
-
index: 2,
|
|
1739
|
-
start: 7.279999699999999,
|
|
1740
|
-
end: 7.68
|
|
1741
|
-
}]
|
|
1742
|
-
}, {
|
|
1743
|
-
offset: 7.68,
|
|
1744
|
-
duration: 1.2200000000000006,
|
|
1745
|
-
text: "affairs this week.",
|
|
1746
|
-
punctuations: [{
|
|
1747
|
-
index: 0,
|
|
1748
|
-
start: 7.68,
|
|
1749
|
-
end: 8.16
|
|
1750
|
-
}, {
|
|
1751
|
-
index: 1,
|
|
1752
|
-
start: 8.16,
|
|
1753
|
-
end: 8.4
|
|
1754
|
-
}, {
|
|
1755
|
-
index: 2,
|
|
1756
|
-
start: 8.4,
|
|
1757
|
-
end: 8.9
|
|
1758
|
-
}]
|
|
1759
|
-
}]
|
|
1760
|
-
}
|
|
1761
|
-
}]
|
|
1762
|
-
}, {
|
|
1763
|
-
recordingIndex: 4,
|
|
1764
|
-
layout: {
|
|
1765
|
-
type: "simple_frame",
|
|
1766
|
-
data: {
|
|
1767
|
-
noBackgroundVideoEffects: {
|
|
1768
|
-
facePop: false,
|
|
1769
|
-
backgroundDim: false,
|
|
1770
|
-
backgroundBlur: false
|
|
1771
|
-
},
|
|
1772
|
-
sourceVideo: {
|
|
1773
|
-
videoUrl: "https://stream.mux.com/l9ljqWq74QCYyw1JG01MHnFbEmTOQwCGrNI024VXcIPRE/highest.mp4",
|
|
1774
|
-
proxyVideoUrl: "https://stream.mux.com/l9ljqWq74QCYyw1JG01MHnFbEmTOQwCGrNI024VXcIPRE/highest.mp4",
|
|
1775
|
-
start: 9.679999,
|
|
1776
|
-
aspectRatio: "16:9",
|
|
1777
|
-
durationSeconds: 23.341967
|
|
1778
|
-
},
|
|
1779
|
-
duration: 6.715687999999999,
|
|
1780
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
1781
|
-
frameColor: "#C5B4E3",
|
|
1782
|
-
disableTransitionSounds: true,
|
|
1783
|
-
paddingLeft: 0,
|
|
1784
|
-
paddingRight: 0
|
|
1785
|
-
}
|
|
1786
|
-
},
|
|
1787
|
-
effects: [{
|
|
1788
|
-
type: "caption_word_boom",
|
|
1789
|
-
data: {
|
|
1790
|
-
transcript_text: [{
|
|
1791
|
-
offset: 0,
|
|
1792
|
-
duration: 1.3600009999999987,
|
|
1793
|
-
text: "It demonstrated for",
|
|
1794
|
-
punctuations: [{
|
|
1795
|
-
index: 0,
|
|
1796
|
-
start: 0,
|
|
1797
|
-
end: 0.1600009999999994
|
|
1798
|
-
}, {
|
|
1799
|
-
index: 1,
|
|
1800
|
-
start: 0.1600009999999994,
|
|
1801
|
-
end: 0.6600009999999994
|
|
1802
|
-
}, {
|
|
1803
|
-
index: 2,
|
|
1804
|
-
start: 1.1200010000000002,
|
|
1805
|
-
end: 1.3600009999999987
|
|
1806
|
-
}]
|
|
1807
|
-
}, {
|
|
1808
|
-
offset: 1.3600009999999987,
|
|
1809
|
-
duration: 1.040000000000001,
|
|
1810
|
-
text: "us what a video",
|
|
1811
|
-
punctuations: [{
|
|
1812
|
-
index: 0,
|
|
1813
|
-
start: 1.3600009999999987,
|
|
1814
|
-
end: 1.680000999999999
|
|
1815
|
-
}, {
|
|
1816
|
-
index: 1,
|
|
1817
|
-
start: 1.680000999999999,
|
|
1818
|
-
end: 1.8400005000000004
|
|
1819
|
-
}, {
|
|
1820
|
-
index: 2,
|
|
1821
|
-
start: 1.8400005000000004,
|
|
1822
|
-
end: 2
|
|
1823
|
-
}, {
|
|
1824
|
-
index: 3,
|
|
1825
|
-
start: 2,
|
|
1826
|
-
end: 2.4000009999999996
|
|
1827
|
-
}]
|
|
1828
|
-
}, {
|
|
1829
|
-
offset: 2.4000009999999996,
|
|
1830
|
-
duration: 1.3556869999999996,
|
|
1831
|
-
text: "looks like at the",
|
|
1832
|
-
punctuations: [{
|
|
1833
|
-
index: 0,
|
|
1834
|
-
start: 2.4000009999999996,
|
|
1835
|
-
end: 2.640001
|
|
1836
|
-
}, {
|
|
1837
|
-
index: 1,
|
|
1838
|
-
start: 2.640001,
|
|
1839
|
-
end: 3.140001
|
|
1840
|
-
}, {
|
|
1841
|
-
index: 2,
|
|
1842
|
-
start: 3.355687999999999,
|
|
1843
|
-
end: 3.675687999999999
|
|
1844
|
-
}, {
|
|
1845
|
-
index: 3,
|
|
1846
|
-
start: 3.675687999999999,
|
|
1847
|
-
end: 3.7556879999999992
|
|
1848
|
-
}]
|
|
1849
|
-
}, {
|
|
1850
|
-
offset: 3.7556879999999992,
|
|
1851
|
-
duration: 1.3600010000000005,
|
|
1852
|
-
text: "geopolitical shala,",
|
|
1853
|
-
punctuations: [{
|
|
1854
|
-
index: 0,
|
|
1855
|
-
start: 3.7556879999999992,
|
|
1856
|
-
end: 4.255687999999999
|
|
1857
|
-
}, {
|
|
1858
|
-
index: 1,
|
|
1859
|
-
start: 4.734278999999999,
|
|
1860
|
-
end: 5.115689
|
|
1861
|
-
}]
|
|
1862
|
-
}, {
|
|
1863
|
-
offset: 5.115689,
|
|
1864
|
-
duration: 0.8199989999999993,
|
|
1865
|
-
text: "this ignorance.",
|
|
1866
|
-
punctuations: [{
|
|
1867
|
-
index: 0,
|
|
1868
|
-
start: 5.115689,
|
|
1869
|
-
end: 5.435687999999999
|
|
1870
|
-
}, {
|
|
1871
|
-
index: 1,
|
|
1872
|
-
start: 5.435687999999999,
|
|
1873
|
-
end: 5.935687999999999
|
|
1874
|
-
}]
|
|
1875
|
-
}, {
|
|
1876
|
-
offset: 6.075688999999999,
|
|
1877
|
-
duration: 0.5,
|
|
1878
|
-
text: "Right?",
|
|
1879
|
-
punctuations: [{
|
|
1880
|
-
index: 0,
|
|
1881
|
-
start: 6.075688999999999,
|
|
1882
|
-
end: 6.575688999999999
|
|
1883
|
-
}]
|
|
1884
|
-
}]
|
|
1885
|
-
}
|
|
1886
|
-
}]
|
|
1887
|
-
}, {
|
|
1888
|
-
recordingIndex: 4,
|
|
1889
|
-
layout: {
|
|
1890
|
-
type: "simple_frame_zoom_cut",
|
|
1891
|
-
data: {
|
|
1892
|
-
noBackgroundVideoEffects: {
|
|
1893
|
-
facePop: false,
|
|
1894
|
-
backgroundDim: false,
|
|
1895
|
-
backgroundBlur: false
|
|
1896
|
-
},
|
|
1897
|
-
sourceVideo: {
|
|
1898
|
-
videoUrl: "https://stream.mux.com/l9ljqWq74QCYyw1JG01MHnFbEmTOQwCGrNI024VXcIPRE/highest.mp4",
|
|
1899
|
-
proxyVideoUrl: "https://stream.mux.com/l9ljqWq74QCYyw1JG01MHnFbEmTOQwCGrNI024VXcIPRE/highest.mp4",
|
|
1900
|
-
start: 16.395687,
|
|
1901
|
-
aspectRatio: "16:9",
|
|
1902
|
-
durationSeconds: 23.341967
|
|
1903
|
-
},
|
|
1904
|
-
duration: 5.709999,
|
|
1905
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
1906
|
-
frameColor: "#C5B4E3",
|
|
1907
|
-
disableTransitionSounds: true,
|
|
1908
|
-
sentenceText: "Misperception turns relationships into extraction.",
|
|
1909
|
-
text: "Misperception turns relationships into extraction.",
|
|
1910
|
-
paddingLeft: 0,
|
|
1911
|
-
paddingRight: 1.2362810000000017
|
|
1912
|
-
}
|
|
1913
|
-
},
|
|
1914
|
-
effects: [{
|
|
1915
|
-
type: "caption_word_boom",
|
|
1916
|
-
data: {
|
|
1917
|
-
transcript_text: [{
|
|
1918
|
-
offset: 0,
|
|
1919
|
-
duration: 0.6600000000000001,
|
|
1920
|
-
text: "The fundamental",
|
|
1921
|
-
punctuations: [{
|
|
1922
|
-
index: 0,
|
|
1923
|
-
start: 0,
|
|
1924
|
-
end: 0.16000000000000014
|
|
1925
|
-
}, {
|
|
1926
|
-
index: 1,
|
|
1927
|
-
start: 0.16000000000000014,
|
|
1928
|
-
end: 0.6600000000000001
|
|
1929
|
-
}]
|
|
1930
|
-
}, {
|
|
1931
|
-
offset: 0.880001,
|
|
1932
|
-
duration: 0.9599989999999998,
|
|
1933
|
-
text: "misperception that",
|
|
1934
|
-
punctuations: [{
|
|
1935
|
-
index: 0,
|
|
1936
|
-
start: 0.880001,
|
|
1937
|
-
end: 1.380001
|
|
1938
|
-
}, {
|
|
1939
|
-
index: 1,
|
|
1940
|
-
start: 1.6000000000000014,
|
|
1941
|
-
end: 1.8399999999999999
|
|
1942
|
-
}]
|
|
1943
|
-
}, {
|
|
1944
|
-
offset: 1.8399999999999999,
|
|
1945
|
-
duration: 0.9000000000000021,
|
|
1946
|
-
text: "turns every",
|
|
1947
|
-
punctuations: [{
|
|
1948
|
-
index: 0,
|
|
1949
|
-
start: 1.8399999999999999,
|
|
1950
|
-
end: 2.240000000000002
|
|
1951
|
-
}, {
|
|
1952
|
-
index: 1,
|
|
1953
|
-
start: 2.240000000000002,
|
|
1954
|
-
end: 2.740000000000002
|
|
1955
|
-
}]
|
|
1956
|
-
}, {
|
|
1957
|
-
offset: 2.7999989999999997,
|
|
1958
|
-
duration: 1.2000010000000003,
|
|
1959
|
-
text: "relationship into",
|
|
1960
|
-
punctuations: [{
|
|
1961
|
-
index: 0,
|
|
1962
|
-
start: 2.7999989999999997,
|
|
1963
|
-
end: 3.2999989999999997
|
|
1964
|
-
}, {
|
|
1965
|
-
index: 1,
|
|
1966
|
-
start: 3.6799999999999997,
|
|
1967
|
-
end: 4
|
|
1968
|
-
}]
|
|
1969
|
-
}, {
|
|
1970
|
-
offset: 4,
|
|
1971
|
-
duration: 1.4599989999999998,
|
|
1972
|
-
text: "an extractive one.",
|
|
1973
|
-
punctuations: [{
|
|
1974
|
-
index: 0,
|
|
1975
|
-
start: 4,
|
|
1976
|
-
end: 4.240000000000002
|
|
1977
|
-
}, {
|
|
1978
|
-
index: 1,
|
|
1979
|
-
start: 4.240000000000002,
|
|
1980
|
-
end: 4.740000000000002
|
|
1981
|
-
}, {
|
|
1982
|
-
index: 2,
|
|
1983
|
-
start: 4.959999,
|
|
1984
|
-
end: 5.459999
|
|
1985
|
-
}]
|
|
1986
|
-
}]
|
|
1987
|
-
}
|
|
1988
|
-
}]
|
|
1989
|
-
}, {
|
|
1990
|
-
recordingIndex: 5,
|
|
1991
|
-
layout: {
|
|
1992
|
-
type: "simple_frame",
|
|
1993
|
-
data: {
|
|
1994
|
-
noBackgroundVideoEffects: {
|
|
1995
|
-
facePop: false,
|
|
1996
|
-
backgroundDim: false,
|
|
1997
|
-
backgroundBlur: false
|
|
1998
|
-
},
|
|
1999
|
-
sourceVideo: {
|
|
2000
|
-
videoUrl: "https://stream.mux.com/azvs7oTwzKS01QHTFQqxlxd5QQog6xdAdkuA7QEa83mo/highest.mp4",
|
|
2001
|
-
proxyVideoUrl: "https://stream.mux.com/azvs7oTwzKS01QHTFQqxlxd5QQog6xdAdkuA7QEa83mo/highest.mp4",
|
|
2002
|
-
start: 0.48,
|
|
2003
|
-
aspectRatio: "16:9",
|
|
2004
|
-
durationSeconds: 18.243867
|
|
2005
|
-
},
|
|
2006
|
-
duration: 6.000000000000001,
|
|
2007
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
2008
|
-
frameColor: "#C5B4E3",
|
|
2009
|
-
disableTransitionSounds: true,
|
|
2010
|
-
brollUrl: "https://videos.pexels.com/video-files/8852646/8852646-hd_1920_1080_30fps.mp4",
|
|
2011
|
-
words: ["scientist", "microscope", "neural", "network", "visualization", "computer", "screen"],
|
|
2012
|
-
paddingLeft: 0.48,
|
|
2013
|
-
paddingRight: 0
|
|
2014
|
-
}
|
|
2015
|
-
},
|
|
2016
|
-
effects: [{
|
|
2017
|
-
type: "caption_word_boom",
|
|
2018
|
-
data: {
|
|
2019
|
-
transcript_text: [{
|
|
2020
|
-
offset: 0,
|
|
2021
|
-
duration: 1.04,
|
|
2022
|
-
text: "But I'm excited",
|
|
2023
|
-
punctuations: [{
|
|
2024
|
-
index: 0,
|
|
2025
|
-
start: 0,
|
|
2026
|
-
end: 0.23999997000000006
|
|
2027
|
-
}, {
|
|
2028
|
-
index: 1,
|
|
2029
|
-
start: 0.23999997000000006,
|
|
2030
|
-
end: 0.56
|
|
2031
|
-
}, {
|
|
2032
|
-
index: 2,
|
|
2033
|
-
start: 0.56,
|
|
2034
|
-
end: 1.04
|
|
2035
|
-
}]
|
|
2036
|
-
}, {
|
|
2037
|
-
offset: 1.04,
|
|
2038
|
-
duration: 0.6399998,
|
|
2039
|
-
text: "about what the",
|
|
2040
|
-
punctuations: [{
|
|
2041
|
-
index: 0,
|
|
2042
|
-
start: 1.04,
|
|
2043
|
-
end: 1.28
|
|
2044
|
-
}, {
|
|
2045
|
-
index: 1,
|
|
2046
|
-
start: 1.28,
|
|
2047
|
-
end: 1.52
|
|
2048
|
-
}, {
|
|
2049
|
-
index: 2,
|
|
2050
|
-
start: 1.52,
|
|
2051
|
-
end: 1.6799998
|
|
2052
|
-
}]
|
|
2053
|
-
}, {
|
|
2054
|
-
offset: 1.6799998,
|
|
2055
|
-
duration: 0.7200001,
|
|
2056
|
-
text: "scientists have to",
|
|
2057
|
-
punctuations: [{
|
|
2058
|
-
index: 0,
|
|
2059
|
-
start: 1.6799998,
|
|
2060
|
-
end: 2.1599999
|
|
2061
|
-
}, {
|
|
2062
|
-
index: 1,
|
|
2063
|
-
start: 2.1599999,
|
|
2064
|
-
end: 2.32
|
|
2065
|
-
}, {
|
|
2066
|
-
index: 2,
|
|
2067
|
-
start: 2.32,
|
|
2068
|
-
end: 2.3999999
|
|
2069
|
-
}]
|
|
2070
|
-
}, {
|
|
2071
|
-
offset: 2.3999999,
|
|
2072
|
-
duration: 0.7200001,
|
|
2073
|
-
text: "say about this",
|
|
2074
|
-
punctuations: [{
|
|
2075
|
-
index: 0,
|
|
2076
|
-
start: 2.3999999,
|
|
2077
|
-
end: 2.64
|
|
2078
|
-
}, {
|
|
2079
|
-
index: 1,
|
|
2080
|
-
start: 2.64,
|
|
2081
|
-
end: 2.88
|
|
2082
|
-
}, {
|
|
2083
|
-
index: 2,
|
|
2084
|
-
start: 2.88,
|
|
2085
|
-
end: 3.12
|
|
2086
|
-
}]
|
|
2087
|
-
}, {
|
|
2088
|
-
offset: 3.12,
|
|
2089
|
-
duration: 0.8800000000000003,
|
|
2090
|
-
text: "simulated little",
|
|
2091
|
-
punctuations: [{
|
|
2092
|
-
index: 0,
|
|
2093
|
-
start: 3.12,
|
|
2094
|
-
end: 3.6199999999999997
|
|
2095
|
-
}, {
|
|
2096
|
-
index: 1,
|
|
2097
|
-
start: 3.68,
|
|
2098
|
-
end: 4
|
|
2099
|
-
}]
|
|
2100
|
-
}, {
|
|
2101
|
-
offset: 4,
|
|
2102
|
-
duration: 0.8799996999999999,
|
|
2103
|
-
text: "fly brain in its",
|
|
2104
|
-
punctuations: [{
|
|
2105
|
-
index: 0,
|
|
2106
|
-
start: 4,
|
|
2107
|
-
end: 4.24
|
|
2108
|
-
}, {
|
|
2109
|
-
index: 1,
|
|
2110
|
-
start: 4.24,
|
|
2111
|
-
end: 4.48
|
|
2112
|
-
}, {
|
|
2113
|
-
index: 2,
|
|
2114
|
-
start: 4.48,
|
|
2115
|
-
end: 4.640000000000001
|
|
2116
|
-
}, {
|
|
2117
|
-
index: 3,
|
|
2118
|
-
start: 4.640000000000001,
|
|
2119
|
-
end: 4.879999700000001
|
|
2120
|
-
}]
|
|
2121
|
-
}, {
|
|
2122
|
-
offset: 4.879999700000001,
|
|
2123
|
-
duration: 0.9799999999999995,
|
|
2124
|
-
text: "virtual body.",
|
|
2125
|
-
punctuations: [{
|
|
2126
|
-
index: 0,
|
|
2127
|
-
start: 4.879999700000001,
|
|
2128
|
-
end: 5.3599996999999995
|
|
2129
|
-
}, {
|
|
2130
|
-
index: 1,
|
|
2131
|
-
start: 5.3599996999999995,
|
|
2132
|
-
end: 5.8599996999999995
|
|
2133
|
-
}]
|
|
2134
|
-
}]
|
|
2135
|
-
}
|
|
2136
|
-
}]
|
|
2137
|
-
}, {
|
|
2138
|
-
recordingIndex: 5,
|
|
2139
|
-
layout: {
|
|
2140
|
-
type: "simple_frame_zoom_cut",
|
|
2141
|
-
data: {
|
|
2142
|
-
noBackgroundVideoEffects: {
|
|
2143
|
-
facePop: false,
|
|
2144
|
-
backgroundDim: false,
|
|
2145
|
-
backgroundBlur: false
|
|
2146
|
-
},
|
|
2147
|
-
sourceVideo: {
|
|
2148
|
-
videoUrl: "https://stream.mux.com/azvs7oTwzKS01QHTFQqxlxd5QQog6xdAdkuA7QEa83mo/highest.mp4",
|
|
2149
|
-
proxyVideoUrl: "https://stream.mux.com/azvs7oTwzKS01QHTFQqxlxd5QQog6xdAdkuA7QEa83mo/highest.mp4",
|
|
2150
|
-
start: 6.48,
|
|
2151
|
-
aspectRatio: "16:9",
|
|
2152
|
-
durationSeconds: 18.243867
|
|
2153
|
-
},
|
|
2154
|
-
duration: 6.109999999999999,
|
|
2155
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
2156
|
-
frameColor: "#C5B4E3",
|
|
2157
|
-
disableTransitionSounds: true,
|
|
2158
|
-
sentenceText: "Struggle and awareness may shape what we call consciousness.",
|
|
2159
|
-
text: "Struggle and awareness may shape what we call consciousness.",
|
|
2160
|
-
paddingLeft: 0,
|
|
2161
|
-
paddingRight: 0.29499999999999993
|
|
2162
|
-
}
|
|
2163
|
-
},
|
|
2164
|
-
effects: [{
|
|
2165
|
-
type: "caption_word_boom",
|
|
2166
|
-
data: {
|
|
2167
|
-
transcript_text: [{
|
|
2168
|
-
offset: 0,
|
|
2169
|
-
duration: 1.2199999999999998,
|
|
2170
|
-
text: "I'm not so scared.",
|
|
2171
|
-
punctuations: [{
|
|
2172
|
-
index: 0,
|
|
2173
|
-
start: 0,
|
|
2174
|
-
end: 0.23999999999999932
|
|
2175
|
-
}, {
|
|
2176
|
-
index: 1,
|
|
2177
|
-
start: 0.23999999999999932,
|
|
2178
|
-
end: 0.39999959999999923
|
|
2179
|
-
}, {
|
|
2180
|
-
index: 2,
|
|
2181
|
-
start: 0.39999959999999923,
|
|
2182
|
-
end: 0.7199999999999998
|
|
2183
|
-
}, {
|
|
2184
|
-
index: 3,
|
|
2185
|
-
start: 0.7199999999999998,
|
|
2186
|
-
end: 1.2199999999999998
|
|
2187
|
-
}]
|
|
2188
|
-
}, {
|
|
2189
|
-
offset: 1.4399995999999993,
|
|
2190
|
-
duration: 0.48000040000000066,
|
|
2191
|
-
text: "What makes",
|
|
2192
|
-
punctuations: [{
|
|
2193
|
-
index: 0,
|
|
2194
|
-
start: 1.4399995999999993,
|
|
2195
|
-
end: 1.6799999999999997
|
|
2196
|
-
}, {
|
|
2197
|
-
index: 1,
|
|
2198
|
-
start: 1.6799999999999997,
|
|
2199
|
-
end: 1.92
|
|
2200
|
-
}]
|
|
2201
|
-
}, {
|
|
2202
|
-
offset: 1.92,
|
|
2203
|
-
duration: 0.4800000000000004,
|
|
2204
|
-
text: "something",
|
|
2205
|
-
punctuations: [{
|
|
2206
|
-
index: 0,
|
|
2207
|
-
start: 1.92,
|
|
2208
|
-
end: 2.4000000000000004
|
|
2209
|
-
}]
|
|
2210
|
-
}, {
|
|
2211
|
-
offset: 2.4000000000000004,
|
|
2212
|
-
duration: 0.5,
|
|
2213
|
-
text: "conscious?",
|
|
2214
|
-
punctuations: [{
|
|
2215
|
-
index: 0,
|
|
2216
|
-
start: 2.4000000000000004,
|
|
2217
|
-
end: 2.9000000000000004
|
|
2218
|
-
}]
|
|
2219
|
-
}, {
|
|
2220
|
-
offset: 3.2799999999999994,
|
|
2221
|
-
duration: 0.5600000000000005,
|
|
2222
|
-
text: "What's the",
|
|
2223
|
-
punctuations: [{
|
|
2224
|
-
index: 0,
|
|
2225
|
-
start: 3.2799999999999994,
|
|
2226
|
-
end: 3.5999999999999996
|
|
2227
|
-
}, {
|
|
2228
|
-
index: 1,
|
|
2229
|
-
start: 3.5999999999999996,
|
|
2230
|
-
end: 3.84
|
|
2231
|
-
}]
|
|
2232
|
-
}, {
|
|
2233
|
-
offset: 3.84,
|
|
2234
|
-
duration: 0.5,
|
|
2235
|
-
text: "relationship",
|
|
2236
|
-
punctuations: [{
|
|
2237
|
-
index: 0,
|
|
2238
|
-
start: 3.84,
|
|
2239
|
-
end: 4.34
|
|
2240
|
-
}]
|
|
2241
|
-
}, {
|
|
2242
|
-
offset: 4.48,
|
|
2243
|
-
duration: 0.7199989999999996,
|
|
2244
|
-
text: "between struggle",
|
|
2245
|
-
punctuations: [{
|
|
2246
|
-
index: 0,
|
|
2247
|
-
start: 4.48,
|
|
2248
|
-
end: 4.799999999999999
|
|
2249
|
-
}, {
|
|
2250
|
-
index: 1,
|
|
2251
|
-
start: 4.799999999999999,
|
|
2252
|
-
end: 5.199999
|
|
2253
|
-
}]
|
|
2254
|
-
}, {
|
|
2255
|
-
offset: 5.199999,
|
|
2256
|
-
duration: 0.6600009999999994,
|
|
2257
|
-
text: "and awareness?",
|
|
2258
|
-
punctuations: [{
|
|
2259
|
-
index: 0,
|
|
2260
|
-
start: 5.199999,
|
|
2261
|
-
end: 5.359999999999999
|
|
2262
|
-
}, {
|
|
2263
|
-
index: 1,
|
|
2264
|
-
start: 5.359999999999999,
|
|
2265
|
-
end: 5.859999999999999
|
|
2266
|
-
}]
|
|
2267
|
-
}]
|
|
2268
|
-
}
|
|
2269
|
-
}]
|
|
2270
|
-
}, {
|
|
2271
|
-
recordingIndex: 5,
|
|
2272
19
|
layout: {
|
|
2273
|
-
type: "
|
|
20
|
+
type: "multi_handoff",
|
|
2274
21
|
data: {
|
|
22
|
+
duration: 27.555332999999997,
|
|
23
|
+
trimLeft: 0,
|
|
24
|
+
trimRight: 0,
|
|
2275
25
|
noBackgroundVideoEffects: {
|
|
2276
26
|
facePop: false,
|
|
2277
27
|
backgroundDim: false,
|
|
2278
28
|
backgroundBlur: false
|
|
2279
29
|
},
|
|
2280
30
|
sourceVideo: {
|
|
2281
|
-
videoUrl: "https://stream.mux.com/
|
|
2282
|
-
proxyVideoUrl: "https://
|
|
2283
|
-
start:
|
|
2284
|
-
aspectRatio: "16:9",
|
|
2285
|
-
durationSeconds: 18.243867
|
|
31
|
+
videoUrl: "https://stream.mux.com/Auqwgnaat1Iw7F8Iks021kZGBSPcG01E3aLWFK0101Sy4NQ/highest.mp4",
|
|
32
|
+
proxyVideoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/Auqwgnaat1Iw7F8Iks021kZGBSPcG01E3aLWFK0101Sy4NQ/max640_fps24_crf30.mp4",
|
|
33
|
+
start: 0.88
|
|
2286
34
|
},
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
35
|
+
handoffOverlapSeconds: [1.685388999999999, 0.96, 0.29466700000000046],
|
|
36
|
+
videos: [{
|
|
37
|
+
videoFile: "https://stream.mux.com/Auqwgnaat1Iw7F8Iks021kZGBSPcG01E3aLWFK0101Sy4NQ/highest.mp4",
|
|
38
|
+
proxyVideoFile: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/Auqwgnaat1Iw7F8Iks021kZGBSPcG01E3aLWFK0101Sy4NQ/max640_fps24_crf30.mp4",
|
|
39
|
+
videoDuration: 9.235389,
|
|
40
|
+
startVideoFrom: 0.88,
|
|
41
|
+
speakerRole: "seeker",
|
|
42
|
+
useSquareInLandscape: false
|
|
43
|
+
}, {
|
|
44
|
+
videoFile: "https://stream.mux.com/FOogC3hjNhPDLsE8KdgTHBgHaIvsDVdLh5u8B3BV102Y/highest.mp4",
|
|
45
|
+
proxyVideoFile: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/FOogC3hjNhPDLsE8KdgTHBgHaIvsDVdLh5u8B3BV102Y/max640_fps24_crf30.mp4",
|
|
46
|
+
videoDuration: 8.030000000000001,
|
|
47
|
+
startVideoFrom: 0,
|
|
48
|
+
speakerRole: "responder",
|
|
49
|
+
useSquareInLandscape: false
|
|
50
|
+
}, {
|
|
51
|
+
videoFile: "https://stream.mux.com/ik4XNjxD9ayAR5zoPmaSCKJ02UyZ6HUNflH3Tklk0221c/highest.mp4",
|
|
52
|
+
proxyVideoFile: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/ik4XNjxD9ayAR5zoPmaSCKJ02UyZ6HUNflH3Tklk0221c/max640_fps24_crf30.mp4",
|
|
53
|
+
videoDuration: 7.63,
|
|
54
|
+
startVideoFrom: 0,
|
|
55
|
+
speakerRole: "seeker",
|
|
56
|
+
useSquareInLandscape: false
|
|
57
|
+
}, {
|
|
58
|
+
videoFile: "https://stream.mux.com/900TpqLYmsLJd53C02Qq3WA4D3iKuuLoryY3NGdZHM01Fk/highest.mp4",
|
|
59
|
+
proxyVideoFile: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/900TpqLYmsLJd53C02Qq3WA4D3iKuuLoryY3NGdZHM01Fk/max640_fps24_crf30.mp4",
|
|
60
|
+
videoDuration: 5.6,
|
|
61
|
+
startVideoFrom: 0,
|
|
62
|
+
speakerRole: "responder",
|
|
63
|
+
useSquareInLandscape: false
|
|
64
|
+
}]
|
|
2293
65
|
}
|
|
2294
66
|
},
|
|
2295
67
|
effects: [{
|
|
@@ -2297,414 +69,527 @@ var renderer = new RemotionRenderer({
|
|
|
2297
69
|
data: {
|
|
2298
70
|
transcript_text: [{
|
|
2299
71
|
offset: 0,
|
|
2300
|
-
duration:
|
|
2301
|
-
text: "
|
|
72
|
+
duration: 0.5599999000000001,
|
|
73
|
+
text: "Recording the",
|
|
2302
74
|
punctuations: [{
|
|
2303
75
|
index: 0,
|
|
2304
76
|
start: 0,
|
|
2305
|
-
end: 0.
|
|
77
|
+
end: 0.4800000000000001
|
|
2306
78
|
}, {
|
|
2307
79
|
index: 1,
|
|
2308
|
-
start: 0.
|
|
2309
|
-
end: 0.
|
|
80
|
+
start: 0.4800000000000001,
|
|
81
|
+
end: 0.5599999000000001
|
|
82
|
+
}],
|
|
83
|
+
speaker: "seeker"
|
|
84
|
+
}, {
|
|
85
|
+
offset: 0.5599999000000001,
|
|
86
|
+
duration: 0.7199998999999999,
|
|
87
|
+
text: "second question,",
|
|
88
|
+
punctuations: [{
|
|
89
|
+
index: 0,
|
|
90
|
+
start: 0.5599999000000001,
|
|
91
|
+
end: 0.88
|
|
92
|
+
}, {
|
|
93
|
+
index: 1,
|
|
94
|
+
start: 0.88,
|
|
95
|
+
end: 1.2799998000000001
|
|
96
|
+
}],
|
|
97
|
+
speaker: "seeker"
|
|
98
|
+
}, {
|
|
99
|
+
offset: 1.2799998000000001,
|
|
100
|
+
duration: 0.8800002,
|
|
101
|
+
text: "and I wanna skip",
|
|
102
|
+
punctuations: [{
|
|
103
|
+
index: 0,
|
|
104
|
+
start: 1.2799998000000001,
|
|
105
|
+
end: 1.44
|
|
106
|
+
}, {
|
|
107
|
+
index: 1,
|
|
108
|
+
start: 1.44,
|
|
109
|
+
end: 1.6
|
|
2310
110
|
}, {
|
|
2311
111
|
index: 2,
|
|
2312
|
-
start:
|
|
2313
|
-
end:
|
|
112
|
+
start: 1.6,
|
|
113
|
+
end: 1.8400000000000003
|
|
2314
114
|
}, {
|
|
2315
115
|
index: 3,
|
|
2316
|
-
start:
|
|
2317
|
-
end:
|
|
116
|
+
start: 1.8400000000000003,
|
|
117
|
+
end: 2.16
|
|
118
|
+
}],
|
|
119
|
+
speaker: "seeker"
|
|
120
|
+
}, {
|
|
121
|
+
offset: 2.16,
|
|
122
|
+
duration: 0.6599998,
|
|
123
|
+
text: "this answer.",
|
|
124
|
+
punctuations: [{
|
|
125
|
+
index: 0,
|
|
126
|
+
start: 2.16,
|
|
127
|
+
end: 2.3199998
|
|
2318
128
|
}, {
|
|
2319
|
-
index:
|
|
2320
|
-
start:
|
|
2321
|
-
end:
|
|
2322
|
-
}]
|
|
129
|
+
index: 1,
|
|
130
|
+
start: 2.3199998,
|
|
131
|
+
end: 2.8199998
|
|
132
|
+
}],
|
|
133
|
+
speaker: "seeker"
|
|
2323
134
|
}, {
|
|
2324
|
-
offset:
|
|
2325
|
-
duration:
|
|
2326
|
-
text: "
|
|
135
|
+
offset: 3.6000000000000005,
|
|
136
|
+
duration: 1.1199999999999992,
|
|
137
|
+
text: "And I wanna see how",
|
|
2327
138
|
punctuations: [{
|
|
2328
139
|
index: 0,
|
|
2329
|
-
start:
|
|
2330
|
-
end:
|
|
140
|
+
start: 3.6000000000000005,
|
|
141
|
+
end: 3.84
|
|
2331
142
|
}, {
|
|
2332
143
|
index: 1,
|
|
2333
|
-
start:
|
|
2334
|
-
end:
|
|
144
|
+
start: 3.84,
|
|
145
|
+
end: 3.9199997
|
|
2335
146
|
}, {
|
|
2336
147
|
index: 2,
|
|
2337
|
-
start:
|
|
2338
|
-
end:
|
|
2339
|
-
}
|
|
148
|
+
start: 3.9199997,
|
|
149
|
+
end: 4.24
|
|
150
|
+
}, {
|
|
151
|
+
index: 3,
|
|
152
|
+
start: 4.24,
|
|
153
|
+
end: 4.3999997
|
|
154
|
+
}, {
|
|
155
|
+
index: 4,
|
|
156
|
+
start: 4.3999997,
|
|
157
|
+
end: 4.72
|
|
158
|
+
}],
|
|
159
|
+
speaker: "seeker"
|
|
2340
160
|
}, {
|
|
2341
|
-
offset:
|
|
2342
|
-
duration: 0.
|
|
2343
|
-
text: "
|
|
161
|
+
offset: 4.72,
|
|
162
|
+
duration: 0.96,
|
|
163
|
+
text: "fast it takes for",
|
|
2344
164
|
punctuations: [{
|
|
2345
165
|
index: 0,
|
|
2346
|
-
start:
|
|
2347
|
-
end:
|
|
166
|
+
start: 4.72,
|
|
167
|
+
end: 5.12
|
|
2348
168
|
}, {
|
|
2349
169
|
index: 1,
|
|
2350
|
-
start:
|
|
2351
|
-
end: 2
|
|
170
|
+
start: 5.12,
|
|
171
|
+
end: 5.2
|
|
2352
172
|
}, {
|
|
2353
173
|
index: 2,
|
|
2354
|
-
start: 2
|
|
2355
|
-
end:
|
|
2356
|
-
}
|
|
174
|
+
start: 5.2,
|
|
175
|
+
end: 5.5199996
|
|
176
|
+
}, {
|
|
177
|
+
index: 3,
|
|
178
|
+
start: 5.5199996,
|
|
179
|
+
end: 5.68
|
|
180
|
+
}],
|
|
181
|
+
speaker: "seeker"
|
|
2357
182
|
}, {
|
|
2358
|
-
offset:
|
|
2359
|
-
duration:
|
|
2360
|
-
text: "
|
|
183
|
+
offset: 5.68,
|
|
184
|
+
duration: 1.12,
|
|
185
|
+
text: "this to be done as",
|
|
2361
186
|
punctuations: [{
|
|
2362
187
|
index: 0,
|
|
2363
|
-
start:
|
|
2364
|
-
end:
|
|
188
|
+
start: 5.68,
|
|
189
|
+
end: 5.9199997
|
|
2365
190
|
}, {
|
|
2366
191
|
index: 1,
|
|
2367
|
-
start:
|
|
2368
|
-
end:
|
|
192
|
+
start: 5.9199997,
|
|
193
|
+
end: 5.9999996
|
|
2369
194
|
}, {
|
|
2370
195
|
index: 2,
|
|
2371
|
-
start:
|
|
2372
|
-
end:
|
|
2373
|
-
}
|
|
196
|
+
start: 5.9999996,
|
|
197
|
+
end: 6.32
|
|
198
|
+
}, {
|
|
199
|
+
index: 3,
|
|
200
|
+
start: 6.32,
|
|
201
|
+
end: 6.64
|
|
202
|
+
}, {
|
|
203
|
+
index: 4,
|
|
204
|
+
start: 6.64,
|
|
205
|
+
end: 6.8
|
|
206
|
+
}],
|
|
207
|
+
speaker: "seeker"
|
|
2374
208
|
}, {
|
|
2375
|
-
offset:
|
|
209
|
+
offset: 6.8,
|
|
2376
210
|
duration: 0.5,
|
|
2377
|
-
text: "
|
|
211
|
+
text: "well.",
|
|
2378
212
|
punctuations: [{
|
|
2379
213
|
index: 0,
|
|
2380
|
-
start:
|
|
2381
|
-
end: 3
|
|
2382
|
-
}]
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
layout: {
|
|
2389
|
-
type: "keyword",
|
|
2390
|
-
data: {
|
|
2391
|
-
noBackgroundVideoEffects: {
|
|
2392
|
-
facePop: false,
|
|
2393
|
-
backgroundDim: false,
|
|
2394
|
-
backgroundBlur: false
|
|
2395
|
-
},
|
|
2396
|
-
sourceVideo: {
|
|
2397
|
-
videoUrl: "https://stream.mux.com/3Ez6qgfFu6YaMn7wF00gQoQD5rQ1q83U6QulTvvbUwi8/highest.mp4",
|
|
2398
|
-
proxyVideoUrl: "https://stream.mux.com/3Ez6qgfFu6YaMn7wF00gQoQD5rQ1q83U6QulTvvbUwi8/highest.mp4",
|
|
2399
|
-
start: 0.88,
|
|
2400
|
-
aspectRatio: "16:9",
|
|
2401
|
-
durationSeconds: 16.9202
|
|
2402
|
-
},
|
|
2403
|
-
duration: 8.75,
|
|
2404
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
2405
|
-
frameColor: "#C5B4E3",
|
|
2406
|
-
disableTransitionSounds: true,
|
|
2407
|
-
brollUrl: "https://videos.pexels.com/video-files/7318733/7318733-uhd_2560_1440_25fps.mp4",
|
|
2408
|
-
sentenceText: "COVID exposed yoga’s tension: community or commodity.",
|
|
2409
|
-
text: "COVID exposed yoga’s tension: community or commodity.",
|
|
2410
|
-
imageUrl: "https://images.pexels.com/photos/4998811/pexels-photo-4998811.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
2411
|
-
imgBgUrlVariations: {
|
|
2412
|
-
"default": "https://images.pexels.com/photos/4998811/pexels-photo-4998811.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
2413
|
-
pexels: "https://images.pexels.com/photos/4998811/pexels-photo-4998811.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
2414
|
-
},
|
|
2415
|
-
words: ["Yoga", "Reckoning"],
|
|
2416
|
-
paddingLeft: 0.88,
|
|
2417
|
-
paddingRight: 0.14499999999999957
|
|
2418
|
-
}
|
|
2419
|
-
},
|
|
2420
|
-
effects: [{
|
|
2421
|
-
type: "caption_word_boom",
|
|
2422
|
-
data: {
|
|
2423
|
-
transcript_text: [{
|
|
2424
|
-
offset: 0,
|
|
2425
|
-
duration: 0.88,
|
|
2426
|
-
text: "But, you know, the",
|
|
214
|
+
start: 6.8,
|
|
215
|
+
end: 7.3
|
|
216
|
+
}],
|
|
217
|
+
speaker: "seeker"
|
|
218
|
+
}, {
|
|
219
|
+
offset: 7.550000000000001,
|
|
220
|
+
duration: 3.46,
|
|
221
|
+
text: "This is a test",
|
|
2427
222
|
punctuations: [{
|
|
2428
223
|
index: 0,
|
|
2429
|
-
start:
|
|
2430
|
-
end:
|
|
224
|
+
start: 7.550000000000001,
|
|
225
|
+
end: 8.05,
|
|
226
|
+
originalStart: 0,
|
|
227
|
+
originalEnd: 0.5
|
|
2431
228
|
}, {
|
|
2432
229
|
index: 1,
|
|
2433
|
-
start:
|
|
2434
|
-
end:
|
|
230
|
+
start: 9.47,
|
|
231
|
+
end: 9.97,
|
|
232
|
+
originalStart: 1.92,
|
|
233
|
+
originalEnd: 2.42
|
|
2435
234
|
}, {
|
|
2436
235
|
index: 2,
|
|
2437
|
-
start:
|
|
2438
|
-
end:
|
|
236
|
+
start: 10.030000000000001,
|
|
237
|
+
end: 10.510000000000002,
|
|
238
|
+
originalStart: 2.48,
|
|
239
|
+
originalEnd: 2.96
|
|
2439
240
|
}, {
|
|
2440
241
|
index: 3,
|
|
2441
|
-
start:
|
|
2442
|
-
end:
|
|
2443
|
-
|
|
242
|
+
start: 10.510000000000002,
|
|
243
|
+
end: 11.010000000000002,
|
|
244
|
+
originalStart: 2.96,
|
|
245
|
+
originalEnd: 3.46
|
|
246
|
+
}],
|
|
247
|
+
originalOffset: 0,
|
|
248
|
+
speaker: "responder"
|
|
2444
249
|
}, {
|
|
2445
|
-
offset:
|
|
2446
|
-
duration:
|
|
2447
|
-
text: "
|
|
250
|
+
offset: 11.229999800000002,
|
|
251
|
+
duration: 1.5400001999999997,
|
|
252
|
+
text: "recording for the",
|
|
2448
253
|
punctuations: [{
|
|
2449
254
|
index: 0,
|
|
2450
|
-
start:
|
|
2451
|
-
end:
|
|
255
|
+
start: 11.229999800000002,
|
|
256
|
+
end: 11.73,
|
|
257
|
+
originalStart: 3.6799998,
|
|
258
|
+
originalEnd: 4.18
|
|
2452
259
|
}, {
|
|
2453
260
|
index: 1,
|
|
2454
|
-
start:
|
|
2455
|
-
end:
|
|
261
|
+
start: 11.950000000000001,
|
|
262
|
+
end: 12.27,
|
|
263
|
+
originalStart: 4.4,
|
|
264
|
+
originalEnd: 4.72
|
|
2456
265
|
}, {
|
|
2457
266
|
index: 2,
|
|
2458
|
-
start:
|
|
2459
|
-
end:
|
|
2460
|
-
|
|
267
|
+
start: 12.27,
|
|
268
|
+
end: 12.77,
|
|
269
|
+
originalStart: 4.72,
|
|
270
|
+
originalEnd: 5.22
|
|
271
|
+
}],
|
|
272
|
+
originalOffset: 3.6799998,
|
|
273
|
+
speaker: "responder"
|
|
2461
274
|
}, {
|
|
2462
|
-
offset:
|
|
2463
|
-
duration:
|
|
2464
|
-
text: "
|
|
275
|
+
offset: 12.9099997,
|
|
276
|
+
duration: 1.6800002999999997,
|
|
277
|
+
text: "second question in",
|
|
2465
278
|
punctuations: [{
|
|
2466
279
|
index: 0,
|
|
2467
|
-
start:
|
|
2468
|
-
end:
|
|
280
|
+
start: 12.9099997,
|
|
281
|
+
end: 13.4099997,
|
|
282
|
+
originalStart: 5.3599997,
|
|
283
|
+
originalEnd: 5.8599997
|
|
2469
284
|
}, {
|
|
2470
285
|
index: 1,
|
|
2471
|
-
start:
|
|
2472
|
-
end:
|
|
286
|
+
start: 13.47,
|
|
287
|
+
end: 13.97,
|
|
288
|
+
originalStart: 5.92,
|
|
289
|
+
originalEnd: 6.42
|
|
2473
290
|
}, {
|
|
2474
291
|
index: 2,
|
|
2475
|
-
start:
|
|
2476
|
-
end:
|
|
2477
|
-
|
|
292
|
+
start: 14.349999700000001,
|
|
293
|
+
end: 14.59,
|
|
294
|
+
originalStart: 6.7999997,
|
|
295
|
+
originalEnd: 7.04
|
|
296
|
+
}],
|
|
297
|
+
originalOffset: 5.3599997,
|
|
298
|
+
speaker: "responder"
|
|
2478
299
|
}, {
|
|
2479
|
-
offset:
|
|
2480
|
-
duration: 0.
|
|
2481
|
-
text: "
|
|
300
|
+
offset: 14.59,
|
|
301
|
+
duration: 0.7399997000000003,
|
|
302
|
+
text: "the collection.",
|
|
2482
303
|
punctuations: [{
|
|
2483
304
|
index: 0,
|
|
2484
|
-
start:
|
|
2485
|
-
end:
|
|
2486
|
-
|
|
305
|
+
start: 14.59,
|
|
306
|
+
end: 14.829999700000002,
|
|
307
|
+
originalStart: 7.04,
|
|
308
|
+
originalEnd: 7.2799997
|
|
309
|
+
}, {
|
|
310
|
+
index: 1,
|
|
311
|
+
start: 14.829999700000002,
|
|
312
|
+
end: 15.329999700000002,
|
|
313
|
+
originalStart: 7.2799997,
|
|
314
|
+
originalEnd: 7.7799997
|
|
315
|
+
}],
|
|
316
|
+
originalOffset: 7.04,
|
|
317
|
+
speaker: "responder"
|
|
2487
318
|
}, {
|
|
2488
|
-
offset:
|
|
319
|
+
offset: 15.580000000000002,
|
|
2489
320
|
duration: 0.96,
|
|
2490
|
-
text: "
|
|
321
|
+
text: "Testing what",
|
|
2491
322
|
punctuations: [{
|
|
2492
323
|
index: 0,
|
|
2493
|
-
start:
|
|
2494
|
-
end:
|
|
324
|
+
start: 15.580000000000002,
|
|
325
|
+
end: 16.080000000000002,
|
|
326
|
+
originalStart: 0,
|
|
327
|
+
originalEnd: 0.5
|
|
2495
328
|
}, {
|
|
2496
329
|
index: 1,
|
|
2497
|
-
start:
|
|
2498
|
-
end:
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
330
|
+
start: 16.2199999,
|
|
331
|
+
end: 16.540000000000003,
|
|
332
|
+
originalStart: 0.6399999000000001,
|
|
333
|
+
originalEnd: 0.96
|
|
334
|
+
}],
|
|
335
|
+
originalOffset: 0,
|
|
336
|
+
speaker: "seeker"
|
|
2504
337
|
}, {
|
|
2505
|
-
offset:
|
|
2506
|
-
duration: 0.
|
|
2507
|
-
text: "
|
|
338
|
+
offset: 16.540000000000003,
|
|
339
|
+
duration: 0.9599999000000001,
|
|
340
|
+
text: "happens when I'm",
|
|
2508
341
|
punctuations: [{
|
|
2509
342
|
index: 0,
|
|
2510
|
-
start:
|
|
2511
|
-
end:
|
|
343
|
+
start: 16.540000000000003,
|
|
344
|
+
end: 16.94,
|
|
345
|
+
originalStart: 0.96,
|
|
346
|
+
originalEnd: 1.3599999999999999
|
|
2512
347
|
}, {
|
|
2513
348
|
index: 1,
|
|
2514
|
-
start:
|
|
2515
|
-
end:
|
|
349
|
+
start: 16.94,
|
|
350
|
+
end: 17.259999900000004,
|
|
351
|
+
originalStart: 1.3599999999999999,
|
|
352
|
+
originalEnd: 1.6799998999999999
|
|
2516
353
|
}, {
|
|
2517
354
|
index: 2,
|
|
2518
|
-
start:
|
|
2519
|
-
end:
|
|
2520
|
-
|
|
355
|
+
start: 17.259999900000004,
|
|
356
|
+
end: 17.499999900000002,
|
|
357
|
+
originalStart: 1.6799998999999999,
|
|
358
|
+
originalEnd: 1.9199999
|
|
359
|
+
}],
|
|
360
|
+
originalOffset: 0.96,
|
|
361
|
+
speaker: "seeker"
|
|
2521
362
|
}, {
|
|
2522
|
-
offset:
|
|
2523
|
-
duration: 0.
|
|
2524
|
-
text: "
|
|
363
|
+
offset: 17.499999900000002,
|
|
364
|
+
duration: 0.8800000999999997,
|
|
365
|
+
text: "finishing recording",
|
|
2525
366
|
punctuations: [{
|
|
2526
367
|
index: 0,
|
|
2527
|
-
start:
|
|
2528
|
-
end:
|
|
368
|
+
start: 17.499999900000002,
|
|
369
|
+
end: 17.980000000000004,
|
|
370
|
+
originalStart: 1.9199999,
|
|
371
|
+
originalEnd: 2.4
|
|
2529
372
|
}, {
|
|
2530
373
|
index: 1,
|
|
2531
|
-
start:
|
|
2532
|
-
end:
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
374
|
+
start: 17.980000000000004,
|
|
375
|
+
end: 18.380000000000003,
|
|
376
|
+
originalStart: 2.4,
|
|
377
|
+
originalEnd: 2.8
|
|
378
|
+
}],
|
|
379
|
+
originalOffset: 1.9199999,
|
|
380
|
+
speaker: "seeker"
|
|
2538
381
|
}, {
|
|
2539
|
-
offset:
|
|
2540
|
-
duration:
|
|
2541
|
-
text: "
|
|
382
|
+
offset: 18.380000000000003,
|
|
383
|
+
duration: 0.7200000000000006,
|
|
384
|
+
text: "these videos.",
|
|
2542
385
|
punctuations: [{
|
|
2543
386
|
index: 0,
|
|
2544
|
-
start:
|
|
2545
|
-
end:
|
|
387
|
+
start: 18.380000000000003,
|
|
388
|
+
end: 18.62,
|
|
389
|
+
originalStart: 2.8,
|
|
390
|
+
originalEnd: 3.04
|
|
2546
391
|
}, {
|
|
2547
392
|
index: 1,
|
|
2548
|
-
start:
|
|
2549
|
-
end:
|
|
2550
|
-
|
|
393
|
+
start: 18.62,
|
|
394
|
+
end: 19.1,
|
|
395
|
+
originalStart: 3.04,
|
|
396
|
+
originalEnd: 3.5200000000000005
|
|
397
|
+
}],
|
|
398
|
+
originalOffset: 2.8,
|
|
399
|
+
speaker: "seeker"
|
|
2551
400
|
}, {
|
|
2552
|
-
offset:
|
|
2553
|
-
duration: 0.
|
|
2554
|
-
text: "
|
|
401
|
+
offset: 19.1,
|
|
402
|
+
duration: 0.7199999999999998,
|
|
403
|
+
text: "It shouldn't take",
|
|
2555
404
|
punctuations: [{
|
|
2556
405
|
index: 0,
|
|
2557
|
-
start:
|
|
2558
|
-
end:
|
|
406
|
+
start: 19.1,
|
|
407
|
+
end: 19.340000000000003,
|
|
408
|
+
originalStart: 3.5200000000000005,
|
|
409
|
+
originalEnd: 3.76
|
|
2559
410
|
}, {
|
|
2560
411
|
index: 1,
|
|
2561
|
-
start:
|
|
2562
|
-
end:
|
|
412
|
+
start: 19.340000000000003,
|
|
413
|
+
end: 19.660000000000004,
|
|
414
|
+
originalStart: 3.76,
|
|
415
|
+
originalEnd: 4.08
|
|
2563
416
|
}, {
|
|
2564
417
|
index: 2,
|
|
2565
|
-
start:
|
|
2566
|
-
end:
|
|
2567
|
-
|
|
418
|
+
start: 19.660000000000004,
|
|
419
|
+
end: 19.82,
|
|
420
|
+
originalStart: 4.08,
|
|
421
|
+
originalEnd: 4.24
|
|
422
|
+
}],
|
|
423
|
+
originalOffset: 3.5200000000000005,
|
|
424
|
+
speaker: "seeker"
|
|
2568
425
|
}, {
|
|
2569
|
-
offset:
|
|
2570
|
-
duration: 0.
|
|
2571
|
-
text: "
|
|
2572
|
-
punctuations: [{
|
|
2573
|
-
index: 0,
|
|
2574
|
-
start: 8,
|
|
2575
|
-
end: 8.5
|
|
2576
|
-
}]
|
|
2577
|
-
}]
|
|
2578
|
-
}
|
|
2579
|
-
}]
|
|
2580
|
-
}, {
|
|
2581
|
-
recordingIndex: 6,
|
|
2582
|
-
layout: {
|
|
2583
|
-
type: "simple_frame",
|
|
2584
|
-
data: {
|
|
2585
|
-
noBackgroundVideoEffects: {
|
|
2586
|
-
facePop: false,
|
|
2587
|
-
backgroundDim: false,
|
|
2588
|
-
backgroundBlur: false
|
|
2589
|
-
},
|
|
2590
|
-
sourceVideo: {
|
|
2591
|
-
videoUrl: "https://stream.mux.com/3Ez6qgfFu6YaMn7wF00gQoQD5rQ1q83U6QulTvvbUwi8/highest.mp4",
|
|
2592
|
-
proxyVideoUrl: "https://stream.mux.com/3Ez6qgfFu6YaMn7wF00gQoQD5rQ1q83U6QulTvvbUwi8/highest.mp4",
|
|
2593
|
-
start: 9.92,
|
|
2594
|
-
aspectRatio: "16:9",
|
|
2595
|
-
durationSeconds: 16.9202
|
|
2596
|
-
},
|
|
2597
|
-
duration: 6.416311,
|
|
2598
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
2599
|
-
frameColor: "#C5B4E3",
|
|
2600
|
-
disableTransitionSounds: true,
|
|
2601
|
-
brollUrl: "https://videos.pexels.com/video-files/5991785/5991785-hd_1920_1080_25fps.mp4",
|
|
2602
|
-
words: ["yoga", "studio", "class", "merchandise", "retail", "shelves", "wellness", "product"],
|
|
2603
|
-
paddingLeft: 0.14499999999999957,
|
|
2604
|
-
paddingRight: 0.583889000000001
|
|
2605
|
-
}
|
|
2606
|
-
},
|
|
2607
|
-
effects: [{
|
|
2608
|
-
type: "caption_word_boom",
|
|
2609
|
-
data: {
|
|
2610
|
-
transcript_text: [{
|
|
2611
|
-
offset: 0,
|
|
2612
|
-
duration: 0.9600000000000009,
|
|
2613
|
-
text: "Is it a spiritual",
|
|
426
|
+
offset: 19.82,
|
|
427
|
+
duration: 0.8799999999999999,
|
|
428
|
+
text: "too long for me to",
|
|
2614
429
|
punctuations: [{
|
|
2615
430
|
index: 0,
|
|
2616
|
-
start:
|
|
2617
|
-
end:
|
|
431
|
+
start: 19.82,
|
|
432
|
+
end: 19.9799997,
|
|
433
|
+
originalStart: 4.24,
|
|
434
|
+
originalEnd: 4.3999997
|
|
2618
435
|
}, {
|
|
2619
436
|
index: 1,
|
|
2620
|
-
start:
|
|
2621
|
-
end:
|
|
437
|
+
start: 19.9799997,
|
|
438
|
+
end: 20.3,
|
|
439
|
+
originalStart: 4.3999997,
|
|
440
|
+
originalEnd: 4.72
|
|
2622
441
|
}, {
|
|
2623
442
|
index: 2,
|
|
2624
|
-
start:
|
|
2625
|
-
end:
|
|
443
|
+
start: 20.3,
|
|
444
|
+
end: 20.4599997,
|
|
445
|
+
originalStart: 4.72,
|
|
446
|
+
originalEnd: 4.8799997
|
|
2626
447
|
}, {
|
|
2627
448
|
index: 3,
|
|
2628
|
-
start:
|
|
2629
|
-
end:
|
|
2630
|
-
|
|
449
|
+
start: 20.4599997,
|
|
450
|
+
end: 20.62,
|
|
451
|
+
originalStart: 4.8799997,
|
|
452
|
+
originalEnd: 5.04
|
|
453
|
+
}, {
|
|
454
|
+
index: 4,
|
|
455
|
+
start: 20.62,
|
|
456
|
+
end: 20.700000000000003,
|
|
457
|
+
originalStart: 5.04,
|
|
458
|
+
originalEnd: 5.12
|
|
459
|
+
}],
|
|
460
|
+
originalOffset: 4.24,
|
|
461
|
+
speaker: "seeker"
|
|
462
|
+
}, {
|
|
463
|
+
offset: 20.700000000000003,
|
|
464
|
+
duration: 0.7999995999999996,
|
|
465
|
+
text: "finish recording",
|
|
466
|
+
punctuations: [{
|
|
467
|
+
index: 0,
|
|
468
|
+
start: 20.700000000000003,
|
|
469
|
+
end: 21.1,
|
|
470
|
+
originalStart: 5.12,
|
|
471
|
+
originalEnd: 5.5200000000000005
|
|
472
|
+
}, {
|
|
473
|
+
index: 1,
|
|
474
|
+
start: 21.1,
|
|
475
|
+
end: 21.499999600000002,
|
|
476
|
+
originalStart: 5.5200000000000005,
|
|
477
|
+
originalEnd: 5.9199996
|
|
478
|
+
}],
|
|
479
|
+
originalOffset: 5.12,
|
|
480
|
+
speaker: "seeker"
|
|
481
|
+
}, {
|
|
482
|
+
offset: 21.499999600000002,
|
|
483
|
+
duration: 0.5,
|
|
484
|
+
text: "this.",
|
|
485
|
+
punctuations: [{
|
|
486
|
+
index: 0,
|
|
487
|
+
start: 21.499999600000002,
|
|
488
|
+
end: 21.999999600000002,
|
|
489
|
+
originalStart: 5.9199996,
|
|
490
|
+
originalEnd: 6.4199996
|
|
491
|
+
}],
|
|
492
|
+
originalOffset: 5.9199996,
|
|
493
|
+
speaker: "seeker"
|
|
2631
494
|
}, {
|
|
2632
|
-
offset:
|
|
2633
|
-
duration:
|
|
2634
|
-
text: "
|
|
495
|
+
offset: 22.65,
|
|
496
|
+
duration: 1.2,
|
|
497
|
+
text: "This is the first",
|
|
2635
498
|
punctuations: [{
|
|
2636
499
|
index: 0,
|
|
2637
|
-
start:
|
|
2638
|
-
end:
|
|
500
|
+
start: 22.65,
|
|
501
|
+
end: 22.97,
|
|
502
|
+
originalStart: 1.36,
|
|
503
|
+
originalEnd: 1.68
|
|
2639
504
|
}, {
|
|
2640
505
|
index: 1,
|
|
2641
|
-
start:
|
|
2642
|
-
end:
|
|
506
|
+
start: 22.97,
|
|
507
|
+
end: 23.21,
|
|
508
|
+
originalStart: 1.68,
|
|
509
|
+
originalEnd: 1.92
|
|
2643
510
|
}, {
|
|
2644
511
|
index: 2,
|
|
2645
|
-
start:
|
|
2646
|
-
end:
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
offset: 1.599999500000001,
|
|
2650
|
-
duration: 0.9800004999999992,
|
|
2651
|
-
text: "wellness product?",
|
|
2652
|
-
punctuations: [{
|
|
2653
|
-
index: 0,
|
|
2654
|
-
start: 1.599999500000001,
|
|
2655
|
-
end: 2.08
|
|
512
|
+
start: 23.21,
|
|
513
|
+
end: 23.53,
|
|
514
|
+
originalStart: 1.92,
|
|
515
|
+
originalEnd: 2.24
|
|
2656
516
|
}, {
|
|
2657
|
-
index:
|
|
2658
|
-
start:
|
|
2659
|
-
end:
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
517
|
+
index: 3,
|
|
518
|
+
start: 23.53,
|
|
519
|
+
end: 23.85,
|
|
520
|
+
originalStart: 2.24,
|
|
521
|
+
originalEnd: 2.56
|
|
522
|
+
}],
|
|
523
|
+
originalOffset: 1.36,
|
|
524
|
+
speaker: "responder"
|
|
525
|
+
}, {
|
|
526
|
+
offset: 23.85,
|
|
527
|
+
duration: 0.96,
|
|
528
|
+
text: "segment of a",
|
|
2665
529
|
punctuations: [{
|
|
2666
530
|
index: 0,
|
|
2667
|
-
start:
|
|
2668
|
-
end:
|
|
531
|
+
start: 23.85,
|
|
532
|
+
end: 24.35,
|
|
533
|
+
originalStart: 2.56,
|
|
534
|
+
originalEnd: 3.06
|
|
2669
535
|
}, {
|
|
2670
536
|
index: 1,
|
|
2671
|
-
start:
|
|
2672
|
-
end:
|
|
537
|
+
start: 24.41,
|
|
538
|
+
end: 24.57,
|
|
539
|
+
originalStart: 3.12,
|
|
540
|
+
originalEnd: 3.28
|
|
2673
541
|
}, {
|
|
2674
542
|
index: 2,
|
|
2675
|
-
start:
|
|
2676
|
-
end:
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
index: 4,
|
|
2683
|
-
start: 4.306312,
|
|
2684
|
-
end: 4.806312
|
|
2685
|
-
}]
|
|
543
|
+
start: 24.57,
|
|
544
|
+
end: 24.810000000000002,
|
|
545
|
+
originalStart: 3.28,
|
|
546
|
+
originalEnd: 3.5200000000000005
|
|
547
|
+
}],
|
|
548
|
+
originalOffset: 2.56,
|
|
549
|
+
speaker: "responder"
|
|
2686
550
|
}, {
|
|
2687
|
-
offset:
|
|
2688
|
-
duration: 1.
|
|
2689
|
-
text: "
|
|
551
|
+
offset: 24.810000000000002,
|
|
552
|
+
duration: 1.3599999999999999,
|
|
553
|
+
text: "response to a",
|
|
2690
554
|
punctuations: [{
|
|
2691
555
|
index: 0,
|
|
2692
|
-
start:
|
|
2693
|
-
end:
|
|
556
|
+
start: 24.810000000000002,
|
|
557
|
+
end: 25.310000000000002,
|
|
558
|
+
originalStart: 3.5200000000000005,
|
|
559
|
+
originalEnd: 4.02
|
|
2694
560
|
}, {
|
|
2695
561
|
index: 1,
|
|
2696
|
-
start:
|
|
2697
|
-
end:
|
|
562
|
+
start: 25.609999700000003,
|
|
563
|
+
end: 25.93,
|
|
564
|
+
originalStart: 4.3199997,
|
|
565
|
+
originalEnd: 4.64
|
|
2698
566
|
}, {
|
|
2699
567
|
index: 2,
|
|
2700
|
-
start:
|
|
2701
|
-
end:
|
|
2702
|
-
|
|
568
|
+
start: 25.93,
|
|
569
|
+
end: 26.17,
|
|
570
|
+
originalStart: 4.64,
|
|
571
|
+
originalEnd: 4.88
|
|
572
|
+
}],
|
|
573
|
+
originalOffset: 3.5200000000000005,
|
|
574
|
+
speaker: "responder"
|
|
575
|
+
}, {
|
|
576
|
+
offset: 26.17,
|
|
577
|
+
duration: 0.5,
|
|
578
|
+
text: "question.",
|
|
579
|
+
punctuations: [{
|
|
580
|
+
index: 0,
|
|
581
|
+
start: 26.17,
|
|
582
|
+
end: 26.67,
|
|
583
|
+
originalStart: 4.88,
|
|
584
|
+
originalEnd: 5.38
|
|
585
|
+
}],
|
|
586
|
+
originalOffset: 4.88,
|
|
587
|
+
speaker: "responder"
|
|
2703
588
|
}]
|
|
2704
589
|
}
|
|
2705
590
|
}]
|
|
2706
591
|
}, {
|
|
2707
|
-
recordingIndex:
|
|
592
|
+
recordingIndex: 0,
|
|
2708
593
|
layout: {
|
|
2709
594
|
type: "simple_frame_zoom_cut",
|
|
2710
595
|
data: {
|
|
@@ -2714,20 +599,21 @@ var renderer = new RemotionRenderer({
|
|
|
2714
599
|
backgroundBlur: false
|
|
2715
600
|
},
|
|
2716
601
|
sourceVideo: {
|
|
2717
|
-
videoUrl: "https://stream.mux.com/
|
|
2718
|
-
proxyVideoUrl: "https://
|
|
2719
|
-
start:
|
|
602
|
+
videoUrl: "https://stream.mux.com/900TpqLYmsLJd53C02Qq3WA4D3iKuuLoryY3NGdZHM01Fk/highest.mp4",
|
|
603
|
+
proxyVideoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/900TpqLYmsLJd53C02Qq3WA4D3iKuuLoryY3NGdZHM01Fk/max640_fps24_crf30.mp4",
|
|
604
|
+
start: 5.6,
|
|
2720
605
|
aspectRatio: "16:9",
|
|
2721
|
-
durationSeconds:
|
|
606
|
+
durationSeconds: 13.476
|
|
2722
607
|
},
|
|
2723
|
-
duration:
|
|
2724
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/
|
|
2725
|
-
frameColor: "#
|
|
608
|
+
duration: 6.67,
|
|
609
|
+
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/PUvc3VDC/1761800173636-collabvideorectangle.png",
|
|
610
|
+
frameColor: "#303030",
|
|
2726
611
|
disableTransitionSounds: true,
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
612
|
+
paddingLeft: 0,
|
|
613
|
+
paddingRight: 1.2060000000000013,
|
|
614
|
+
responderName: "Vincent Test",
|
|
615
|
+
speakerRole: "responder",
|
|
616
|
+
questionIndex: 1
|
|
2731
617
|
}
|
|
2732
618
|
},
|
|
2733
619
|
effects: [{
|
|
@@ -2735,171 +621,119 @@ var renderer = new RemotionRenderer({
|
|
|
2735
621
|
data: {
|
|
2736
622
|
transcript_text: [{
|
|
2737
623
|
offset: 0,
|
|
2738
|
-
duration:
|
|
2739
|
-
text: "I
|
|
624
|
+
duration: 1.6799997000000007,
|
|
625
|
+
text: "I wanna make this I",
|
|
2740
626
|
punctuations: [{
|
|
2741
627
|
index: 0,
|
|
2742
628
|
start: 0,
|
|
2743
|
-
end: 0.
|
|
629
|
+
end: 0.23999970000000026
|
|
2744
630
|
}, {
|
|
2745
631
|
index: 1,
|
|
2746
|
-
start: 0.
|
|
2747
|
-
end: 0.
|
|
632
|
+
start: 0.23999970000000026,
|
|
633
|
+
end: 0.5600000000000005
|
|
2748
634
|
}, {
|
|
2749
635
|
index: 2,
|
|
2750
|
-
start: 0.
|
|
2751
|
-
end: 0.
|
|
636
|
+
start: 0.5600000000000005,
|
|
637
|
+
end: 0.7999996000000005
|
|
2752
638
|
}, {
|
|
2753
639
|
index: 3,
|
|
2754
|
-
start: 0.
|
|
2755
|
-
end:
|
|
2756
|
-
}]
|
|
2757
|
-
}, {
|
|
2758
|
-
offset: 0.8000001000000001,
|
|
2759
|
-
duration: 0.7999999999999998,
|
|
2760
|
-
text: "yoga practice",
|
|
2761
|
-
punctuations: [{
|
|
2762
|
-
index: 0,
|
|
2763
|
-
start: 0.8000001000000001,
|
|
2764
|
-
end: 1.2000000000000002
|
|
640
|
+
start: 0.7999996000000005,
|
|
641
|
+
end: 1.2999996000000005
|
|
2765
642
|
}, {
|
|
2766
|
-
index:
|
|
2767
|
-
start: 1.
|
|
2768
|
-
end: 1.
|
|
643
|
+
index: 4,
|
|
644
|
+
start: 1.5200000000000005,
|
|
645
|
+
end: 1.6799997000000007
|
|
2769
646
|
}]
|
|
2770
647
|
}, {
|
|
2771
|
-
offset: 1.
|
|
2772
|
-
duration:
|
|
2773
|
-
text: "
|
|
648
|
+
offset: 1.6799997000000007,
|
|
649
|
+
duration: 0.7200002999999997,
|
|
650
|
+
text: "wanna try to make",
|
|
2774
651
|
punctuations: [{
|
|
2775
652
|
index: 0,
|
|
2776
|
-
start: 1.
|
|
2777
|
-
end:
|
|
653
|
+
start: 1.6799997000000007,
|
|
654
|
+
end: 1.92
|
|
2778
655
|
}, {
|
|
2779
656
|
index: 1,
|
|
2780
|
-
start:
|
|
2781
|
-
end: 2.
|
|
657
|
+
start: 1.92,
|
|
658
|
+
end: 2.08
|
|
2782
659
|
}, {
|
|
2783
660
|
index: 2,
|
|
2784
|
-
start: 2.
|
|
2785
|
-
end: 2.
|
|
661
|
+
start: 2.08,
|
|
662
|
+
end: 2.2399997000000003
|
|
2786
663
|
}, {
|
|
2787
664
|
index: 3,
|
|
2788
|
-
start: 2.
|
|
2789
|
-
end: 2.
|
|
665
|
+
start: 2.2399997000000003,
|
|
666
|
+
end: 2.4000000000000004
|
|
2790
667
|
}]
|
|
2791
668
|
}, {
|
|
2792
|
-
offset: 2.
|
|
2793
|
-
duration: 1.
|
|
2794
|
-
text: "
|
|
669
|
+
offset: 2.4000000000000004,
|
|
670
|
+
duration: 1.1199999999999992,
|
|
671
|
+
text: "this as long as",
|
|
2795
672
|
punctuations: [{
|
|
2796
673
|
index: 0,
|
|
2797
|
-
start: 2.
|
|
2798
|
-
end:
|
|
674
|
+
start: 2.4000000000000004,
|
|
675
|
+
end: 2.7200000000000006
|
|
2799
676
|
}, {
|
|
2800
677
|
index: 1,
|
|
2801
|
-
start:
|
|
2802
|
-
end: 3.
|
|
678
|
+
start: 2.7200000000000006,
|
|
679
|
+
end: 3.039999
|
|
2803
680
|
}, {
|
|
2804
681
|
index: 2,
|
|
2805
|
-
start: 3.
|
|
2806
|
-
end:
|
|
682
|
+
start: 3.039999,
|
|
683
|
+
end: 3.280000000000001
|
|
2807
684
|
}, {
|
|
2808
685
|
index: 3,
|
|
2809
|
-
start:
|
|
2810
|
-
end:
|
|
2811
|
-
}]
|
|
2812
|
-
}, {
|
|
2813
|
-
offset: 4.6399998,
|
|
2814
|
-
duration: 0.5,
|
|
2815
|
-
text: "articles,",
|
|
2816
|
-
punctuations: [{
|
|
2817
|
-
index: 0,
|
|
2818
|
-
start: 4.6399998,
|
|
2819
|
-
end: 5.1399998
|
|
2820
|
-
}]
|
|
2821
|
-
}, {
|
|
2822
|
-
offset: 5.1999997,
|
|
2823
|
-
duration: 0.6400003999999999,
|
|
2824
|
-
text: "questions, and",
|
|
2825
|
-
punctuations: [{
|
|
2826
|
-
index: 0,
|
|
2827
|
-
start: 5.1999997,
|
|
2828
|
-
end: 5.5999998
|
|
2829
|
-
}, {
|
|
2830
|
-
index: 1,
|
|
2831
|
-
start: 5.5999998,
|
|
2832
|
-
end: 5.8400001
|
|
2833
|
-
}]
|
|
2834
|
-
}, {
|
|
2835
|
-
offset: 5.8400001,
|
|
2836
|
-
duration: 1.2000000000000002,
|
|
2837
|
-
text: "conversations that",
|
|
2838
|
-
punctuations: [{
|
|
2839
|
-
index: 0,
|
|
2840
|
-
start: 5.8400001,
|
|
2841
|
-
end: 6.3400001
|
|
2842
|
-
}, {
|
|
2843
|
-
index: 1,
|
|
2844
|
-
start: 6.7199997,
|
|
2845
|
-
end: 7.0400001
|
|
686
|
+
start: 3.280000000000001,
|
|
687
|
+
end: 3.5199999999999996
|
|
2846
688
|
}]
|
|
2847
689
|
}, {
|
|
2848
|
-
offset:
|
|
2849
|
-
duration:
|
|
2850
|
-
text: "
|
|
690
|
+
offset: 3.5199999999999996,
|
|
691
|
+
duration: 1.5199990000000003,
|
|
692
|
+
text: "possible so it will",
|
|
2851
693
|
punctuations: [{
|
|
2852
694
|
index: 0,
|
|
2853
|
-
start:
|
|
2854
|
-
end:
|
|
695
|
+
start: 3.5199999999999996,
|
|
696
|
+
end: 4.02
|
|
2855
697
|
}, {
|
|
2856
698
|
index: 1,
|
|
2857
|
-
start:
|
|
2858
|
-
end:
|
|
699
|
+
start: 4.079999000000001,
|
|
700
|
+
end: 4.48
|
|
2859
701
|
}, {
|
|
2860
702
|
index: 2,
|
|
2861
|
-
start:
|
|
2862
|
-
end:
|
|
703
|
+
start: 4.48,
|
|
704
|
+
end: 4.800000000000001
|
|
2863
705
|
}, {
|
|
2864
706
|
index: 3,
|
|
2865
|
-
start:
|
|
2866
|
-
end:
|
|
707
|
+
start: 4.800000000000001,
|
|
708
|
+
end: 5.039999
|
|
2867
709
|
}]
|
|
2868
710
|
}, {
|
|
2869
|
-
offset:
|
|
2870
|
-
duration:
|
|
2871
|
-
text: "
|
|
711
|
+
offset: 5.039999,
|
|
712
|
+
duration: 0.7400010000000012,
|
|
713
|
+
text: "have multiple",
|
|
2872
714
|
punctuations: [{
|
|
2873
715
|
index: 0,
|
|
2874
|
-
start:
|
|
2875
|
-
end:
|
|
716
|
+
start: 5.039999,
|
|
717
|
+
end: 5.280000000000001
|
|
2876
718
|
}, {
|
|
2877
719
|
index: 1,
|
|
2878
|
-
start:
|
|
2879
|
-
end:
|
|
2880
|
-
}, {
|
|
2881
|
-
index: 2,
|
|
2882
|
-
start: 8.5600001,
|
|
2883
|
-
end: 8.9600001
|
|
2884
|
-
}, {
|
|
2885
|
-
index: 3,
|
|
2886
|
-
start: 8.9600001,
|
|
2887
|
-
end: 9.1200001
|
|
720
|
+
start: 5.280000000000001,
|
|
721
|
+
end: 5.780000000000001
|
|
2888
722
|
}]
|
|
2889
723
|
}, {
|
|
2890
|
-
offset:
|
|
724
|
+
offset: 5.919999500000001,
|
|
2891
725
|
duration: 0.5,
|
|
2892
|
-
text: "
|
|
726
|
+
text: "segments.",
|
|
2893
727
|
punctuations: [{
|
|
2894
728
|
index: 0,
|
|
2895
|
-
start:
|
|
2896
|
-
end:
|
|
729
|
+
start: 5.919999500000001,
|
|
730
|
+
end: 6.419999500000001
|
|
2897
731
|
}]
|
|
2898
732
|
}]
|
|
2899
733
|
}
|
|
2900
734
|
}]
|
|
2901
735
|
}, {
|
|
2902
|
-
recordingIndex:
|
|
736
|
+
recordingIndex: 1,
|
|
2903
737
|
layout: {
|
|
2904
738
|
type: "simple_frame",
|
|
2905
739
|
data: {
|
|
@@ -2909,18 +743,23 @@ var renderer = new RemotionRenderer({
|
|
|
2909
743
|
backgroundBlur: false
|
|
2910
744
|
},
|
|
2911
745
|
sourceVideo: {
|
|
2912
|
-
videoUrl: "https://stream.mux.com/
|
|
2913
|
-
proxyVideoUrl: "https://
|
|
2914
|
-
start:
|
|
746
|
+
videoUrl: "https://stream.mux.com/FkAosVti01ZQ61ETBY4pBVBWkR2Run1dO9QfJ7dqhtfo/highest.mp4",
|
|
747
|
+
proxyVideoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/FkAosVti01ZQ61ETBY4pBVBWkR2Run1dO9QfJ7dqhtfo/max640_fps24_crf30.mp4",
|
|
748
|
+
start: 1.1999999,
|
|
2915
749
|
aspectRatio: "16:9",
|
|
2916
|
-
durationSeconds:
|
|
750
|
+
durationSeconds: 13.742667
|
|
2917
751
|
},
|
|
2918
|
-
duration:
|
|
2919
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/
|
|
2920
|
-
frameColor: "#
|
|
752
|
+
duration: 6.59,
|
|
753
|
+
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/PUvc3VDC/1761800173636-collabvideorectangle.png",
|
|
754
|
+
frameColor: "#303030",
|
|
2921
755
|
disableTransitionSounds: true,
|
|
2922
|
-
|
|
2923
|
-
|
|
756
|
+
sentenceText: "Second part of my answer to your question.",
|
|
757
|
+
text: "Second part of my answer to your question.",
|
|
758
|
+
paddingLeft: 1.1999999,
|
|
759
|
+
paddingRight: 0.10500005000000012,
|
|
760
|
+
responderName: "Vincent Test",
|
|
761
|
+
speakerRole: "responder",
|
|
762
|
+
questionIndex: 1
|
|
2924
763
|
}
|
|
2925
764
|
},
|
|
2926
765
|
effects: [{
|
|
@@ -2928,116 +767,81 @@ var renderer = new RemotionRenderer({
|
|
|
2928
767
|
data: {
|
|
2929
768
|
transcript_text: [{
|
|
2930
769
|
offset: 0,
|
|
2931
|
-
duration: 1.
|
|
2932
|
-
text: "
|
|
770
|
+
duration: 1.44,
|
|
771
|
+
text: "This is the second",
|
|
2933
772
|
punctuations: [{
|
|
2934
773
|
index: 0,
|
|
2935
774
|
start: 0,
|
|
2936
|
-
end: 0.
|
|
2937
|
-
}, {
|
|
2938
|
-
index: 1,
|
|
2939
|
-
start: 0.4800000000000001,
|
|
2940
|
-
end: 0.9800000000000001
|
|
2941
|
-
}, {
|
|
2942
|
-
index: 2,
|
|
2943
|
-
start: 1.12,
|
|
2944
|
-
end: 1.62
|
|
2945
|
-
}]
|
|
2946
|
-
}, {
|
|
2947
|
-
offset: 1.6800000000000002,
|
|
2948
|
-
duration: 1.6199999999999997,
|
|
2949
|
-
text: "end, prices shift,",
|
|
2950
|
-
punctuations: [{
|
|
2951
|
-
index: 0,
|
|
2952
|
-
start: 1.6800000000000002,
|
|
2953
|
-
end: 2.16
|
|
775
|
+
end: 0.3200001000000001
|
|
2954
776
|
}, {
|
|
2955
777
|
index: 1,
|
|
2956
|
-
start:
|
|
2957
|
-
end:
|
|
778
|
+
start: 0.3200001000000001,
|
|
779
|
+
end: 0.7200001
|
|
2958
780
|
}, {
|
|
2959
781
|
index: 2,
|
|
2960
|
-
start:
|
|
2961
|
-
end:
|
|
2962
|
-
}]
|
|
2963
|
-
}, {
|
|
2964
|
-
offset: 3.6799999999999997,
|
|
2965
|
-
duration: 0.96,
|
|
2966
|
-
text: "and what happens",
|
|
2967
|
-
punctuations: [{
|
|
2968
|
-
index: 0,
|
|
2969
|
-
start: 3.6799999999999997,
|
|
2970
|
-
end: 4
|
|
2971
|
-
}, {
|
|
2972
|
-
index: 1,
|
|
2973
|
-
start: 4,
|
|
2974
|
-
end: 4.24
|
|
782
|
+
start: 0.7200001,
|
|
783
|
+
end: 0.9599999000000001
|
|
2975
784
|
}, {
|
|
2976
|
-
index:
|
|
2977
|
-
start:
|
|
2978
|
-
end:
|
|
785
|
+
index: 3,
|
|
786
|
+
start: 0.9599999000000001,
|
|
787
|
+
end: 1.44
|
|
2979
788
|
}]
|
|
2980
789
|
}, {
|
|
2981
|
-
offset:
|
|
2982
|
-
duration:
|
|
2983
|
-
text: "
|
|
790
|
+
offset: 1.44,
|
|
791
|
+
duration: 3.1199999000000003,
|
|
792
|
+
text: "segment to a for a",
|
|
2984
793
|
punctuations: [{
|
|
2985
794
|
index: 0,
|
|
2986
|
-
start:
|
|
2987
|
-
end:
|
|
795
|
+
start: 1.44,
|
|
796
|
+
end: 1.94
|
|
2988
797
|
}, {
|
|
2989
798
|
index: 1,
|
|
2990
|
-
start:
|
|
2991
|
-
end:
|
|
799
|
+
start: 2.0800001,
|
|
800
|
+
end: 2.5600001
|
|
2992
801
|
}, {
|
|
2993
802
|
index: 2,
|
|
2994
|
-
start:
|
|
2995
|
-
end:
|
|
803
|
+
start: 2.5600001,
|
|
804
|
+
end: 3.0600001
|
|
2996
805
|
}, {
|
|
2997
806
|
index: 3,
|
|
2998
|
-
start:
|
|
2999
|
-
end:
|
|
3000
|
-
}
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
text: "logarithm",
|
|
3005
|
-
punctuations: [{
|
|
3006
|
-
index: 0,
|
|
3007
|
-
start: 5.28,
|
|
3008
|
-
end: 5.78
|
|
807
|
+
start: 3.9200001,
|
|
808
|
+
end: 4.3200001
|
|
809
|
+
}, {
|
|
810
|
+
index: 4,
|
|
811
|
+
start: 4.3200001,
|
|
812
|
+
end: 4.5599999
|
|
3009
813
|
}]
|
|
3010
814
|
}, {
|
|
3011
|
-
offset:
|
|
3012
|
-
duration:
|
|
3013
|
-
text: "
|
|
815
|
+
offset: 4.5599999,
|
|
816
|
+
duration: 1.2800002,
|
|
817
|
+
text: "response to a",
|
|
3014
818
|
punctuations: [{
|
|
3015
819
|
index: 0,
|
|
3016
|
-
start:
|
|
3017
|
-
end:
|
|
820
|
+
start: 4.5599999,
|
|
821
|
+
end: 5.0599999
|
|
3018
822
|
}, {
|
|
3019
823
|
index: 1,
|
|
3020
|
-
start:
|
|
3021
|
-
end:
|
|
824
|
+
start: 5.1999997,
|
|
825
|
+
end: 5.5200001
|
|
3022
826
|
}, {
|
|
3023
827
|
index: 2,
|
|
3024
|
-
start:
|
|
3025
|
-
end:
|
|
828
|
+
start: 5.5200001,
|
|
829
|
+
end: 5.8400001
|
|
3026
830
|
}]
|
|
3027
831
|
}, {
|
|
3028
|
-
offset:
|
|
832
|
+
offset: 5.8400001,
|
|
3029
833
|
duration: 0.5,
|
|
3030
|
-
text: "
|
|
834
|
+
text: "question.",
|
|
3031
835
|
punctuations: [{
|
|
3032
836
|
index: 0,
|
|
3033
|
-
start:
|
|
3034
|
-
end:
|
|
837
|
+
start: 5.8400001,
|
|
838
|
+
end: 6.3400001
|
|
3035
839
|
}]
|
|
3036
840
|
}]
|
|
3037
841
|
}
|
|
3038
842
|
}]
|
|
3039
843
|
}, {
|
|
3040
|
-
recordingIndex:
|
|
844
|
+
recordingIndex: 1,
|
|
3041
845
|
layout: {
|
|
3042
846
|
type: "simple_frame_zoom_cut",
|
|
3043
847
|
data: {
|
|
@@ -3047,18 +851,21 @@ var renderer = new RemotionRenderer({
|
|
|
3047
851
|
backgroundBlur: false
|
|
3048
852
|
},
|
|
3049
853
|
sourceVideo: {
|
|
3050
|
-
videoUrl: "https://stream.mux.com/
|
|
3051
|
-
proxyVideoUrl: "https://
|
|
3052
|
-
start: 8
|
|
854
|
+
videoUrl: "https://stream.mux.com/FkAosVti01ZQ61ETBY4pBVBWkR2Run1dO9QfJ7dqhtfo/highest.mp4",
|
|
855
|
+
proxyVideoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/FkAosVti01ZQ61ETBY4pBVBWkR2Run1dO9QfJ7dqhtfo/max640_fps24_crf30.mp4",
|
|
856
|
+
start: 8,
|
|
3053
857
|
aspectRatio: "16:9",
|
|
3054
|
-
durationSeconds:
|
|
858
|
+
durationSeconds: 13.742667
|
|
3055
859
|
},
|
|
3056
|
-
duration:
|
|
3057
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/
|
|
3058
|
-
frameColor: "#
|
|
860
|
+
duration: 4.75,
|
|
861
|
+
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/PUvc3VDC/1761800173636-collabvideorectangle.png",
|
|
862
|
+
frameColor: "#303030",
|
|
3059
863
|
disableTransitionSounds: true,
|
|
3060
|
-
paddingLeft: 0.
|
|
3061
|
-
paddingRight: 0
|
|
864
|
+
paddingLeft: 0.10500005000000012,
|
|
865
|
+
paddingRight: 0.9926670000000009,
|
|
866
|
+
responderName: "Vincent Test",
|
|
867
|
+
speakerRole: "responder",
|
|
868
|
+
questionIndex: 1
|
|
3062
869
|
}
|
|
3063
870
|
},
|
|
3064
871
|
effects: [{
|
|
@@ -3066,99 +873,123 @@ var renderer = new RemotionRenderer({
|
|
|
3066
873
|
data: {
|
|
3067
874
|
transcript_text: [{
|
|
3068
875
|
offset: 0,
|
|
3069
|
-
duration: 0.
|
|
3070
|
-
text: "
|
|
876
|
+
duration: 0.9600000000000009,
|
|
877
|
+
text: "Again, I wanna make",
|
|
3071
878
|
punctuations: [{
|
|
3072
879
|
index: 0,
|
|
3073
880
|
start: 0,
|
|
3074
|
-
end: 0.
|
|
881
|
+
end: 0.3200000000000003
|
|
3075
882
|
}, {
|
|
3076
883
|
index: 1,
|
|
3077
|
-
start: 0.
|
|
3078
|
-
end: 0.
|
|
884
|
+
start: 0.3200000000000003,
|
|
885
|
+
end: 0.4800000000000004
|
|
3079
886
|
}, {
|
|
3080
887
|
index: 2,
|
|
3081
|
-
start: 0.
|
|
3082
|
-
end: 0.
|
|
888
|
+
start: 0.4800000000000004,
|
|
889
|
+
end: 0.7200000000000006
|
|
890
|
+
}, {
|
|
891
|
+
index: 3,
|
|
892
|
+
start: 0.7200000000000006,
|
|
893
|
+
end: 0.9600000000000009
|
|
3083
894
|
}]
|
|
3084
895
|
}, {
|
|
3085
|
-
offset: 0.
|
|
3086
|
-
duration:
|
|
3087
|
-
text: "
|
|
896
|
+
offset: 0.9600000000000009,
|
|
897
|
+
duration: 0.9599999999999991,
|
|
898
|
+
text: "this as long as",
|
|
3088
899
|
punctuations: [{
|
|
3089
900
|
index: 0,
|
|
3090
|
-
start: 0.
|
|
3091
|
-
end: 1.
|
|
901
|
+
start: 0.9600000000000009,
|
|
902
|
+
end: 1.1999999999999993
|
|
3092
903
|
}, {
|
|
3093
904
|
index: 1,
|
|
3094
|
-
start: 1.
|
|
3095
|
-
end:
|
|
905
|
+
start: 1.1999999999999993,
|
|
906
|
+
end: 1.3599999999999994
|
|
3096
907
|
}, {
|
|
3097
908
|
index: 2,
|
|
3098
|
-
start:
|
|
3099
|
-
end:
|
|
909
|
+
start: 1.3599999999999994,
|
|
910
|
+
end: 1.5999990000000004
|
|
3100
911
|
}, {
|
|
3101
912
|
index: 3,
|
|
3102
|
-
start:
|
|
3103
|
-
end:
|
|
913
|
+
start: 1.5999990000000004,
|
|
914
|
+
end: 1.92
|
|
3104
915
|
}]
|
|
3105
916
|
}, {
|
|
3106
|
-
offset:
|
|
3107
|
-
duration:
|
|
3108
|
-
text: "
|
|
917
|
+
offset: 1.92,
|
|
918
|
+
duration: 1.5199999999999996,
|
|
919
|
+
text: "possible so it has",
|
|
3109
920
|
punctuations: [{
|
|
3110
921
|
index: 0,
|
|
3111
|
-
start:
|
|
3112
|
-
end: 2.
|
|
922
|
+
start: 1.92,
|
|
923
|
+
end: 2.42
|
|
3113
924
|
}, {
|
|
3114
925
|
index: 1,
|
|
3115
|
-
start: 2.
|
|
3116
|
-
end: 3.
|
|
926
|
+
start: 2.7199989999999996,
|
|
927
|
+
end: 3.039999999999999
|
|
928
|
+
}, {
|
|
929
|
+
index: 2,
|
|
930
|
+
start: 3.039999999999999,
|
|
931
|
+
end: 3.1999999999999993
|
|
932
|
+
}, {
|
|
933
|
+
index: 3,
|
|
934
|
+
start: 3.1999999999999993,
|
|
935
|
+
end: 3.4399999999999995
|
|
3117
936
|
}]
|
|
3118
937
|
}, {
|
|
3119
|
-
offset: 3.
|
|
3120
|
-
duration:
|
|
3121
|
-
text: "
|
|
938
|
+
offset: 3.4399999999999995,
|
|
939
|
+
duration: 1.0600000000000005,
|
|
940
|
+
text: "multiple segments.",
|
|
3122
941
|
punctuations: [{
|
|
3123
942
|
index: 0,
|
|
3124
|
-
start: 3.
|
|
3125
|
-
end: 3.
|
|
943
|
+
start: 3.4399999999999995,
|
|
944
|
+
end: 3.9399999999999995
|
|
945
|
+
}, {
|
|
946
|
+
index: 1,
|
|
947
|
+
start: 4,
|
|
948
|
+
end: 4.5
|
|
3126
949
|
}]
|
|
3127
950
|
}]
|
|
3128
951
|
}
|
|
3129
952
|
}]
|
|
3130
953
|
}, {
|
|
3131
|
-
recordingIndex: 8,
|
|
3132
954
|
layout: {
|
|
3133
|
-
type: "
|
|
955
|
+
type: "multi_handoff",
|
|
3134
956
|
data: {
|
|
957
|
+
duration: 31.524333000000006,
|
|
958
|
+
trimLeft: 0,
|
|
959
|
+
trimRight: 0,
|
|
3135
960
|
noBackgroundVideoEffects: {
|
|
3136
961
|
facePop: false,
|
|
3137
962
|
backgroundDim: false,
|
|
3138
963
|
backgroundBlur: false
|
|
3139
964
|
},
|
|
3140
965
|
sourceVideo: {
|
|
3141
|
-
videoUrl: "https://stream.mux.com/
|
|
3142
|
-
proxyVideoUrl: "https://
|
|
3143
|
-
start:
|
|
3144
|
-
aspectRatio: "16:9",
|
|
3145
|
-
durationSeconds: 32.200133
|
|
3146
|
-
},
|
|
3147
|
-
duration: 4.655001,
|
|
3148
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
3149
|
-
frameColor: "#C5B4E3",
|
|
3150
|
-
disableTransitionSounds: true,
|
|
3151
|
-
brollUrl: "https://videos.pexels.com/video-files/8391535/8391535-hd_1920_1080_24fps.mp4",
|
|
3152
|
-
sentenceText: "Yoga helps us find what stays steady through change.",
|
|
3153
|
-
text: "Yoga helps us find what stays steady through change.",
|
|
3154
|
-
imageUrl: "https://images.pexels.com/photos/5928615/pexels-photo-5928615.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
3155
|
-
imgBgUrlVariations: {
|
|
3156
|
-
"default": "https://images.pexels.com/photos/5928615/pexels-photo-5928615.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
3157
|
-
pexels: "https://images.pexels.com/photos/5928615/pexels-photo-5928615.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
966
|
+
videoUrl: "https://stream.mux.com/82BL2HkRDNGe00G8m5qaX501jI02CPcQEj00Rnh01pG2Bm9g/highest.mp4",
|
|
967
|
+
proxyVideoUrl: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/82BL2HkRDNGe00G8m5qaX501jI02CPcQEj00Rnh01pG2Bm9g/max640_fps24_crf30.mp4",
|
|
968
|
+
start: 1.5999999
|
|
3158
969
|
},
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
970
|
+
handoffOverlapSeconds: [2.5660001, 0.40566699999999756],
|
|
971
|
+
videos: [{
|
|
972
|
+
videoFile: "https://stream.mux.com/82BL2HkRDNGe00G8m5qaX501jI02CPcQEj00Rnh01pG2Bm9g/highest.mp4",
|
|
973
|
+
proxyVideoFile: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/82BL2HkRDNGe00G8m5qaX501jI02CPcQEj00Rnh01pG2Bm9g/max640_fps24_crf30.mp4",
|
|
974
|
+
videoDuration: 9.4760001,
|
|
975
|
+
startVideoFrom: 1.5999999,
|
|
976
|
+
speakerRole: "responder",
|
|
977
|
+
useSquareInLandscape: false
|
|
978
|
+
}, {
|
|
979
|
+
videoFile: "https://stream.mux.com/yLAvTeYqSKXnmBuBxNLMNRICcmi3CEOtMNNyTYbYSok/highest.mp4",
|
|
980
|
+
proxyVideoFile: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/yLAvTeYqSKXnmBuBxNLMNRICcmi3CEOtMNNyTYbYSok/max640_fps24_crf30.mp4",
|
|
981
|
+
videoDuration: 13.23,
|
|
982
|
+
startVideoFrom: 0,
|
|
983
|
+
speakerRole: "seeker",
|
|
984
|
+
useSquareInLandscape: false
|
|
985
|
+
}, {
|
|
986
|
+
videoFile: "https://stream.mux.com/ubf02owmOgLI021DGRXcNuhxhTDQ7tJgia3RGkYTQGRc8/highest.mp4",
|
|
987
|
+
proxyVideoFile: "https://storage.googleapis.com/ai-recorder-media-assets/media/content/screenplay-proxy/v1/ubf02owmOgLI021DGRXcNuhxhTDQ7tJgia3RGkYTQGRc8/max640_fps24_crf30.mp4",
|
|
988
|
+
videoDuration: 11.79,
|
|
989
|
+
startVideoFrom: 0,
|
|
990
|
+
speakerRole: "responder",
|
|
991
|
+
useSquareInLandscape: false
|
|
992
|
+
}]
|
|
3162
993
|
}
|
|
3163
994
|
},
|
|
3164
995
|
effects: [{
|
|
@@ -3166,359 +997,629 @@ var renderer = new RemotionRenderer({
|
|
|
3166
997
|
data: {
|
|
3167
998
|
transcript_text: [{
|
|
3168
999
|
offset: 0,
|
|
3169
|
-
duration:
|
|
3170
|
-
text: "
|
|
1000
|
+
duration: 1.5999999,
|
|
1001
|
+
text: "This is a third",
|
|
3171
1002
|
punctuations: [{
|
|
3172
1003
|
index: 0,
|
|
3173
1004
|
start: 0,
|
|
3174
|
-
end: 0.
|
|
1005
|
+
end: 0.3200000999999999
|
|
3175
1006
|
}, {
|
|
3176
1007
|
index: 1,
|
|
3177
|
-
start: 0.
|
|
3178
|
-
end: 0.
|
|
1008
|
+
start: 0.3200000999999999,
|
|
1009
|
+
end: 0.8200000999999999
|
|
3179
1010
|
}, {
|
|
3180
1011
|
index: 2,
|
|
3181
|
-
start: 0.
|
|
3182
|
-
end:
|
|
3183
|
-
}
|
|
1012
|
+
start: 0.9600001,
|
|
1013
|
+
end: 1.2000000999999998
|
|
1014
|
+
}, {
|
|
1015
|
+
index: 3,
|
|
1016
|
+
start: 1.2000000999999998,
|
|
1017
|
+
end: 1.5999999
|
|
1018
|
+
}],
|
|
1019
|
+
speaker: "responder"
|
|
3184
1020
|
}, {
|
|
3185
|
-
offset:
|
|
3186
|
-
duration:
|
|
3187
|
-
text: "
|
|
1021
|
+
offset: 1.5999999,
|
|
1022
|
+
duration: 1.0400002000000002,
|
|
1023
|
+
text: "segment just to",
|
|
3188
1024
|
punctuations: [{
|
|
3189
1025
|
index: 0,
|
|
3190
|
-
start:
|
|
3191
|
-
end:
|
|
1026
|
+
start: 1.5999999,
|
|
1027
|
+
end: 2.0799999
|
|
3192
1028
|
}, {
|
|
3193
1029
|
index: 1,
|
|
3194
|
-
start:
|
|
3195
|
-
end:
|
|
3196
|
-
}
|
|
1030
|
+
start: 2.0799999,
|
|
1031
|
+
end: 2.4000000999999997
|
|
1032
|
+
}, {
|
|
1033
|
+
index: 2,
|
|
1034
|
+
start: 2.4000000999999997,
|
|
1035
|
+
end: 2.6400001
|
|
1036
|
+
}],
|
|
1037
|
+
speaker: "responder"
|
|
1038
|
+
}, {
|
|
1039
|
+
offset: 2.6400001,
|
|
1040
|
+
duration: 0.7999999999999998,
|
|
1041
|
+
text: "guarantee that",
|
|
1042
|
+
punctuations: [{
|
|
1043
|
+
index: 0,
|
|
1044
|
+
start: 2.6400001,
|
|
1045
|
+
end: 3.1400001
|
|
1046
|
+
}, {
|
|
1047
|
+
index: 1,
|
|
1048
|
+
start: 3.1999997999999996,
|
|
1049
|
+
end: 3.4400001
|
|
1050
|
+
}],
|
|
1051
|
+
speaker: "responder"
|
|
3197
1052
|
}, {
|
|
3198
|
-
offset:
|
|
3199
|
-
duration:
|
|
3200
|
-
text: "
|
|
1053
|
+
offset: 3.4400001,
|
|
1054
|
+
duration: 0.8799999999999999,
|
|
1055
|
+
text: "there will be",
|
|
3201
1056
|
punctuations: [{
|
|
3202
1057
|
index: 0,
|
|
3203
|
-
start:
|
|
3204
|
-
end:
|
|
1058
|
+
start: 3.4400001,
|
|
1059
|
+
end: 3.6799998
|
|
3205
1060
|
}, {
|
|
3206
1061
|
index: 1,
|
|
3207
|
-
start:
|
|
3208
|
-
end:
|
|
1062
|
+
start: 3.6799998,
|
|
1063
|
+
end: 3.8400001
|
|
3209
1064
|
}, {
|
|
3210
1065
|
index: 2,
|
|
3211
|
-
start:
|
|
3212
|
-
end:
|
|
3213
|
-
}]
|
|
1066
|
+
start: 3.8400001,
|
|
1067
|
+
end: 4.3200001
|
|
1068
|
+
}],
|
|
1069
|
+
speaker: "responder"
|
|
3214
1070
|
}, {
|
|
3215
|
-
offset:
|
|
3216
|
-
duration: 1.
|
|
3217
|
-
text: "
|
|
1071
|
+
offset: 4.3200001,
|
|
1072
|
+
duration: 1.0600000000000005,
|
|
1073
|
+
text: "multiple segments",
|
|
3218
1074
|
punctuations: [{
|
|
3219
1075
|
index: 0,
|
|
3220
|
-
start:
|
|
3221
|
-
end:
|
|
1076
|
+
start: 4.3200001,
|
|
1077
|
+
end: 4.8200001
|
|
3222
1078
|
}, {
|
|
3223
1079
|
index: 1,
|
|
3224
|
-
start:
|
|
3225
|
-
end:
|
|
1080
|
+
start: 4.8800001,
|
|
1081
|
+
end: 5.3800001
|
|
1082
|
+
}],
|
|
1083
|
+
speaker: "responder"
|
|
1084
|
+
}, {
|
|
1085
|
+
offset: 5.7599998,
|
|
1086
|
+
duration: 1.4400003000000003,
|
|
1087
|
+
text: "used in the",
|
|
1088
|
+
punctuations: [{
|
|
1089
|
+
index: 0,
|
|
1090
|
+
start: 5.7599998,
|
|
1091
|
+
end: 6.2599998
|
|
3226
1092
|
}, {
|
|
3227
|
-
index:
|
|
3228
|
-
start:
|
|
3229
|
-
end:
|
|
1093
|
+
index: 1,
|
|
1094
|
+
start: 6.5600001,
|
|
1095
|
+
end: 6.8000001
|
|
3230
1096
|
}, {
|
|
3231
|
-
index:
|
|
3232
|
-
start:
|
|
3233
|
-
end:
|
|
3234
|
-
}]
|
|
1097
|
+
index: 2,
|
|
1098
|
+
start: 6.8000001,
|
|
1099
|
+
end: 7.2000001000000005
|
|
1100
|
+
}],
|
|
1101
|
+
speaker: "responder"
|
|
3235
1102
|
}, {
|
|
3236
|
-
offset:
|
|
1103
|
+
offset: 7.2000001000000005,
|
|
3237
1104
|
duration: 0.5,
|
|
3238
|
-
text: "
|
|
1105
|
+
text: "screenplay.",
|
|
3239
1106
|
punctuations: [{
|
|
3240
1107
|
index: 0,
|
|
3241
|
-
start:
|
|
3242
|
-
end:
|
|
3243
|
-
}]
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
layout: {
|
|
3250
|
-
type: "motion_still",
|
|
3251
|
-
data: {
|
|
3252
|
-
noBackgroundVideoEffects: {
|
|
3253
|
-
facePop: false,
|
|
3254
|
-
backgroundDim: false,
|
|
3255
|
-
backgroundBlur: false
|
|
3256
|
-
},
|
|
3257
|
-
sourceVideo: {
|
|
3258
|
-
videoUrl: "https://stream.mux.com/tsHwq3027MFf2Re02sc5pAHM02QvJCeo7ENgC01xCjes6P8/highest.mp4",
|
|
3259
|
-
proxyVideoUrl: "https://stream.mux.com/tsHwq3027MFf2Re02sc5pAHM02QvJCeo7ENgC01xCjes6P8/highest.mp4",
|
|
3260
|
-
start: 17.215,
|
|
3261
|
-
aspectRatio: "16:9",
|
|
3262
|
-
durationSeconds: 32.200133
|
|
3263
|
-
},
|
|
3264
|
-
duration: 9.71,
|
|
3265
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
3266
|
-
frameColor: "#C5B4E3",
|
|
3267
|
-
disableTransitionSounds: true,
|
|
3268
|
-
brollUrl: "https://videos.pexels.com/video-files/8534804/8534804-hd_1920_1080_25fps.mp4",
|
|
3269
|
-
sentenceText: "Build the skill to meet reality, not promises.",
|
|
3270
|
-
text: "Build the skill to meet reality, not promises.",
|
|
3271
|
-
imageUrl: "https://images.pexels.com/photos/5070334/pexels-photo-5070334.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
3272
|
-
imgBgUrlVariations: {
|
|
3273
|
-
"default": "https://images.pexels.com/photos/5070334/pexels-photo-5070334.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200",
|
|
3274
|
-
pexels: "https://images.pexels.com/photos/5070334/pexels-photo-5070334.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200"
|
|
3275
|
-
},
|
|
3276
|
-
words: ["Meet", "Reality"],
|
|
3277
|
-
paddingLeft: 0,
|
|
3278
|
-
paddingRight: 0.1426874999999992
|
|
3279
|
-
}
|
|
3280
|
-
},
|
|
3281
|
-
effects: [{
|
|
3282
|
-
type: "caption_word_boom",
|
|
3283
|
-
data: {
|
|
3284
|
-
transcript_text: [{
|
|
3285
|
-
offset: 0,
|
|
3286
|
-
duration: 0.880001,
|
|
3287
|
-
text: "It gives us the",
|
|
1108
|
+
start: 7.2000001000000005,
|
|
1109
|
+
end: 7.7000001000000005
|
|
1110
|
+
}],
|
|
1111
|
+
speaker: "responder"
|
|
1112
|
+
}, {
|
|
1113
|
+
offset: 7.949999999999999,
|
|
1114
|
+
duration: 1.2799999999999998,
|
|
1115
|
+
text: "I wanna ask about",
|
|
3288
1116
|
punctuations: [{
|
|
3289
1117
|
index: 0,
|
|
3290
|
-
start:
|
|
3291
|
-
end:
|
|
1118
|
+
start: 7.949999999999999,
|
|
1119
|
+
end: 8.27,
|
|
1120
|
+
originalStart: 0,
|
|
1121
|
+
originalEnd: 0.32000000000000006
|
|
3292
1122
|
}, {
|
|
3293
1123
|
index: 1,
|
|
3294
|
-
start:
|
|
3295
|
-
end:
|
|
1124
|
+
start: 8.27,
|
|
1125
|
+
end: 8.59,
|
|
1126
|
+
originalStart: 0.32000000000000006,
|
|
1127
|
+
originalEnd: 0.6399999999999999
|
|
3296
1128
|
}, {
|
|
3297
1129
|
index: 2,
|
|
3298
|
-
start:
|
|
3299
|
-
end:
|
|
1130
|
+
start: 8.59,
|
|
1131
|
+
end: 8.91,
|
|
1132
|
+
originalStart: 0.6399999999999999,
|
|
1133
|
+
originalEnd: 0.96
|
|
3300
1134
|
}, {
|
|
3301
1135
|
index: 3,
|
|
3302
|
-
start:
|
|
3303
|
-
end:
|
|
3304
|
-
|
|
1136
|
+
start: 8.91,
|
|
1137
|
+
end: 9.229999999999999,
|
|
1138
|
+
originalStart: 0.96,
|
|
1139
|
+
originalEnd: 1.2799999999999998
|
|
1140
|
+
}],
|
|
1141
|
+
originalOffset: 0,
|
|
1142
|
+
speaker: "seeker"
|
|
3305
1143
|
}, {
|
|
3306
|
-
offset:
|
|
3307
|
-
duration:
|
|
3308
|
-
text: "
|
|
1144
|
+
offset: 9.229999999999999,
|
|
1145
|
+
duration: 0.6400000000000001,
|
|
1146
|
+
text: "the importance of",
|
|
3309
1147
|
punctuations: [{
|
|
3310
1148
|
index: 0,
|
|
3311
|
-
start:
|
|
3312
|
-
end:
|
|
1149
|
+
start: 9.229999999999999,
|
|
1150
|
+
end: 9.389999999999999,
|
|
1151
|
+
originalStart: 1.2799999999999998,
|
|
1152
|
+
originalEnd: 1.44
|
|
3313
1153
|
}, {
|
|
3314
1154
|
index: 1,
|
|
3315
|
-
start:
|
|
3316
|
-
end:
|
|
1155
|
+
start: 9.389999999999999,
|
|
1156
|
+
end: 9.709999999999999,
|
|
1157
|
+
originalStart: 1.44,
|
|
1158
|
+
originalEnd: 1.7599999999999998
|
|
3317
1159
|
}, {
|
|
3318
1160
|
index: 2,
|
|
3319
|
-
start:
|
|
3320
|
-
end:
|
|
3321
|
-
|
|
1161
|
+
start: 9.709999999999999,
|
|
1162
|
+
end: 9.87,
|
|
1163
|
+
originalStart: 1.7599999999999998,
|
|
1164
|
+
originalEnd: 1.92
|
|
1165
|
+
}],
|
|
1166
|
+
originalOffset: 1.2799999999999998,
|
|
1167
|
+
speaker: "seeker"
|
|
3322
1168
|
}, {
|
|
3323
|
-
offset:
|
|
3324
|
-
duration: 0.
|
|
3325
|
-
text: "
|
|
1169
|
+
offset: 9.87,
|
|
1170
|
+
duration: 0.8799999999999999,
|
|
1171
|
+
text: "personal branding.",
|
|
3326
1172
|
punctuations: [{
|
|
3327
1173
|
index: 0,
|
|
3328
|
-
start:
|
|
3329
|
-
end:
|
|
1174
|
+
start: 9.87,
|
|
1175
|
+
end: 10.27,
|
|
1176
|
+
originalStart: 1.92,
|
|
1177
|
+
originalEnd: 2.32
|
|
3330
1178
|
}, {
|
|
3331
1179
|
index: 1,
|
|
3332
|
-
start:
|
|
3333
|
-
end:
|
|
3334
|
-
|
|
1180
|
+
start: 10.27,
|
|
1181
|
+
end: 10.75,
|
|
1182
|
+
originalStart: 2.32,
|
|
1183
|
+
originalEnd: 2.8
|
|
1184
|
+
}],
|
|
1185
|
+
originalOffset: 1.92,
|
|
1186
|
+
speaker: "seeker"
|
|
3335
1187
|
}, {
|
|
3336
|
-
offset:
|
|
3337
|
-
duration: 0.
|
|
3338
|
-
text: "
|
|
1188
|
+
offset: 10.75,
|
|
1189
|
+
duration: 0.6400000000000006,
|
|
1190
|
+
text: "This will complete",
|
|
3339
1191
|
punctuations: [{
|
|
3340
1192
|
index: 0,
|
|
3341
|
-
start:
|
|
3342
|
-
end:
|
|
1193
|
+
start: 10.75,
|
|
1194
|
+
end: 10.91,
|
|
1195
|
+
originalStart: 2.8,
|
|
1196
|
+
originalEnd: 2.96
|
|
3343
1197
|
}, {
|
|
3344
1198
|
index: 1,
|
|
3345
|
-
start:
|
|
3346
|
-
end:
|
|
3347
|
-
|
|
1199
|
+
start: 10.91,
|
|
1200
|
+
end: 11.07,
|
|
1201
|
+
originalStart: 2.96,
|
|
1202
|
+
originalEnd: 3.12
|
|
1203
|
+
}, {
|
|
1204
|
+
index: 2,
|
|
1205
|
+
start: 11.07,
|
|
1206
|
+
end: 11.39,
|
|
1207
|
+
originalStart: 3.12,
|
|
1208
|
+
originalEnd: 3.4400000000000004
|
|
1209
|
+
}],
|
|
1210
|
+
originalOffset: 2.8,
|
|
1211
|
+
speaker: "seeker"
|
|
3348
1212
|
}, {
|
|
3349
|
-
offset:
|
|
3350
|
-
duration: 0.
|
|
3351
|
-
text: "
|
|
1213
|
+
offset: 11.39,
|
|
1214
|
+
duration: 0.8799996999999999,
|
|
1215
|
+
text: "the whole episode",
|
|
3352
1216
|
punctuations: [{
|
|
3353
1217
|
index: 0,
|
|
3354
|
-
start:
|
|
3355
|
-
end:
|
|
1218
|
+
start: 11.39,
|
|
1219
|
+
end: 11.469999999999999,
|
|
1220
|
+
originalStart: 3.4400000000000004,
|
|
1221
|
+
originalEnd: 3.5199999999999996
|
|
3356
1222
|
}, {
|
|
3357
1223
|
index: 1,
|
|
3358
|
-
start:
|
|
3359
|
-
end:
|
|
1224
|
+
start: 11.469999999999999,
|
|
1225
|
+
end: 11.79,
|
|
1226
|
+
originalStart: 3.5199999999999996,
|
|
1227
|
+
originalEnd: 3.84
|
|
3360
1228
|
}, {
|
|
3361
1229
|
index: 2,
|
|
3362
|
-
start:
|
|
3363
|
-
end:
|
|
1230
|
+
start: 11.79,
|
|
1231
|
+
end: 12.2699997,
|
|
1232
|
+
originalStart: 3.84,
|
|
1233
|
+
originalEnd: 4.3199997
|
|
1234
|
+
}],
|
|
1235
|
+
originalOffset: 3.4400000000000004,
|
|
1236
|
+
speaker: "seeker"
|
|
1237
|
+
}, {
|
|
1238
|
+
offset: 12.2699997,
|
|
1239
|
+
duration: 0.47999999999999954,
|
|
1240
|
+
text: "with three",
|
|
1241
|
+
punctuations: [{
|
|
1242
|
+
index: 0,
|
|
1243
|
+
start: 12.2699997,
|
|
1244
|
+
end: 12.509999999999998,
|
|
1245
|
+
originalStart: 4.3199997,
|
|
1246
|
+
originalEnd: 4.56
|
|
3364
1247
|
}, {
|
|
3365
|
-
index:
|
|
3366
|
-
start:
|
|
3367
|
-
end:
|
|
3368
|
-
|
|
1248
|
+
index: 1,
|
|
1249
|
+
start: 12.509999999999998,
|
|
1250
|
+
end: 12.7499997,
|
|
1251
|
+
originalStart: 4.56,
|
|
1252
|
+
originalEnd: 4.7999997
|
|
1253
|
+
}],
|
|
1254
|
+
originalOffset: 4.3199997,
|
|
1255
|
+
speaker: "seeker"
|
|
3369
1256
|
}, {
|
|
3370
|
-
offset:
|
|
3371
|
-
duration:
|
|
3372
|
-
text: "
|
|
1257
|
+
offset: 12.7499997,
|
|
1258
|
+
duration: 0.6400003000000005,
|
|
1259
|
+
text: "questions, which",
|
|
1260
|
+
punctuations: [{
|
|
1261
|
+
index: 0,
|
|
1262
|
+
start: 12.7499997,
|
|
1263
|
+
end: 13.149999999999999,
|
|
1264
|
+
originalStart: 4.7999997,
|
|
1265
|
+
originalEnd: 5.2
|
|
1266
|
+
}, {
|
|
1267
|
+
index: 1,
|
|
1268
|
+
start: 13.149999999999999,
|
|
1269
|
+
end: 13.39,
|
|
1270
|
+
originalStart: 5.2,
|
|
1271
|
+
originalEnd: 5.44
|
|
1272
|
+
}],
|
|
1273
|
+
originalOffset: 4.7999997,
|
|
1274
|
+
speaker: "seeker"
|
|
1275
|
+
}, {
|
|
1276
|
+
offset: 13.39,
|
|
1277
|
+
duration: 0.5599999999999996,
|
|
1278
|
+
text: "are each about,",
|
|
3373
1279
|
punctuations: [{
|
|
3374
1280
|
index: 0,
|
|
3375
|
-
start:
|
|
3376
|
-
end:
|
|
1281
|
+
start: 13.39,
|
|
1282
|
+
end: 13.469999999999999,
|
|
1283
|
+
originalStart: 5.44,
|
|
1284
|
+
originalEnd: 5.52
|
|
3377
1285
|
}, {
|
|
3378
1286
|
index: 1,
|
|
3379
|
-
start:
|
|
3380
|
-
end:
|
|
1287
|
+
start: 13.469999999999999,
|
|
1288
|
+
end: 13.7099997,
|
|
1289
|
+
originalStart: 5.52,
|
|
1290
|
+
originalEnd: 5.7599997
|
|
3381
1291
|
}, {
|
|
3382
1292
|
index: 2,
|
|
3383
|
-
start:
|
|
3384
|
-
end:
|
|
3385
|
-
|
|
1293
|
+
start: 13.7099997,
|
|
1294
|
+
end: 13.95,
|
|
1295
|
+
originalStart: 5.7599997,
|
|
1296
|
+
originalEnd: 6
|
|
1297
|
+
}],
|
|
1298
|
+
originalOffset: 5.44,
|
|
1299
|
+
speaker: "seeker"
|
|
3386
1300
|
}, {
|
|
3387
|
-
offset:
|
|
3388
|
-
duration:
|
|
3389
|
-
text: "
|
|
1301
|
+
offset: 13.95,
|
|
1302
|
+
duration: 0.47999999999999954,
|
|
1303
|
+
text: "like, five, ten",
|
|
3390
1304
|
punctuations: [{
|
|
3391
1305
|
index: 0,
|
|
3392
|
-
start:
|
|
3393
|
-
end:
|
|
1306
|
+
start: 13.95,
|
|
1307
|
+
end: 14.11,
|
|
1308
|
+
originalStart: 6,
|
|
1309
|
+
originalEnd: 6.16
|
|
3394
1310
|
}, {
|
|
3395
1311
|
index: 1,
|
|
3396
|
-
start:
|
|
3397
|
-
end:
|
|
1312
|
+
start: 14.11,
|
|
1313
|
+
end: 14.2699997,
|
|
1314
|
+
originalStart: 6.16,
|
|
1315
|
+
originalEnd: 6.3199997
|
|
3398
1316
|
}, {
|
|
3399
1317
|
index: 2,
|
|
3400
|
-
start:
|
|
3401
|
-
end:
|
|
3402
|
-
|
|
1318
|
+
start: 14.2699997,
|
|
1319
|
+
end: 14.43,
|
|
1320
|
+
originalStart: 6.3199997,
|
|
1321
|
+
originalEnd: 6.4799999999999995
|
|
1322
|
+
}],
|
|
1323
|
+
originalOffset: 6,
|
|
1324
|
+
speaker: "seeker"
|
|
3403
1325
|
}, {
|
|
3404
|
-
offset:
|
|
3405
|
-
duration:
|
|
3406
|
-
text: "
|
|
1326
|
+
offset: 14.43,
|
|
1327
|
+
duration: 1.200000000000001,
|
|
1328
|
+
text: "seconds each, and",
|
|
3407
1329
|
punctuations: [{
|
|
3408
1330
|
index: 0,
|
|
3409
|
-
start:
|
|
3410
|
-
end:
|
|
1331
|
+
start: 14.43,
|
|
1332
|
+
end: 14.91,
|
|
1333
|
+
originalStart: 6.4799999999999995,
|
|
1334
|
+
originalEnd: 6.96
|
|
3411
1335
|
}, {
|
|
3412
1336
|
index: 1,
|
|
3413
|
-
start:
|
|
3414
|
-
end:
|
|
3415
|
-
|
|
1337
|
+
start: 14.91,
|
|
1338
|
+
end: 15.39,
|
|
1339
|
+
originalStart: 6.96,
|
|
1340
|
+
originalEnd: 7.44
|
|
1341
|
+
}, {
|
|
1342
|
+
index: 2,
|
|
1343
|
+
start: 15.39,
|
|
1344
|
+
end: 15.629999999999999,
|
|
1345
|
+
originalStart: 7.44,
|
|
1346
|
+
originalEnd: 7.680000000000001
|
|
1347
|
+
}],
|
|
1348
|
+
originalOffset: 6.4799999999999995,
|
|
1349
|
+
speaker: "seeker"
|
|
3416
1350
|
}, {
|
|
3417
|
-
offset:
|
|
3418
|
-
duration:
|
|
3419
|
-
text: "
|
|
1351
|
+
offset: 15.629999999999999,
|
|
1352
|
+
duration: 0.6399999999999988,
|
|
1353
|
+
text: "then I would be",
|
|
3420
1354
|
punctuations: [{
|
|
3421
1355
|
index: 0,
|
|
3422
|
-
start:
|
|
3423
|
-
end:
|
|
1356
|
+
start: 15.629999999999999,
|
|
1357
|
+
end: 15.79,
|
|
1358
|
+
originalStart: 7.680000000000001,
|
|
1359
|
+
originalEnd: 7.840000000000001
|
|
3424
1360
|
}, {
|
|
3425
1361
|
index: 1,
|
|
3426
|
-
start:
|
|
3427
|
-
end:
|
|
1362
|
+
start: 15.79,
|
|
1363
|
+
end: 15.870000000000001,
|
|
1364
|
+
originalStart: 7.840000000000001,
|
|
1365
|
+
originalEnd: 7.920000000000001
|
|
3428
1366
|
}, {
|
|
3429
1367
|
index: 2,
|
|
3430
|
-
start:
|
|
3431
|
-
end:
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
videoUrl: "https://stream.mux.com/tsHwq3027MFf2Re02sc5pAHM02QvJCeo7ENgC01xCjes6P8/highest.mp4",
|
|
3448
|
-
proxyVideoUrl: "https://stream.mux.com/tsHwq3027MFf2Re02sc5pAHM02QvJCeo7ENgC01xCjes6P8/highest.mp4",
|
|
3449
|
-
start: 27.210375,
|
|
3450
|
-
aspectRatio: "16:9",
|
|
3451
|
-
durationSeconds: 32.200133
|
|
3452
|
-
},
|
|
3453
|
-
duration: 3.390001,
|
|
3454
|
-
logoUrl: "https://cdn.solorecording.studio/media/brand-kit/8X8Vximr/1773429932296-mjhyogatransparent.png",
|
|
3455
|
-
frameColor: "#C5B4E3",
|
|
3456
|
-
disableTransitionSounds: true,
|
|
3457
|
-
paddingLeft: 0.1426874999999992,
|
|
3458
|
-
paddingRight: 1.599757000000002
|
|
3459
|
-
}
|
|
3460
|
-
},
|
|
3461
|
-
effects: [{
|
|
3462
|
-
type: "caption_word_boom",
|
|
3463
|
-
data: {
|
|
3464
|
-
transcript_text: [{
|
|
3465
|
-
offset: 0,
|
|
3466
|
-
duration: 0.7200009999999999,
|
|
3467
|
-
text: "Check out last",
|
|
1368
|
+
start: 15.870000000000001,
|
|
1369
|
+
end: 16.029999999999998,
|
|
1370
|
+
originalStart: 7.920000000000001,
|
|
1371
|
+
originalEnd: 8.079999999999998
|
|
1372
|
+
}, {
|
|
1373
|
+
index: 3,
|
|
1374
|
+
start: 16.029999999999998,
|
|
1375
|
+
end: 16.27,
|
|
1376
|
+
originalStart: 8.079999999999998,
|
|
1377
|
+
originalEnd: 8.32
|
|
1378
|
+
}],
|
|
1379
|
+
originalOffset: 7.680000000000001,
|
|
1380
|
+
speaker: "seeker"
|
|
1381
|
+
}, {
|
|
1382
|
+
offset: 16.27,
|
|
1383
|
+
duration: 1.040000000000001,
|
|
1384
|
+
text: "ready for me to",
|
|
3468
1385
|
punctuations: [{
|
|
3469
1386
|
index: 0,
|
|
3470
|
-
start:
|
|
3471
|
-
end:
|
|
1387
|
+
start: 16.27,
|
|
1388
|
+
end: 16.509999,
|
|
1389
|
+
originalStart: 8.32,
|
|
1390
|
+
originalEnd: 8.559999000000001
|
|
3472
1391
|
}, {
|
|
3473
1392
|
index: 1,
|
|
3474
|
-
start:
|
|
3475
|
-
end:
|
|
1393
|
+
start: 16.509999,
|
|
1394
|
+
end: 16.75,
|
|
1395
|
+
originalStart: 8.559999000000001,
|
|
1396
|
+
originalEnd: 8.8
|
|
3476
1397
|
}, {
|
|
3477
1398
|
index: 2,
|
|
3478
|
-
start:
|
|
3479
|
-
end:
|
|
3480
|
-
|
|
1399
|
+
start: 16.75,
|
|
1400
|
+
end: 16.99,
|
|
1401
|
+
originalStart: 8.8,
|
|
1402
|
+
originalEnd: 9.04
|
|
1403
|
+
}, {
|
|
1404
|
+
index: 3,
|
|
1405
|
+
start: 16.99,
|
|
1406
|
+
end: 17.31,
|
|
1407
|
+
originalStart: 9.04,
|
|
1408
|
+
originalEnd: 9.36
|
|
1409
|
+
}],
|
|
1410
|
+
originalOffset: 8.32,
|
|
1411
|
+
speaker: "seeker"
|
|
1412
|
+
}, {
|
|
1413
|
+
offset: 17.31,
|
|
1414
|
+
duration: 1.3599990000000002,
|
|
1415
|
+
text: "recreate, the",
|
|
1416
|
+
punctuations: [{
|
|
1417
|
+
index: 0,
|
|
1418
|
+
start: 17.31,
|
|
1419
|
+
end: 17.81,
|
|
1420
|
+
originalStart: 9.36,
|
|
1421
|
+
originalEnd: 9.86
|
|
1422
|
+
}, {
|
|
1423
|
+
index: 1,
|
|
1424
|
+
start: 18.27,
|
|
1425
|
+
end: 18.669999,
|
|
1426
|
+
originalStart: 10.32,
|
|
1427
|
+
originalEnd: 10.719999000000001
|
|
1428
|
+
}],
|
|
1429
|
+
originalOffset: 9.36,
|
|
1430
|
+
speaker: "seeker"
|
|
1431
|
+
}, {
|
|
1432
|
+
offset: 18.669999,
|
|
1433
|
+
duration: 0.5,
|
|
1434
|
+
text: "collaborator",
|
|
1435
|
+
punctuations: [{
|
|
1436
|
+
index: 0,
|
|
1437
|
+
start: 18.669999,
|
|
1438
|
+
end: 19.169999,
|
|
1439
|
+
originalStart: 10.719999000000001,
|
|
1440
|
+
originalEnd: 11.219999000000001
|
|
1441
|
+
}],
|
|
1442
|
+
originalOffset: 10.719999000000001,
|
|
1443
|
+
speaker: "seeker"
|
|
1444
|
+
}, {
|
|
1445
|
+
offset: 19.39,
|
|
1446
|
+
duration: 0.5,
|
|
1447
|
+
text: "experience.",
|
|
1448
|
+
punctuations: [{
|
|
1449
|
+
index: 0,
|
|
1450
|
+
start: 19.39,
|
|
1451
|
+
end: 19.89,
|
|
1452
|
+
originalStart: 11.440000000000001,
|
|
1453
|
+
originalEnd: 11.940000000000001
|
|
1454
|
+
}],
|
|
1455
|
+
originalOffset: 11.440000000000001,
|
|
1456
|
+
speaker: "seeker"
|
|
3481
1457
|
}, {
|
|
3482
|
-
offset:
|
|
3483
|
-
duration: 1.
|
|
3484
|
-
text: "
|
|
1458
|
+
offset: 20.46,
|
|
1459
|
+
duration: 1.5999999999999999,
|
|
1460
|
+
text: "This is the third",
|
|
3485
1461
|
punctuations: [{
|
|
3486
1462
|
index: 0,
|
|
3487
|
-
start:
|
|
3488
|
-
end:
|
|
1463
|
+
start: 20.46,
|
|
1464
|
+
end: 20.78,
|
|
1465
|
+
originalStart: 1.36,
|
|
1466
|
+
originalEnd: 1.68
|
|
3489
1467
|
}, {
|
|
3490
1468
|
index: 1,
|
|
3491
|
-
start:
|
|
3492
|
-
end:
|
|
1469
|
+
start: 20.78,
|
|
1470
|
+
end: 21.259999800000003,
|
|
1471
|
+
originalStart: 1.68,
|
|
1472
|
+
originalEnd: 2.1599998
|
|
3493
1473
|
}, {
|
|
3494
1474
|
index: 2,
|
|
3495
|
-
start:
|
|
3496
|
-
end:
|
|
3497
|
-
|
|
1475
|
+
start: 21.259999800000003,
|
|
1476
|
+
end: 21.580000000000002,
|
|
1477
|
+
originalStart: 2.1599998,
|
|
1478
|
+
originalEnd: 2.48
|
|
1479
|
+
}, {
|
|
1480
|
+
index: 3,
|
|
1481
|
+
start: 21.580000000000002,
|
|
1482
|
+
end: 22.060000000000002,
|
|
1483
|
+
originalStart: 2.48,
|
|
1484
|
+
originalEnd: 2.96
|
|
1485
|
+
}],
|
|
1486
|
+
originalOffset: 1.36,
|
|
1487
|
+
speaker: "responder"
|
|
3498
1488
|
}, {
|
|
3499
|
-
offset:
|
|
3500
|
-
duration:
|
|
3501
|
-
text: "
|
|
1489
|
+
offset: 22.060000000000002,
|
|
1490
|
+
duration: 2.5,
|
|
1491
|
+
text: "question for the",
|
|
3502
1492
|
punctuations: [{
|
|
3503
1493
|
index: 0,
|
|
3504
|
-
start:
|
|
3505
|
-
end:
|
|
1494
|
+
start: 22.060000000000002,
|
|
1495
|
+
end: 22.560000000000002,
|
|
1496
|
+
originalStart: 2.96,
|
|
1497
|
+
originalEnd: 3.46
|
|
3506
1498
|
}, {
|
|
3507
1499
|
index: 1,
|
|
3508
|
-
start:
|
|
3509
|
-
end:
|
|
1500
|
+
start: 23.580000000000002,
|
|
1501
|
+
end: 24.060000000000002,
|
|
1502
|
+
originalStart: 4.48,
|
|
1503
|
+
originalEnd: 4.96
|
|
3510
1504
|
}, {
|
|
3511
1505
|
index: 2,
|
|
3512
|
-
start:
|
|
3513
|
-
end:
|
|
3514
|
-
|
|
1506
|
+
start: 24.060000000000002,
|
|
1507
|
+
end: 24.560000000000002,
|
|
1508
|
+
originalStart: 4.96,
|
|
1509
|
+
originalEnd: 5.46
|
|
1510
|
+
}],
|
|
1511
|
+
originalOffset: 2.96,
|
|
1512
|
+
speaker: "responder"
|
|
1513
|
+
}, {
|
|
1514
|
+
offset: 25.02,
|
|
1515
|
+
duration: 2.4800000000000004,
|
|
1516
|
+
text: "response to in the",
|
|
1517
|
+
punctuations: [{
|
|
1518
|
+
index: 0,
|
|
1519
|
+
start: 25.02,
|
|
1520
|
+
end: 25.52,
|
|
1521
|
+
originalStart: 5.92,
|
|
1522
|
+
originalEnd: 6.42
|
|
1523
|
+
}, {
|
|
1524
|
+
index: 1,
|
|
1525
|
+
start: 26.62,
|
|
1526
|
+
end: 26.9399997,
|
|
1527
|
+
originalStart: 7.52,
|
|
1528
|
+
originalEnd: 7.8399997
|
|
1529
|
+
}, {
|
|
1530
|
+
index: 2,
|
|
1531
|
+
start: 27.019999600000002,
|
|
1532
|
+
end: 27.26,
|
|
1533
|
+
originalStart: 7.9199996,
|
|
1534
|
+
originalEnd: 8.16
|
|
1535
|
+
}, {
|
|
1536
|
+
index: 3,
|
|
1537
|
+
start: 27.26,
|
|
1538
|
+
end: 27.500000000000004,
|
|
1539
|
+
originalStart: 8.16,
|
|
1540
|
+
originalEnd: 8.4
|
|
1541
|
+
}],
|
|
1542
|
+
originalOffset: 5.92,
|
|
1543
|
+
speaker: "responder"
|
|
1544
|
+
}, {
|
|
1545
|
+
offset: 27.500000000000004,
|
|
1546
|
+
duration: 0.5,
|
|
1547
|
+
text: "episode.",
|
|
1548
|
+
punctuations: [{
|
|
1549
|
+
index: 0,
|
|
1550
|
+
start: 27.500000000000004,
|
|
1551
|
+
end: 28.000000000000004,
|
|
1552
|
+
originalStart: 8.4,
|
|
1553
|
+
originalEnd: 8.9
|
|
1554
|
+
}],
|
|
1555
|
+
originalOffset: 8.4,
|
|
1556
|
+
speaker: "responder"
|
|
1557
|
+
}, {
|
|
1558
|
+
offset: 29.02,
|
|
1559
|
+
duration: 0.9600000000000009,
|
|
1560
|
+
text: "Testing to see if",
|
|
1561
|
+
punctuations: [{
|
|
1562
|
+
index: 0,
|
|
1563
|
+
start: 29.02,
|
|
1564
|
+
end: 29.500000000000004,
|
|
1565
|
+
originalStart: 9.92,
|
|
1566
|
+
originalEnd: 10.4
|
|
1567
|
+
}, {
|
|
1568
|
+
index: 1,
|
|
1569
|
+
start: 29.500000000000004,
|
|
1570
|
+
end: 29.659999000000003,
|
|
1571
|
+
originalStart: 10.4,
|
|
1572
|
+
originalEnd: 10.559999
|
|
1573
|
+
}, {
|
|
1574
|
+
index: 2,
|
|
1575
|
+
start: 29.659999000000003,
|
|
1576
|
+
end: 29.819999,
|
|
1577
|
+
originalStart: 10.559999,
|
|
1578
|
+
originalEnd: 10.719999
|
|
1579
|
+
}, {
|
|
1580
|
+
index: 3,
|
|
1581
|
+
start: 29.819999,
|
|
1582
|
+
end: 29.98,
|
|
1583
|
+
originalStart: 10.719999,
|
|
1584
|
+
originalEnd: 10.88
|
|
1585
|
+
}],
|
|
1586
|
+
originalOffset: 9.92,
|
|
1587
|
+
speaker: "responder"
|
|
1588
|
+
}, {
|
|
1589
|
+
offset: 29.98,
|
|
1590
|
+
duration: 0.6599999999999984,
|
|
1591
|
+
text: "it works.",
|
|
1592
|
+
punctuations: [{
|
|
1593
|
+
index: 0,
|
|
1594
|
+
start: 29.98,
|
|
1595
|
+
end: 30.14,
|
|
1596
|
+
originalStart: 10.88,
|
|
1597
|
+
originalEnd: 11.04
|
|
1598
|
+
}, {
|
|
1599
|
+
index: 1,
|
|
1600
|
+
start: 30.14,
|
|
1601
|
+
end: 30.64,
|
|
1602
|
+
originalStart: 11.04,
|
|
1603
|
+
originalEnd: 11.54
|
|
1604
|
+
}],
|
|
1605
|
+
originalOffset: 10.88,
|
|
1606
|
+
speaker: "responder"
|
|
3515
1607
|
}]
|
|
3516
1608
|
}
|
|
3517
1609
|
}]
|
|
3518
1610
|
}]
|
|
3519
1611
|
}, {
|
|
3520
1612
|
type: "effect",
|
|
3521
|
-
segments: [
|
|
1613
|
+
segments: [{
|
|
1614
|
+
type: "nametag",
|
|
1615
|
+
theme: "none",
|
|
1616
|
+
data: {
|
|
1617
|
+
name: "Arjun Sundararajan",
|
|
1618
|
+
title: "Founder Zync AI. Talkshow Host. ",
|
|
1619
|
+
offset: 6,
|
|
1620
|
+
duration: 5
|
|
1621
|
+
}
|
|
1622
|
+
}]
|
|
3522
1623
|
}, {
|
|
3523
1624
|
type: "caption",
|
|
3524
1625
|
segments: []
|
|
@@ -3541,19 +1642,19 @@ var renderer = new RemotionRenderer({
|
|
|
3541
1642
|
}]
|
|
3542
1643
|
}],
|
|
3543
1644
|
output: {
|
|
3544
|
-
orientation: "
|
|
1645
|
+
orientation: "landscape",
|
|
3545
1646
|
fps: 60,
|
|
3546
|
-
callbackUrl: "https://contentkit.zync.ai/api/processor/callback",
|
|
1647
|
+
callbackUrl: "https://contentkit-test.zync.ai/api/processor/callback",
|
|
3547
1648
|
callbackMetadata: {
|
|
3548
1649
|
taskDetails: {
|
|
3549
1650
|
processorId: "VIDEO_SCREENPLAY",
|
|
3550
|
-
workspaceId: "
|
|
3551
|
-
meetingSeriesId: "
|
|
3552
|
-
groupId: "
|
|
1651
|
+
workspaceId: "PUvc3VDC",
|
|
1652
|
+
meetingSeriesId: "RGt19F02",
|
|
1653
|
+
groupId: "S7ZZoX"
|
|
3553
1654
|
}
|
|
3554
1655
|
}
|
|
3555
1656
|
},
|
|
3556
|
-
renderList: ["RENDER_VIDEO_SQUARE", "RENDER_VIDEO_PORTRAIT"
|
|
1657
|
+
renderList: ["RENDER_VIDEO_SQUARE", "RENDER_VIDEO_PORTRAIT"]
|
|
3557
1658
|
});
|
|
3558
1659
|
//renderer.validate();
|
|
3559
1660
|
renderer.generateMainVideoTrack();
|