New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nexrender/action-copy

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexrender/action-copy

Copy your video/image sequence to a specified folder after rendering is finished

  • 1.49.4
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
996
increased by30.71%
Maintainers
1
Weekly downloads
 
Created
Source

Action: Copy

Copy your video/image sequence to a specified folder after rendering is finished

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-copy -g

Usage

If the provided output path does not exist, it will be created automatically. If the file already exists, it will be overwritten.

If the output path is a folder, the output file will be saved in the destination folder with the default name, example: result.mp4. If the useJobId is set to true, the output file will be saved in the destination folder with the job id used as the filename, for example 4n42nxv4j23j.mp4 instead.

When creating your render job provide this module as one of the postrender actions:

// job.json
{
    "actions": {
        "postrender": [
            {
                "module": "@nexrender/action-copy",
                "output": "/home/videos/myvideo.mov"
            }
        ]
    }
}

// job2.json
{
    "actions": {
        "postrender": [
            {
                "module": "@nexrender/action-copy",
                "output": "D:/MyRenders/Results/",
                "useJobId": "true"
            }
        ]
    }
}

Information

  • input optional argument, path of the file you want to copy, can be either relative or absulte path. Defaults to current job output video file.
  • output is a path on your system where result will be saved to, can be either relative or absulte path.
  • useJobId optional argument, if set to true, and the output value is a folder instead of file, the output file will be saved in the destination folder with the job id used as the filename, for example 4n42nxv4j23j.mov ins. Defaults to false.

FAQs

Package last updated on 10 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc