remotion 3.2.15 → 3.2.20
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/.turbo/turbo-build.log +5 -5
- package/README.md +28 -18
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
1
|
+
[35mremotion:build: [0mcache hit, replaying output [2m6bde494b4791357c[0m
|
|
2
|
+
[35mremotion:build: [0m
|
|
3
|
+
[35mremotion:build: [0m> remotion@3.2.18 build /Users/jonathanburger/remotion/packages/core
|
|
4
|
+
[35mremotion:build: [0m> tsc -d
|
|
5
|
+
[35mremotion:build: [0m
|
package/README.md
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://github.com/remotion-dev/logo">
|
|
3
|
-
<
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/remotion-dev/logo/raw/main/animated-logo-banner-dark.gif">
|
|
5
|
+
<img alt="Animated Remotion Logo" src="https://github.com/remotion-dev/logo/raw/main/animated-logo-banner-light.gif">
|
|
6
|
+
</picture>
|
|
4
7
|
</a>
|
|
5
8
|
</p>
|
|
6
9
|
|
|
7
10
|
[](https://remotion.dev/discord)
|
|
8
|
-
[](https://www.npmjs.org/package/remotion)
|
|
9
12
|
[](https://npmcharts.com/compare/remotion?minimal=true)
|
|
10
13
|
[](https://packagephobia.now.sh/result?p=remotion)
|
|
14
|
+
<a href="https://twitter.com/remotion_dev"><img src="https://img.shields.io/twitter/follow/remotion_dev?label=Twitter&style=social" alt="Twitter"></a>
|
|
11
15
|
|
|
12
|
-
Remotion is a
|
|
16
|
+
Remotion is a framework for **creating videos programmatically using React.**
|
|
13
17
|
|
|
14
18
|
## Why create videos in React?
|
|
15
19
|
|
|
@@ -17,22 +21,27 @@ Remotion is a suite of libraries building a foundation for **creating videos pro
|
|
|
17
21
|
- **Leverage programming**: Use variables, functions, APIs, math and algorithms to create new effects
|
|
18
22
|
- **Leverage React**: Reusable components, Powerful composition, Fast Refresh, Package ecosystem
|
|
19
23
|
|
|
20
|
-
##
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
## Created with Remotion
|
|
25
|
+
|
|
26
|
+
<table>
|
|
27
|
+
<tr>
|
|
28
|
+
<td align="center">
|
|
29
|
+
<img style="width: 290px" src="packages/docs/static/img/fireship-quick.gif" />
|
|
30
|
+
<p>"This video was made with code" <em>- Fireship</em> <a href="https://youtu.be/deg8bOoziaE">Watch</a> • <a href="https://github.com/wcandillon/remotion-fireship">Source</a></p>
|
|
31
|
+
</td>
|
|
32
|
+
<td align="center">
|
|
33
|
+
<img style="width: 240px" src="packages/docs/static/img/github-unwrapped.gif" />
|
|
34
|
+
<p>GitHub Unwrapped - Personalized year in Review <a href="https://githubunwrapped.com">Try</a> • <a href="https://github.com/remotion-dev/github-unwrapped">Source</a></p>
|
|
35
|
+
</td>
|
|
36
|
+
<td align="center">
|
|
37
|
+
<em>View more in the <a href="https://remotion.dev/showcase">Remotion Showcase</a>!</em>
|
|
38
|
+
</td>
|
|
39
|
+
</tr>
|
|
40
|
+
</table>
|
|
32
41
|
|
|
33
42
|
## Get started
|
|
34
43
|
|
|
35
|
-
If you already have Node.JS
|
|
44
|
+
If you already have Node.JS installed, type
|
|
36
45
|
|
|
37
46
|
```console
|
|
38
47
|
npm init video
|
|
@@ -42,11 +51,12 @@ to get started. Otherwise, read the [installation page](https://www.remotion.dev
|
|
|
42
51
|
|
|
43
52
|
## Documentation
|
|
44
53
|
|
|
45
|
-
|
|
54
|
+
Documentation: [**remotion.dev/docs**](https://www.remotion.dev/docs)
|
|
55
|
+
API Reference: [**remotion.dev/api**](https://www.remotion.dev/api)
|
|
46
56
|
|
|
47
57
|
## License
|
|
48
58
|
|
|
49
|
-
Be aware of that Remotion has a special license and requires obtaining a company license in some cases. Read the [LICENSE](LICENSE.md)
|
|
59
|
+
Be aware of that Remotion has a special license and requires obtaining a company license in some cases. Read the [LICENSE](LICENSE.md) page for more information.
|
|
50
60
|
|
|
51
61
|
## Contributing
|
|
52
62
|
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "3.2.
|
|
1
|
+
export declare const VERSION = "3.2.20";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "remotion",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.20",
|
|
4
4
|
"description": "Render videos in React",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "640f36c0c2d9fb1b7768925bf9d64840cbc31bc6"
|
|
58
58
|
}
|