felixge / node-ar-drone

A node.js client for controlling Parrot AR Drone 2.0 quad-copters.
http://nodecopter.com/
MIT License
1.76k stars 428 forks source link

Error from PngEncoder: Ffmpeg was not found. Have you installed the ffmpeg package? #118

Closed nax47 closed 9 years ago

nax47 commented 9 years ago

I am using a Windows 8.1 x64 machine and I have ffmpeg installed under "C:\Program Files\ffmpeg". The directory is also added in the path and I don't understand what else I need to do. Does ffmpeg need to be installed in any specific directory?? I need to get a PngStream from my AR Drone 2.0 and the ar-drone node module seems to be working fine otherwise. If there is anything else I need to do please let me know as I don't have much experience working with node.

wiseman commented 9 years ago

Just to confirm, if you open a command window and try to run ffmpeg from the command line, it works?

nax47 commented 9 years ago

Yes but the .bat file I have set up in my directory is named ffmpeg64, so if I run ffmpeg64 from the command line, yes it works. In any case, I found a workaround by running my node script from ffmpeg itself instead of the node command line. Thanks anyway.