@nexrender/action-compress
v1.62.0
Published
(alpha version)
Readme
Action Compress
(alpha version)
Compress any files from the project work directory to the archive.
Installation
If you are using binary version of the nexrender, there is no need to install the module, it is included in the binary build.
npm i @nexrender/action-compress -gUsage
When creating your render job provide this module as one of the prerender actions:
Options:
format- format of the archive to compress, currently onlyzipis supportedinput- array of files to compress, can be a glob pattern, can be name of a folder, file or image sequence nameoutput- name of the output archive
// job.json
{
"actions": {
"prerender": [
{
"module": "@nexrender/action-compress",
"format": "zip",
"input": [
"project.aep",
"results__[#####].png",
"output_dir"
],
"output": "output.zip",
}
]
}
}License
Please refer to the LICENSE file for more information. Unlike the main nexrender project, this plugin is licensed under the AGPL-3.0 license.
