@remotion/renderer 4.0.0-spawn.13 → 4.0.0-spawn.14
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/dist/render-frames.js +3 -3
- package/package.json +3 -3
package/dist/render-frames.js
CHANGED
|
@@ -113,12 +113,12 @@ const innerRenderFrames = ({ onFrameUpdate, outputDir, onStart, inputProps, qual
|
|
|
113
113
|
.fill(Boolean)
|
|
114
114
|
.map((_x, i) => i)
|
|
115
115
|
.map(async (index) => {
|
|
116
|
-
if (stopped) {
|
|
117
|
-
throw new Error('Render was stopped');
|
|
118
|
-
}
|
|
119
116
|
const frame = realFrameRange[0] + index;
|
|
120
117
|
const pool = await poolPromise;
|
|
121
118
|
const freePage = await pool.acquire();
|
|
119
|
+
if (stopped) {
|
|
120
|
+
throw new Error('Render was stopped');
|
|
121
|
+
}
|
|
122
122
|
const paddedIndex = String(frame).padStart(filePadLength, '0');
|
|
123
123
|
const errorCallbackOnFrame = (err) => {
|
|
124
124
|
onError(err);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/renderer",
|
|
3
|
-
"version": "4.0.0-spawn.
|
|
3
|
+
"version": "4.0.0-spawn.14+243a2f006",
|
|
4
4
|
"description": "Renderer for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"execa": "5.1.1",
|
|
24
24
|
"puppeteer-core": "13.5.1",
|
|
25
|
-
"remotion": "4.0.0-spawn.
|
|
25
|
+
"remotion": "4.0.0-spawn.14+243a2f006",
|
|
26
26
|
"serve-handler": "6.1.3",
|
|
27
27
|
"source-map": "^0.8.0-beta.0"
|
|
28
28
|
},
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "243a2f0067d75e193a6a45f491987be53208f3e0"
|
|
63
63
|
}
|