@revideo/create 0.4.3-alpha.1001 → 0.4.3

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 (39) hide show
  1. package/examples/README.md +5 -2
  2. package/examples/default/package.json +7 -7
  3. package/examples/github-stars-celebration/package-lock.json +3833 -0
  4. package/examples/github-stars-celebration/package.json +24 -0
  5. package/examples/github-stars-celebration/src/global.css +1 -0
  6. package/examples/github-stars-celebration/src/project.meta +31 -0
  7. package/examples/github-stars-celebration/src/project.ts +8 -0
  8. package/examples/github-stars-celebration/src/render.ts +15 -0
  9. package/examples/github-stars-celebration/src/revideo.d.ts +1 -0
  10. package/examples/github-stars-celebration/src/scenes/example.meta +5 -0
  11. package/examples/github-stars-celebration/src/scenes/example.tsx +51 -0
  12. package/examples/github-stars-celebration/tsconfig.json +9 -0
  13. package/examples/github-stars-celebration/vite.config.ts +8 -0
  14. package/examples/google-cloud-run-parallelized/render-orchestrator/Dockerfile +1 -1
  15. package/examples/google-cloud-run-parallelized/render-orchestrator/package.json +3 -3
  16. package/examples/google-cloud-run-parallelized/render-worker/package.json +8 -8
  17. package/examples/google-cloud-run-parallelized/render-worker/src/index.ts +7 -1
  18. package/examples/google-cloud-run-parallelized/render-worker/src/project.meta +31 -0
  19. package/examples/google-cloud-run-parallelized/render-worker/src/project.ts +1 -1
  20. package/examples/google-cloud-run-parallelized/render-worker/src/render.ts +14 -0
  21. package/examples/parallelized-aws-lambda/.dockerignore +2 -0
  22. package/examples/parallelized-aws-lambda/Dockerfile +21 -0
  23. package/examples/parallelized-aws-lambda/Dockerfile.base +64 -0
  24. package/examples/parallelized-aws-lambda/README.md +197 -0
  25. package/examples/parallelized-aws-lambda/revideo-project/.puppeteerrc.cjs +9 -0
  26. package/examples/parallelized-aws-lambda/revideo-project/package-lock.json +4133 -0
  27. package/examples/parallelized-aws-lambda/revideo-project/package.json +31 -0
  28. package/examples/parallelized-aws-lambda/revideo-project/src/lambda.ts +144 -0
  29. package/examples/parallelized-aws-lambda/revideo-project/src/project.meta +31 -0
  30. package/examples/parallelized-aws-lambda/revideo-project/src/project.ts +7 -0
  31. package/examples/parallelized-aws-lambda/revideo-project/src/render.ts +16 -0
  32. package/examples/parallelized-aws-lambda/revideo-project/src/revideo.d.ts +1 -0
  33. package/examples/parallelized-aws-lambda/revideo-project/src/scenes/example.meta +5 -0
  34. package/examples/parallelized-aws-lambda/revideo-project/src/scenes/example.tsx +29 -0
  35. package/examples/parallelized-aws-lambda/revideo-project/tsconfig.json +10 -0
  36. package/examples/parallelized-aws-lambda/revideo-project/vite.config.ts +9 -0
  37. package/examples/saas-template/next/package.json +1 -1
  38. package/examples/saas-template/revideo/package.json +7 -7
  39. package/package.json +9 -9
@@ -23,7 +23,7 @@ Below you can find a list of Revideo projects along with a quick summary, focuse
23
23
 
24
24
  ### Animations
25
25
 
26
- - **Transparent AI avatar with background image:** This is a very simple example of a video of an AI avatar speaking with a background image. It is mainly meant to demonstrate how to use transparent videos in Revideo ([project folder](https://github.com/redotvideo/revideo-examples/tree/main/avatar-with-background))
26
+ - **Transparent AI avatar with background image:** This is a very simple example of a video of an AI avatar speaking with a background image. It is mainly meant to demonstrate how to use transparent videos in Revideo ([project folder](https://github.com/redotvideo/revideo-examples/tree/main/github-stars-celebration))
27
27
 
28
28
  - **Marketing Templates**: A template for a post on social media advertising black friday discounts. ([project folder](https://github.com/redotvideo/examples/tree/main/marketing-templates))
29
29
 
@@ -31,9 +31,12 @@ Below you can find a list of Revideo projects along with a quick summary, focuse
31
31
 
32
32
  - **Youtube shorts with animated subtitles:** This example project generates Youtube Shorts with AI. It generates scripts with ChatGPT, voiceovers with Elevenlabs, and background images with Dall-E. **This project has a heavy emphasis on animating subtitles** - ([project folder](https://github.com/redotvideo/revideo-examples/tree/main/youtube-shorts))
33
33
 
34
-
34
+ - **Animation for 1,000 Github Stars:** A fun animation celebrating 1,000 Github stars for Revideo - ([project folder](https://github.com/redotvideo/revideo-examples/tree/main/youtube-shorts))
35
35
  ### Deployment
36
36
 
37
37
  - **Revideo on Google Cloud Run:** This example project shows you how you can deploy a Revideo Project on Google Cloud Run for Rendering - ([project folder](https://github.com/redotvideo/revideo-examples/tree/main/google-cloud-run))
38
38
 
39
39
  - **Parallelized Rendering with Cloud Functions:** This example project also uses Cloud Run, but enables faster rendering by distributing the rendering work across a large number of cloud functions - ([project folder](https://github.com/redotvideo/revideo-examples/tree/main/google-cloud-run-parallelized))
40
+
41
+ - **Parallelized Rendering with AWS Lambda:** This example project shows you how you can do parallelized rendering with AWS Lambda - ([project folder](https://github.com/redotvideo/revideo-examples/tree/main/parallelized-aws-lambda))
42
+
@@ -9,15 +9,15 @@
9
9
  "render": "tsc && node dist/render.js"
10
10
  },
11
11
  "dependencies": {
12
- "@revideo/core": "^0.4.2",
13
- "@revideo/2d": "^0.4.2",
14
- "@revideo/renderer": "^0.4.2",
15
- "@revideo/vite-plugin": "^0.4.2",
16
- "@revideo/ffmpeg": "^0.4.2"
12
+ "@revideo/core": "^0.4.3",
13
+ "@revideo/2d": "^0.4.3",
14
+ "@revideo/renderer": "^0.4.3",
15
+ "@revideo/vite-plugin": "^0.4.3",
16
+ "@revideo/ffmpeg": "^0.4.3"
17
17
  },
18
18
  "devDependencies": {
19
- "@revideo/ui": "^0.4.2",
20
- "@revideo/cli": "^0.4.2",
19
+ "@revideo/ui": "^0.4.3",
20
+ "@revideo/cli": "^0.4.3",
21
21
  "typescript": "^5.2.2",
22
22
  "vite": "^4.5"
23
23
  }