i've installed the php_ffmpeg extension on my xampp under c:/xampp/php/ext/php_ffmpeg.dll - according to phpinfo() it seems to be properly installed. however - when trying to create a thumbnail from a video it is executing without errors, but i'm not getting any image .. the apache error log is showing: command "ffmpeg" is either mis-spelled or couldn't be found. my code is:
$cmd = "ffmpeg -i myvideo.flv -f mjpeg -vframes 1 -s 150x150 -an thumbnail.jpg";
exec($cmd);
any ideas what's wrong?