-1

I'd like to use ffmpeg-concat running on a Windows server as a CLI. I've tried using nexe and pkg to creat an executable but both come up with (different) errors when I try it. This is my first foray into node.js, so apologies for noob questions.

Has anyone else managed to do this, or can point me to a Windows build somewhere?

jem
  • 61
  • 8
  • I've received a downvote, I guess because there is some issue with the question. What should I do to improve the question? – jem Dec 07 '18 at 14:21

1 Answers1

0

I've managed to get it running, the way it should be (i.e. just using npm).

I needed to run the following commands from powershell as administrator:

npm install --global --production windows-build-tools
npm install --global node-gyp
setx PYTHON "%USERPROFILE%\.windows-build-tools\python27\python.exe"
npm install -g ffmpeg-concat

Thanks to this answer

jem
  • 61
  • 8