@nexrender/core 1.29.0 → 1.33.0
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/package.json +2 -2
- package/readme.md +1 -0
- package/src/assets/commandLineRenderer-2022.jsx +1130 -0
- package/src/assets/{commandLineRenderer.jsx → commandLineRenderer-default.jsx} +12 -12
- package/src/assets/nexrender.jsx +49 -9
- package/src/helpers/autofind.js +6 -0
- package/src/helpers/patch.js +9 -1
- package/src/index.js +1 -0
- package/src/tasks/render.js +33 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexrender/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.33.0",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"author": "Inlife",
|
|
6
6
|
"scripts": {
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "6f3bdccfa13723b3b43552193871973ab395d428"
|
|
33
33
|
}
|
package/readme.md
CHANGED
|
@@ -59,6 +59,7 @@ Second one is responsible for mainly job-related operations of the full cycle: d
|
|
|
59
59
|
* `skipCleanup` - boolean, providing true will prevent nexrender from removing the temp folder with project (false by default)
|
|
60
60
|
* `skipRender` - boolean, providing true will prevent nexrender from running actual rendering, might be useful if you only want to call scripts
|
|
61
61
|
* `multiFrames` - boolean, providing true will attmpt to use aerender's built-in feature of multi frame rendering (false by default)
|
|
62
|
+
* `multiFramesCPU` - integer between 1-100, the percentage of CPU used by multi frame rendering, if enabled (90 by default)
|
|
62
63
|
* `reuse` - boolean, false by default, (from Adobe site): Reuse the currently running instance of After Effects (if found) to perform the render. When an already running instance is used, aerender saves preferences to disk when rendering has completed, but does not quit After Effects. If this argument is not used, aerender starts a new instance of After Effects, even if one is already running. It quits that instance when rendering has completed, and does not save preferences.
|
|
63
64
|
* `maxMemoryPercent` - integer, undefined by default, check [original documentation](https://helpx.adobe.com/after-effects/using/automated-rendering-network-rendering.html) for more info
|
|
64
65
|
* `imageCachePercent` - integer, undefined by default, check [original documentation](https://helpx.adobe.com/after-effects/using/automated-rendering-network-rendering.html) for more info
|