Skip to content

v6.0.0

Compare
Choose a tag to compare
@75lb 75lb released this 10 Sep 23:24
· 12 commits to master since this release

Breaking changes since v5.0.3

  • Dropped support for Node.js < v12.17

New features

  • Added the HandbrakeCLIPath option to the spawn, exec and run methods. Use this to override the built-in path to the underlying HandbrakeCLI binary. See the docs in the README. #62

    hbjs.spawn({
      input: 'something.avi',
      output: 'something.m4v',
      HandbrakeCLIPath: './somewhere/HandbrakeCLI'
    })
    

Other changes

  • Codebase rewritten as ECMAScript Modules. This is a non-functional change - users can still load handbrake-js using either import or require.