remotion 3.2.30 → 3.2.31

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.
@@ -1,5 +1,5 @@
1
- remotion:build: cache hit, replaying output 83c88625259441f7
2
- remotion:build: 
3
- remotion:build: > remotion@3.2.29 build /Users/jonathanburger/remotion/packages/core
4
- remotion:build: > tsc -d
5
- remotion:build: 
1
+ remotion:build: cache hit, replaying output 688a3f5cb0017c0d
2
+ remotion:build: 
3
+ remotion:build: > remotion@3.2.30 build /Users/jonathanburger/remotion/packages/core
4
+ remotion:build: > tsc -d
5
+ remotion:build: 
package/README.md CHANGED
@@ -13,6 +13,12 @@
13
13
  [![Install Size](https://packagephobia.now.sh/badge?p=remotion)](https://packagephobia.now.sh/result?p=remotion)
14
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>
15
15
 
16
+ <p style="color: orange">
17
+ <a href="https://remotion.dev/hacktoberfest"><strong style="color: orange">
18
+ 🎃 Hack on Remotion and earn bounties! $4000 are up for grabs in Hacktoberfest.
19
+ </strong></a> <a href="https://codechem.com">Sponsored by CodeChem!</a>
20
+ </p>
21
+
16
22
  Remotion is a framework for **creating videos programmatically using React.**
17
23
 
18
24
  ## Why create videos in React?
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "3.2.30";
1
+ export declare const VERSION = "3.2.31";
package/dist/version.js CHANGED
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // Automatically generated on publish
5
- exports.VERSION = '3.2.30';
5
+ exports.VERSION = '3.2.31';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remotion",
3
- "version": "3.2.30",
3
+ "version": "3.2.31",
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": "5dc5f4c010c47186c7911b575998296d6a65f7cb"
57
+ "gitHead": "f011b454d78903e548c32f548d8fef642c5ff7a6"
58
58
  }
@@ -1 +0,0 @@
1
- export {};
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +0,0 @@
1
- import React from 'react';
2
- import type { RemotionMainVideoProps, RemotionVideoProps } from './props';
3
- export declare const LoopedVideo: React.ForwardRefRenderFunction<HTMLVideoElement, RemotionVideoProps & RemotionMainVideoProps>;
@@ -1,16 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LoopedVideo = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const react_1 = require("react");
6
- const delay_render_1 = require("../delay-render");
7
- const loop_1 = require("../loop");
8
- const Video_1 = require("./Video");
9
- const LoopedVideo = (props, ref) => {
10
- const [videoDuration, setVideoDuration] = (0, react_1.useState)(null);
11
- (0, react_1.useEffect)(() => {
12
- const newHandle = (0, delay_render_1.delayRender)('Loading <Img> with src=' + props.src);
13
- }, [props.src]);
14
- return ((0, jsx_runtime_1.jsx)(loop_1.Loop, { durationInFrames: Math.round(videoDuration * fps), children: (0, jsx_runtime_1.jsx)(Video_1.Video, { ...props, ref: ref, loop: false }) }));
15
- };
16
- exports.LoopedVideo = LoopedVideo;