@revideo/create 0.5.11-alpha.1102 → 0.5.11-alpha.1104

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/examples/README.md +43 -0
  2. package/examples/avatar-with-background/package.json +27 -0
  3. package/examples/avatar-with-background/src/project.meta +31 -0
  4. package/examples/avatar-with-background/src/project.ts +6 -0
  5. package/examples/avatar-with-background/src/render.ts +14 -0
  6. package/examples/avatar-with-background/src/revideo.d.ts +1 -0
  7. package/examples/avatar-with-background/src/scenes/example.meta +5 -0
  8. package/examples/avatar-with-background/src/scenes/example.tsx +28 -0
  9. package/examples/avatar-with-background/tsconfig.json +9 -0
  10. package/examples/avatar-with-background/vite.config.ts +8 -0
  11. package/examples/default/README.md +19 -0
  12. package/examples/default/package.json +20 -0
  13. package/examples/default/src/project.tsx +56 -0
  14. package/examples/default/src/render.ts +15 -0
  15. package/examples/default/tsconfig.json +10 -0
  16. package/examples/github-stars-celebration/package-lock.json +3833 -0
  17. package/examples/github-stars-celebration/package.json +24 -0
  18. package/examples/github-stars-celebration/src/global.css +1 -0
  19. package/examples/github-stars-celebration/src/project.meta +28 -0
  20. package/examples/github-stars-celebration/src/project.ts +8 -0
  21. package/examples/github-stars-celebration/src/render.ts +15 -0
  22. package/examples/github-stars-celebration/src/revideo.d.ts +1 -0
  23. package/examples/github-stars-celebration/src/scenes/example.meta +5 -0
  24. package/examples/github-stars-celebration/src/scenes/example.tsx +51 -0
  25. package/examples/github-stars-celebration/tsconfig.json +9 -0
  26. package/examples/github-stars-celebration/vite.config.ts +8 -0
  27. package/examples/google-cloud-run-parallelized/README.md +127 -0
  28. package/examples/google-cloud-run-parallelized/render-orchestrator/Dockerfile +56 -0
  29. package/examples/google-cloud-run-parallelized/render-orchestrator/package.json +22 -0
  30. package/examples/google-cloud-run-parallelized/render-orchestrator/src/index.ts +72 -0
  31. package/examples/google-cloud-run-parallelized/render-orchestrator/src/revideo.d.ts +1 -0
  32. package/examples/google-cloud-run-parallelized/render-orchestrator/tsconfig.json +10 -0
  33. package/examples/google-cloud-run-parallelized/render-worker/.gcloudignore +17 -0
  34. package/examples/google-cloud-run-parallelized/render-worker/.puppeteerrc.cjs +9 -0
  35. package/examples/google-cloud-run-parallelized/render-worker/package.json +30 -0
  36. package/examples/google-cloud-run-parallelized/render-worker/src/index.ts +45 -0
  37. package/examples/google-cloud-run-parallelized/render-worker/src/project.meta +31 -0
  38. package/examples/google-cloud-run-parallelized/render-worker/src/project.ts +6 -0
  39. package/examples/google-cloud-run-parallelized/render-worker/src/render.ts +14 -0
  40. package/examples/google-cloud-run-parallelized/render-worker/src/revideo.d.ts +1 -0
  41. package/examples/google-cloud-run-parallelized/render-worker/src/scenes/example.tsx +30 -0
  42. package/examples/google-cloud-run-parallelized/render-worker/tsconfig.json +13 -0
  43. package/examples/google-cloud-run-parallelized/render-worker/vite.config.ts +9 -0
  44. package/examples/logo.svg +6 -0
  45. package/examples/logo_dark.svg +6 -0
  46. package/examples/marketing-templates/README.md +10 -0
  47. package/examples/marketing-templates/marketing-template/package.json +24 -0
  48. package/examples/marketing-templates/marketing-template/src/globals.css +0 -0
  49. package/examples/marketing-templates/marketing-template/src/project.meta +28 -0
  50. package/examples/marketing-templates/marketing-template/src/project.ts +9 -0
  51. package/examples/marketing-templates/marketing-template/src/render.ts +15 -0
  52. package/examples/marketing-templates/marketing-template/src/revideo.d.ts +1 -0
  53. package/examples/marketing-templates/marketing-template/src/scenes/example.meta +5 -0
  54. package/examples/marketing-templates/marketing-template/src/scenes/example.tsx +67 -0
  55. package/examples/marketing-templates/marketing-template/tsconfig.json +9 -0
  56. package/examples/marketing-templates/marketing-template/vite.config.ts +9 -0
  57. package/examples/marketing-templates/multiple-videos-in-one/package.json +24 -0
  58. package/examples/marketing-templates/multiple-videos-in-one/src/project.meta +28 -0
  59. package/examples/marketing-templates/multiple-videos-in-one/src/project.ts +9 -0
  60. package/examples/marketing-templates/multiple-videos-in-one/src/render.ts +15 -0
  61. package/examples/marketing-templates/multiple-videos-in-one/src/revideo.d.ts +1 -0
  62. package/examples/marketing-templates/multiple-videos-in-one/src/scenes/example.meta +5 -0
  63. package/examples/marketing-templates/multiple-videos-in-one/src/scenes/example.tsx +122 -0
  64. package/examples/marketing-templates/multiple-videos-in-one/tsconfig.json +9 -0
  65. package/examples/marketing-templates/multiple-videos-in-one/vite.config.ts +9 -0
  66. package/examples/minimal-drag-drop/README.md +29 -0
  67. package/examples/minimal-drag-drop/next/app/api/render/route.ts +22 -0
  68. package/examples/minimal-drag-drop/next/app/globals.css +3 -0
  69. package/examples/minimal-drag-drop/next/app/layout.tsx +25 -0
  70. package/examples/minimal-drag-drop/next/app/page.tsx +277 -0
  71. package/examples/minimal-drag-drop/next/next-env.d.ts +5 -0
  72. package/examples/minimal-drag-drop/next/next.config.mjs +4 -0
  73. package/examples/minimal-drag-drop/next/package-lock.json +5577 -0
  74. package/examples/minimal-drag-drop/next/package.json +35 -0
  75. package/examples/minimal-drag-drop/next/postcss.config.js +6 -0
  76. package/examples/minimal-drag-drop/next/public/favicon.ico +0 -0
  77. package/examples/minimal-drag-drop/next/public/next.svg +1 -0
  78. package/examples/minimal-drag-drop/next/public/vercel.svg +1 -0
  79. package/examples/minimal-drag-drop/next/tailwind.config.ts +30 -0
  80. package/examples/minimal-drag-drop/next/tsconfig.json +26 -0
  81. package/examples/minimal-drag-drop/next/utils/parse.ts +35 -0
  82. package/examples/minimal-drag-drop/revideo/package-lock.json +3771 -0
  83. package/examples/minimal-drag-drop/revideo/package.json +24 -0
  84. package/examples/minimal-drag-drop/revideo/src/global.css +1 -0
  85. package/examples/minimal-drag-drop/revideo/src/project.meta +28 -0
  86. package/examples/minimal-drag-drop/revideo/src/project.ts +9 -0
  87. package/examples/minimal-drag-drop/revideo/src/render.ts +15 -0
  88. package/examples/minimal-drag-drop/revideo/src/revideo.d.ts +1 -0
  89. package/examples/minimal-drag-drop/revideo/src/scenes/example.meta +5 -0
  90. package/examples/minimal-drag-drop/revideo/src/scenes/example.tsx +44 -0
  91. package/examples/minimal-drag-drop/revideo/tsconfig.json +9 -0
  92. package/examples/minimal-drag-drop/revideo/vite.config.ts +6 -0
  93. package/examples/parallelized-aws-lambda/.dockerignore +3 -0
  94. package/examples/parallelized-aws-lambda/Dockerfile +21 -0
  95. package/examples/parallelized-aws-lambda/Dockerfile.base +64 -0
  96. package/examples/parallelized-aws-lambda/README.md +197 -0
  97. package/examples/parallelized-aws-lambda/revideo-project/.puppeteerrc.cjs +9 -0
  98. package/examples/parallelized-aws-lambda/revideo-project/package-lock.json +4133 -0
  99. package/examples/parallelized-aws-lambda/revideo-project/package.json +28 -0
  100. package/examples/parallelized-aws-lambda/revideo-project/src/lambda.ts +157 -0
  101. package/examples/parallelized-aws-lambda/revideo-project/src/project.meta +28 -0
  102. package/examples/parallelized-aws-lambda/revideo-project/src/project.ts +7 -0
  103. package/examples/parallelized-aws-lambda/revideo-project/src/render.ts +17 -0
  104. package/examples/parallelized-aws-lambda/revideo-project/src/revideo.d.ts +1 -0
  105. package/examples/parallelized-aws-lambda/revideo-project/src/scenes/example.meta +5 -0
  106. package/examples/parallelized-aws-lambda/revideo-project/src/scenes/example.tsx +30 -0
  107. package/examples/parallelized-aws-lambda/revideo-project/tsconfig.json +10 -0
  108. package/examples/parallelized-aws-lambda/revideo-project/vite.config.ts +9 -0
  109. package/examples/reddit-post-video/README.md +84 -0
  110. package/examples/reddit-post-video/package-lock.json +2941 -0
  111. package/examples/reddit-post-video/package.json +27 -0
  112. package/examples/reddit-post-video/src/global.css +1 -0
  113. package/examples/reddit-post-video/src/metadata.json +576 -0
  114. package/examples/reddit-post-video/src/project.meta +31 -0
  115. package/examples/reddit-post-video/src/project.ts +9 -0
  116. package/examples/reddit-post-video/src/render.ts +157 -0
  117. package/examples/reddit-post-video/src/revideo.d.ts +1 -0
  118. package/examples/reddit-post-video/src/scenes/example.meta +5 -0
  119. package/examples/reddit-post-video/src/scenes/example.tsx +74 -0
  120. package/examples/reddit-post-video/tsconfig.json +9 -0
  121. package/examples/reddit-post-video/vite.config.ts +6 -0
  122. package/examples/rive-explanation-video/README.md +9 -0
  123. package/examples/rive-explanation-video/package.json +25 -0
  124. package/examples/rive-explanation-video/src/global.css +1 -0
  125. package/examples/rive-explanation-video/src/project.meta +31 -0
  126. package/examples/rive-explanation-video/src/project.ts +8 -0
  127. package/examples/rive-explanation-video/src/render.ts +15 -0
  128. package/examples/rive-explanation-video/src/revideo.d.ts +1 -0
  129. package/examples/rive-explanation-video/src/scenes/example.meta +5 -0
  130. package/examples/rive-explanation-video/src/scenes/example.tsx +218 -0
  131. package/examples/rive-explanation-video/tsconfig.json +9 -0
  132. package/examples/rive-explanation-video/vite.config.ts +8 -0
  133. package/examples/saas-template/.prettierrc +9 -0
  134. package/examples/saas-template/README.md +26 -0
  135. package/examples/saas-template/app/actions.tsx +114 -0
  136. package/examples/saas-template/app/api/render/route.ts +23 -0
  137. package/examples/saas-template/app/globals.css +3 -0
  138. package/examples/saas-template/app/layout.tsx +25 -0
  139. package/examples/saas-template/app/page.tsx +204 -0
  140. package/examples/saas-template/next.config.mjs +4 -0
  141. package/examples/saas-template/package.json +40 -0
  142. package/examples/saas-template/postcss.config.js +6 -0
  143. package/examples/saas-template/revideo/global.css +1 -0
  144. package/examples/saas-template/revideo/project.ts +9 -0
  145. package/examples/saas-template/revideo/scene.tsx +179 -0
  146. package/examples/saas-template/tailwind.config.ts +30 -0
  147. package/examples/saas-template/tsconfig.json +27 -0
  148. package/examples/saas-template/utils/parse.ts +35 -0
  149. package/examples/stitching-videos/README.md +7 -0
  150. package/examples/stitching-videos/package.json +23 -0
  151. package/examples/stitching-videos/src/project.meta +28 -0
  152. package/examples/stitching-videos/src/project.ts +20 -0
  153. package/examples/stitching-videos/src/render.ts +27 -0
  154. package/examples/stitching-videos/src/revideo.d.ts +1 -0
  155. package/examples/stitching-videos/src/scenes/example.tsx +30 -0
  156. package/examples/stitching-videos/tsconfig.json +9 -0
  157. package/examples/stitching-videos/vite.config.ts +8 -0
  158. package/examples/three-js-example/README.md +8 -0
  159. package/examples/three-js-example/package-lock.json +2753 -0
  160. package/examples/three-js-example/package.json +25 -0
  161. package/examples/three-js-example/src/components/Three.ts +166 -0
  162. package/examples/three-js-example/src/global.css +1 -0
  163. package/examples/three-js-example/src/project.meta +31 -0
  164. package/examples/three-js-example/src/project.ts +8 -0
  165. package/examples/three-js-example/src/render.ts +15 -0
  166. package/examples/three-js-example/src/revideo.d.ts +1 -0
  167. package/examples/three-js-example/src/scenes/basic3D.meta +5 -0
  168. package/examples/three-js-example/src/scenes/basic3D.tsx +89 -0
  169. package/examples/three-js-example/tsconfig.json +9 -0
  170. package/examples/three-js-example/vite.config.ts +6 -0
  171. package/examples/youtube-shorts/README.md +65 -0
  172. package/examples/youtube-shorts/package-lock.json +3881 -0
  173. package/examples/youtube-shorts/package.json +30 -0
  174. package/examples/youtube-shorts/src/get-assets.ts +34 -0
  175. package/examples/youtube-shorts/src/global.css +3 -0
  176. package/examples/youtube-shorts/src/metadata.json +635 -0
  177. package/examples/youtube-shorts/src/project.meta +28 -0
  178. package/examples/youtube-shorts/src/project.ts +9 -0
  179. package/examples/youtube-shorts/src/render.ts +12 -0
  180. package/examples/youtube-shorts/src/revideo.d.ts +1 -0
  181. package/examples/youtube-shorts/src/scenes/example.tsx +224 -0
  182. package/examples/youtube-shorts/src/utils.ts +123 -0
  183. package/examples/youtube-shorts/tsconfig.json +9 -0
  184. package/examples/youtube-shorts/vite.config.ts +8 -0
  185. package/package.json +9 -9
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "my-revideo-project",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "scripts": {
6
+ "start": "vite",
7
+ "serve": "vite",
8
+ "build": "tsc && vite build",
9
+ "render": "tsc && node dist/render.js"
10
+ },
11
+ "dependencies": {
12
+ "@deepgram/sdk": "^3.2.0",
13
+ "@revideo/2d": "0.5.10",
14
+ "@revideo/core": "0.5.10",
15
+ "@revideo/ffmpeg": "0.5.10",
16
+ "@revideo/renderer": "0.5.10",
17
+ "@revideo/vite-plugin": "0.5.10",
18
+ "axios": "^1.6.8",
19
+ "yargs": "^17.7.2"
20
+ },
21
+ "devDependencies": {
22
+ "@revideo/ui": "0.5.10",
23
+ "@types/yargs": "^17.0.32",
24
+ "typescript": "5.5.4",
25
+ "vite": "^4.5"
26
+ }
27
+ }
@@ -0,0 +1 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@@ -0,0 +1,576 @@
1
+ {
2
+ "audioFile": "/audio.wav",
3
+ "text": [
4
+ {
5
+ "punctuated_word": "How",
6
+ "start": 0.08,
7
+ "end": 0.24
8
+ },
9
+ {
10
+ "punctuated_word": "do",
11
+ "start": 0.24,
12
+ "end": 0.39999998
13
+ },
14
+ {
15
+ "punctuated_word": "I",
16
+ "start": 0.39999998,
17
+ "end": 0.48
18
+ },
19
+ {
20
+ "punctuated_word": "leave",
21
+ "start": 0.48,
22
+ "end": 0.71999997
23
+ },
24
+ {
25
+ "punctuated_word": "a",
26
+ "start": 0.71999997,
27
+ "end": 0.88
28
+ },
29
+ {
30
+ "punctuated_word": "job",
31
+ "start": 0.88,
32
+ "end": 1.12
33
+ },
34
+ {
35
+ "punctuated_word": "I",
36
+ "start": 1.12,
37
+ "end": 1.28
38
+ },
39
+ {
40
+ "punctuated_word": "hate,",
41
+ "start": 1.28,
42
+ "end": 1.52
43
+ },
44
+ {
45
+ "punctuated_word": "but",
46
+ "start": 1.52,
47
+ "end": 1.68
48
+ },
49
+ {
50
+ "punctuated_word": "it's",
51
+ "start": 1.68,
52
+ "end": 1.92
53
+ },
54
+ {
55
+ "punctuated_word": "comfortable?",
56
+ "start": 1.92,
57
+ "end": 2.42
58
+ },
59
+ {
60
+ "punctuated_word": "Pay",
61
+ "start": 2.96,
62
+ "end": 3.1999998
63
+ },
64
+ {
65
+ "punctuated_word": "and",
66
+ "start": 3.1999998,
67
+ "end": 3.4399998
68
+ },
69
+ {
70
+ "punctuated_word": "benefits",
71
+ "start": 3.4399998,
72
+ "end": 3.9199998
73
+ },
74
+ {
75
+ "punctuated_word": "are",
76
+ "start": 3.9199998,
77
+ "end": 4.08
78
+ },
79
+ {
80
+ "punctuated_word": "making",
81
+ "start": 4.08,
82
+ "end": 4.3199997
83
+ },
84
+ {
85
+ "punctuated_word": "me",
86
+ "start": 4.3199997,
87
+ "end": 4.64
88
+ },
89
+ {
90
+ "punctuated_word": "stay,",
91
+ "start": 4.64,
92
+ "end": 5.14
93
+ },
94
+ {
95
+ "punctuated_word": "but",
96
+ "start": 5.2799997,
97
+ "end": 5.6
98
+ },
99
+ {
100
+ "punctuated_word": "I",
101
+ "start": 5.6,
102
+ "end": 5.7599998
103
+ },
104
+ {
105
+ "punctuated_word": "hate",
106
+ "start": 5.7599998,
107
+ "end": 6.16
108
+ },
109
+ {
110
+ "punctuated_word": "job",
111
+ "start": 6.16,
112
+ "end": 6.48
113
+ },
114
+ {
115
+ "punctuated_word": "itself.",
116
+ "start": 6.48,
117
+ "end": 6.98
118
+ },
119
+ {
120
+ "punctuated_word": "I've",
121
+ "start": 7.495,
122
+ "end": 7.7349997
123
+ },
124
+ {
125
+ "punctuated_word": "been",
126
+ "start": 7.7349997,
127
+ "end": 7.8149996
128
+ },
129
+ {
130
+ "punctuated_word": "working",
131
+ "start": 7.8149996,
132
+ "end": 8.135
133
+ },
134
+ {
135
+ "punctuated_word": "for",
136
+ "start": 8.135,
137
+ "end": 8.295
138
+ },
139
+ {
140
+ "punctuated_word": "this",
141
+ "start": 8.295,
142
+ "end": 8.455
143
+ },
144
+ {
145
+ "punctuated_word": "company",
146
+ "start": 8.455,
147
+ "end": 8.855
148
+ },
149
+ {
150
+ "punctuated_word": "for",
151
+ "start": 8.855,
152
+ "end": 9.094999
153
+ },
154
+ {
155
+ "punctuated_word": "about",
156
+ "start": 9.094999,
157
+ "end": 9.335
158
+ },
159
+ {
160
+ "punctuated_word": "2",
161
+ "start": 9.335,
162
+ "end": 9.575
163
+ },
164
+ {
165
+ "punctuated_word": "years",
166
+ "start": 9.575,
167
+ "end": 9.815
168
+ },
169
+ {
170
+ "punctuated_word": "now.",
171
+ "start": 9.815,
172
+ "end": 10.295
173
+ },
174
+ {
175
+ "punctuated_word": "It's",
176
+ "start": 10.295,
177
+ "end": 10.535
178
+ },
179
+ {
180
+ "punctuated_word": "a",
181
+ "start": 10.535,
182
+ "end": 10.775
183
+ },
184
+ {
185
+ "punctuated_word": "customer",
186
+ "start": 10.775,
187
+ "end": 11.254999
188
+ },
189
+ {
190
+ "punctuated_word": "facing",
191
+ "start": 11.254999,
192
+ "end": 11.575
193
+ },
194
+ {
195
+ "punctuated_word": "role.",
196
+ "start": 11.575,
197
+ "end": 12.075
198
+ },
199
+ {
200
+ "punctuated_word": "I",
201
+ "start": 12.215,
202
+ "end": 12.455
203
+ },
204
+ {
205
+ "punctuated_word": "used",
206
+ "start": 12.455,
207
+ "end": 12.615
208
+ },
209
+ {
210
+ "punctuated_word": "to",
211
+ "start": 12.615,
212
+ "end": 12.695
213
+ },
214
+ {
215
+ "punctuated_word": "love",
216
+ "start": 12.695,
217
+ "end": 12.934999
218
+ },
219
+ {
220
+ "punctuated_word": "it.",
221
+ "start": 12.934999,
222
+ "end": 13.414999
223
+ },
224
+ {
225
+ "punctuated_word": "At",
226
+ "start": 13.414999,
227
+ "end": 13.655
228
+ },
229
+ {
230
+ "punctuated_word": "first,",
231
+ "start": 13.655,
232
+ "end": 13.8949995
233
+ },
234
+ {
235
+ "punctuated_word": "it",
236
+ "start": 13.8949995,
237
+ "end": 13.975
238
+ },
239
+ {
240
+ "punctuated_word": "was",
241
+ "start": 13.975,
242
+ "end": 14.215
243
+ },
244
+ {
245
+ "punctuated_word": "really",
246
+ "start": 14.215,
247
+ "end": 14.535
248
+ },
249
+ {
250
+ "punctuated_word": "exciting,",
251
+ "start": 14.535,
252
+ "end": 15.035
253
+ },
254
+ {
255
+ "punctuated_word": "but",
256
+ "start": 15.34,
257
+ "end": 15.5
258
+ },
259
+ {
260
+ "punctuated_word": "now",
261
+ "start": 15.5,
262
+ "end": 15.66
263
+ },
264
+ {
265
+ "punctuated_word": "I",
266
+ "start": 15.66,
267
+ "end": 15.900001
268
+ },
269
+ {
270
+ "punctuated_word": "genuinely",
271
+ "start": 15.900001,
272
+ "end": 16.400002
273
+ },
274
+ {
275
+ "punctuated_word": "hate",
276
+ "start": 16.54,
277
+ "end": 16.7
278
+ },
279
+ {
280
+ "punctuated_word": "it.",
281
+ "start": 16.7,
282
+ "end": 17.2
283
+ },
284
+ {
285
+ "punctuated_word": "The",
286
+ "start": 17.26,
287
+ "end": 17.5
288
+ },
289
+ {
290
+ "punctuated_word": "stress",
291
+ "start": 17.5,
292
+ "end": 17.82
293
+ },
294
+ {
295
+ "punctuated_word": "I",
296
+ "start": 17.82,
297
+ "end": 17.98
298
+ },
299
+ {
300
+ "punctuated_word": "get",
301
+ "start": 17.98,
302
+ "end": 18.220001
303
+ },
304
+ {
305
+ "punctuated_word": "from",
306
+ "start": 18.220001,
307
+ "end": 18.380001
308
+ },
309
+ {
310
+ "punctuated_word": "it,",
311
+ "start": 18.380001,
312
+ "end": 18.62
313
+ },
314
+ {
315
+ "punctuated_word": "it's",
316
+ "start": 18.62,
317
+ "end": 18.94
318
+ },
319
+ {
320
+ "punctuated_word": "crazy.",
321
+ "start": 18.94,
322
+ "end": 19.44
323
+ },
324
+ {
325
+ "punctuated_word": "Even",
326
+ "start": 19.82,
327
+ "end": 20.06
328
+ },
329
+ {
330
+ "punctuated_word": "when",
331
+ "start": 20.06,
332
+ "end": 20.3
333
+ },
334
+ {
335
+ "punctuated_word": "I",
336
+ "start": 20.3,
337
+ "end": 20.380001
338
+ },
339
+ {
340
+ "punctuated_word": "take",
341
+ "start": 20.380001,
342
+ "end": 20.619999
343
+ },
344
+ {
345
+ "punctuated_word": "my",
346
+ "start": 20.619999,
347
+ "end": 20.86
348
+ },
349
+ {
350
+ "punctuated_word": "ADHD",
351
+ "start": 20.86,
352
+ "end": 21.36
353
+ },
354
+ {
355
+ "punctuated_word": "medication,",
356
+ "start": 21.5,
357
+ "end": 22
358
+ },
359
+ {
360
+ "punctuated_word": "I",
361
+ "start": 22.06,
362
+ "end": 22.14
363
+ },
364
+ {
365
+ "punctuated_word": "can",
366
+ "start": 22.14,
367
+ "end": 22.380001
368
+ },
369
+ {
370
+ "punctuated_word": "barely",
371
+ "start": 22.380001,
372
+ "end": 22.78
373
+ },
374
+ {
375
+ "punctuated_word": "tolerate",
376
+ "start": 22.78,
377
+ "end": 23.18
378
+ },
379
+ {
380
+ "punctuated_word": "it.",
381
+ "start": 23.18,
382
+ "end": 23.655
383
+ },
384
+ {
385
+ "punctuated_word": "I'm",
386
+ "start": 23.815,
387
+ "end": 24.055
388
+ },
389
+ {
390
+ "punctuated_word": "25",
391
+ "start": 24.055,
392
+ "end": 24.535
393
+ },
394
+ {
395
+ "punctuated_word": "years",
396
+ "start": 24.535,
397
+ "end": 24.775002
398
+ },
399
+ {
400
+ "punctuated_word": "old.",
401
+ "start": 24.775002,
402
+ "end": 25.255001
403
+ },
404
+ {
405
+ "punctuated_word": "I've",
406
+ "start": 25.255001,
407
+ "end": 25.495
408
+ },
409
+ {
410
+ "punctuated_word": "completed",
411
+ "start": 25.495,
412
+ "end": 25.895
413
+ },
414
+ {
415
+ "punctuated_word": "my",
416
+ "start": 25.895,
417
+ "end": 26.135
418
+ },
419
+ {
420
+ "punctuated_word": "degree",
421
+ "start": 26.135,
422
+ "end": 26.455
423
+ },
424
+ {
425
+ "punctuated_word": "less",
426
+ "start": 26.455,
427
+ "end": 26.695
428
+ },
429
+ {
430
+ "punctuated_word": "than",
431
+ "start": 26.695,
432
+ "end": 26.855
433
+ },
434
+ {
435
+ "punctuated_word": "a",
436
+ "start": 26.855,
437
+ "end": 26.935001
438
+ },
439
+ {
440
+ "punctuated_word": "year",
441
+ "start": 26.935001,
442
+ "end": 27.175001
443
+ },
444
+ {
445
+ "punctuated_word": "ago,",
446
+ "start": 27.175001,
447
+ "end": 27.675001
448
+ },
449
+ {
450
+ "punctuated_word": "and",
451
+ "start": 27.735,
452
+ "end": 27.975
453
+ },
454
+ {
455
+ "punctuated_word": "I",
456
+ "start": 27.975,
457
+ "end": 28.055
458
+ },
459
+ {
460
+ "punctuated_word": "often",
461
+ "start": 28.055,
462
+ "end": 28.375
463
+ },
464
+ {
465
+ "punctuated_word": "think",
466
+ "start": 28.375,
467
+ "end": 28.535
468
+ },
469
+ {
470
+ "punctuated_word": "about",
471
+ "start": 28.535,
472
+ "end": 28.855
473
+ },
474
+ {
475
+ "punctuated_word": "leaving,",
476
+ "start": 28.855,
477
+ "end": 29.355
478
+ },
479
+ {
480
+ "punctuated_word": "but",
481
+ "start": 29.47925,
482
+ "end": 29.71925
483
+ },
484
+ {
485
+ "punctuated_word": "the",
486
+ "start": 29.71925,
487
+ "end": 29.95925
488
+ },
489
+ {
490
+ "punctuated_word": "pay",
491
+ "start": 29.95925,
492
+ "end": 30.19925
493
+ },
494
+ {
495
+ "punctuated_word": "and",
496
+ "start": 30.19925,
497
+ "end": 30.439249
498
+ },
499
+ {
500
+ "punctuated_word": "benefits",
501
+ "start": 30.439249,
502
+ "end": 30.83925
503
+ },
504
+ {
505
+ "punctuated_word": "at",
506
+ "start": 30.83925,
507
+ "end": 30.99925
508
+ },
509
+ {
510
+ "punctuated_word": "my",
511
+ "start": 30.99925,
512
+ "end": 31.23925
513
+ },
514
+ {
515
+ "punctuated_word": "current",
516
+ "start": 31.23925,
517
+ "end": 31.55925
518
+ },
519
+ {
520
+ "punctuated_word": "job",
521
+ "start": 31.55925,
522
+ "end": 32.05925
523
+ },
524
+ {
525
+ "punctuated_word": "make",
526
+ "start": 32.11925,
527
+ "end": 32.27925
528
+ },
529
+ {
530
+ "punctuated_word": "it",
531
+ "start": 32.27925,
532
+ "end": 32.51925
533
+ },
534
+ {
535
+ "punctuated_word": "really",
536
+ "start": 32.51925,
537
+ "end": 32.75925
538
+ },
539
+ {
540
+ "punctuated_word": "hard",
541
+ "start": 32.75925,
542
+ "end": 32.99925
543
+ },
544
+ {
545
+ "punctuated_word": "for",
546
+ "start": 32.99925,
547
+ "end": 33.15925
548
+ },
549
+ {
550
+ "punctuated_word": "me",
551
+ "start": 33.15925,
552
+ "end": 33.31925
553
+ },
554
+ {
555
+ "punctuated_word": "to",
556
+ "start": 33.31925,
557
+ "end": 33.479248
558
+ },
559
+ {
560
+ "punctuated_word": "leave.",
561
+ "start": 33.479248,
562
+ "end": 33.979248
563
+ },
564
+ {
565
+ "punctuated_word": "Any",
566
+ "start": 34.11925,
567
+ "end": 34.43925
568
+ },
569
+ {
570
+ "punctuated_word": "suggestions?",
571
+ "start": 34.43925,
572
+ "end": 34.93925
573
+ }
574
+ ],
575
+ "textColor": "red"
576
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "version": 0,
3
+ "shared": {
4
+ "background": null,
5
+ "range": [
6
+ 0,
7
+ null
8
+ ],
9
+ "size": {
10
+ "x": 1080,
11
+ "y": 1920
12
+ },
13
+ "audioOffset": 0
14
+ },
15
+ "preview": {
16
+ "fps": 30,
17
+ "resolutionScale": 1
18
+ },
19
+ "rendering": {
20
+ "fps": 30,
21
+ "resolutionScale": 1,
22
+ "colorSpace": "srgb",
23
+ "exporter": {
24
+ "name": "@revideo/core/wasm",
25
+ "options": {
26
+ "fastStart": true,
27
+ "includeAudio": true
28
+ }
29
+ }
30
+ }
31
+ }
@@ -0,0 +1,9 @@
1
+ import { makeProject } from "@revideo/core";
2
+ import example from "./scenes/example?scene";
3
+ import metadata from "./metadata.json";
4
+ import "./global.css";
5
+
6
+ export default makeProject({
7
+ scenes: [example],
8
+ variables: { data: metadata },
9
+ });