@revideo/create 0.5.11-alpha.1103 → 0.5.11-beta.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.
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Revideo Minimal Starter Template
|
|
2
|
+
|
|
3
|
+
This is a minimal Revideo starter project. It can be bootstrapped using
|
|
4
|
+
`npm init @revideo@latest` and selecting the minimal template.
|
|
5
|
+
|
|
6
|
+
It includes a simple scene with a background video, music and the Revideo logo.
|
|
7
|
+
You can get started by editing the `project.tsx` file in the `src` folder.
|
|
8
|
+
|
|
9
|
+
You can run the Revideo editor using `npm start` and render the final video
|
|
10
|
+
using `npm run render`.
|
|
11
|
+
|
|
12
|
+
If you want to see what's possible with Revideo, check out the other templates
|
|
13
|
+
in the [Revideo Examples repository](https://github.com/redotvideo/examples), or
|
|
14
|
+
the [Revideo documentation](https://docs.re.video).
|
|
15
|
+
|
|
16
|
+
If you want to include your Revideo project in a website, you can use the
|
|
17
|
+
Next.js template. It can be found in the Revideo Examples repository or
|
|
18
|
+
bootstrapped using `npm init @revideo@latest` and selecting the Next.js
|
|
19
|
+
template.
|
|
@@ -5,24 +5,22 @@ project bootstrapped with `npm init @revideo@latest`.
|
|
|
5
5
|
|
|
6
6
|
## Getting Started
|
|
7
7
|
|
|
8
|
-
First, install the dependencies
|
|
8
|
+
First, install the dependencies:
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
|
|
12
|
-
(cd revideo && npm install)
|
|
11
|
+
npm install
|
|
13
12
|
```
|
|
14
13
|
|
|
15
|
-
|
|
14
|
+
This project comes with the following commands:
|
|
16
15
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
16
|
+
- `npm run dev` - Start the Next.js development server
|
|
17
|
+
- `npm run build` - Build the Next.js project
|
|
18
|
+
- `npm run start` - Start the Next.js production server
|
|
19
|
+
- `npm run revideo:serve` - Start the Revideo render api (required for the render button on the Next.js page to work)
|
|
20
|
+
- `npm run revideo:editor` - Start the Revideo editor, which you can use to inspect and preview your Revideo code
|
|
22
21
|
|
|
23
|
-
|
|
24
|
-
(cd next && npm run dev)
|
|
25
|
-
```
|
|
22
|
+
## Building with Revideo
|
|
26
23
|
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
If you want to see what's possible with Revideo, check out the other templates
|
|
25
|
+
in the [Revideo Examples repository](https://github.com/redotvideo/examples), or
|
|
26
|
+
the [Revideo documentation](https://docs.re.video).
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"build": "next build",
|
|
8
8
|
"start": "next start",
|
|
9
9
|
"lint": "next lint",
|
|
10
|
-
"revideo": "revideo serve --projectFile ./revideo/project.ts",
|
|
11
|
-
"editor": "revideo editor --projectFile ./revideo/project.ts"
|
|
10
|
+
"revideo:serve": "revideo serve --projectFile ./revideo/project.ts",
|
|
11
|
+
"revideo:editor": "revideo editor --projectFile ./revideo/project.ts"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@radix-ui/react-navigation-menu": "^1.1.4",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@revideo/cli": "^0.6.0",
|
|
29
|
+
"@revideo/ui": "^0.6.0",
|
|
29
30
|
"@types/node": "^20",
|
|
30
31
|
"@types/react": "^18",
|
|
31
32
|
"@types/react-dom": "^18",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revideo/create",
|
|
3
|
-
"version": "0.5.11-
|
|
3
|
+
"version": "0.5.11-beta.1104+8e1f5587",
|
|
4
4
|
"description": "Quickly scaffold revideo projects",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "revideo",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"url": "https://github.com/havenhq/revideo.git"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@revideo/2d": "^0.5.11-
|
|
24
|
-
"@revideo/core": "^0.5.11-
|
|
25
|
-
"@revideo/ffmpeg": "^0.5.11-
|
|
26
|
-
"@revideo/renderer": "^0.5.11-
|
|
27
|
-
"@revideo/ui": "^0.5.11-
|
|
28
|
-
"@revideo/vite-plugin": "^0.5.11-
|
|
23
|
+
"@revideo/2d": "^0.5.11-beta.1104+8e1f5587",
|
|
24
|
+
"@revideo/core": "^0.5.11-beta.1104+8e1f5587",
|
|
25
|
+
"@revideo/ffmpeg": "^0.5.11-beta.1104+8e1f5587",
|
|
26
|
+
"@revideo/renderer": "^0.5.11-beta.1104+8e1f5587",
|
|
27
|
+
"@revideo/ui": "^0.5.11-beta.1104+8e1f5587",
|
|
28
|
+
"@revideo/vite-plugin": "^0.5.11-beta.1104+8e1f5587"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@revideo/telemetry": "^0.5.11-
|
|
31
|
+
"@revideo/telemetry": "^0.5.11-beta.1104+8e1f5587",
|
|
32
32
|
"minimist": "^1.2.8",
|
|
33
33
|
"prompts": "^2.4.2"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "8e1f5587d7e3e57468fa752aca14fe1238944380"
|
|
36
36
|
}
|